/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B35;
  --primary-dark: #E55A25;
  --primary-light: #FFF0E8;
  --dark: #1A1A2E;
  --dark-mid: #16213E;
  --accent: #FF9F1C;
  --white: #FFFFFF;
  --gray-light: #F7F7F7;
  --gray: #666666;
  --gray-dark: #333333;
  --orange-bg: #FFF5EE;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  line-height: 1;
}

.logo-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  vertical-align: middle;
  object-fit: cover;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--gray);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links li a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ===== Nav Dropdown ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--gray);
  border-radius: 8px;
  cursor: default;
  transition: all 0.2s;
  user-select: none;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.nav-item-active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: 8px;
  min-width: 140px;
  z-index: 1001;
  border: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--gray);
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}

.nav-dropdown-menu li a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-num span {
  font-size: 20px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

.hero .btn-primary,
.hero .btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-right: 12px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-light);
}

.section-highlight {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== About Content ===== */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: var(--gray-dark);
}

.about-content p {
  margin-bottom: 16px;
  text-indent: 2em;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Schedule ===== */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.schedule-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  border-left: 4px solid var(--primary);
}

.schedule-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.schedule-date {
  flex: 0 0 100px;
  text-align: center;
}

.date-day {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.date-week {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.schedule-info {
  flex: 1;
}

.schedule-time,
.schedule-loc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}

.schedule-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.tag-normal {
  background: #E8F5E9;
  color: #2E7D32;
}

.tag-match {
  background: #FFF3E0;
  color: #E65100;
}

.tag-final {
  background: #FCE4EC;
  color: #C62828;
}

/* ===== Highlight Box ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
}

.highlight-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0;
}

.highlight-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.highlight-text .section-tag {
  color: var(--accent);
}

.btn-highlight {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-highlight:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

/* ===== Join Form ===== */
.join-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0E0E0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--gray-light);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BDBDBD;
}

.form-group select {
  cursor: pointer;
}

.form-group.full {
  margin-bottom: 12px;
}

.form-actions {
  margin-top: 8px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.contact-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.contact-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.footer-logo .logo-icon {
  font-size: 24px;
}

.footer-desc {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.footer-version {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
}

.footer-beian a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-beian a:hover {
  color: rgba(255,255,255,0.8);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    width: 100%;
    padding: 12px 16px;
    text-align: right;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    margin-bottom: 8px;
  }

  .highlight-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .schedule-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .schedule-date {
    flex: none;
    margin-bottom: 8px;
  }

  .join-form {
    padding: 32px 24px;
  }

  /* 移动端下拉 */
  .nav-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-trigger {
    width: 100%;
    padding: 12px 16px;
    text-align: right;
    justify-content: flex-end;
  }

  .nav-dropdown-menu li a {
    padding: 10px 16px;
    text-align: right;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 38px;
  }

  .section {
    padding: 60px 0;
  }
}

/* ===== Schedule Dynamic ===== */
.schedule-loading,
.schedule-empty,
.schedule-error {
  text-align: center;
  padding: 48px 24px;
  font-size: 15px;
  color: var(--gray);
}

.schedule-error {
  color: #E24B4A;
}

.retry-btn {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.retry-btn:hover {
  background: var(--primary-dark);
}

.match-group-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 8px;
  margin-right: 6px;
  margin-top: 6px;
}

.tag-today {
  background: #FFF3E0;
  color: #E65100;
}

.tag-upcoming {
  background: #E8F5E9;
  color: #2E7D32;
}

.tag-ended {
  background: #F5F5F5;
  color: #999;
}

.schedule-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

/* Match game title */
.match-game-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding: 4px 0 2px;
}

/* Match rows */
.match-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 8px 12px;
  background: var(--gray-light);
  border-radius: 8px;
}

.match-date {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
  padding: 1px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.match-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.match-name-elite {
  color: #C62828;
}

.match-elite {
  font-size: 11px;
  font-weight: 700;
  background: #C62828;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
}

.match-count {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

.match-field {
  font-size: 12px;
  color: var(--gray);
  margin-left: auto;
}

.match-photo {
  margin-top: 4px;
}

.match-photo img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  display: block;
  cursor: pointer;
  transition: transform 0.2s;
}

.match-photo img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.schedule-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.tag-count {
  background: var(--primary-light);
  color: var(--primary);
}

.tag-waiting {
  background: #FFF8E1;
  color: #F57F17;
}

/* ===== Standings Page ===== */
.standings-hero {
  padding: 120px 40px 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.standings-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.standings-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 12px; position: relative; }
.standings-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; position: relative; }
.standings-hero .league-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 12px;
  letter-spacing: 0.5px;
  position: relative;
}
.league-status.status-upcoming { background: #E8F5E9; color: #2E7D32; }
.league-status.status-group_stage { background: #FFF3E0; color: #E65100; }
.league-status.status-knockout { background: #FCE4EC; color: #C62828; }
.league-status.status-finished { background: #F5F5F5; color: #999; }
.league-status.status-epilogue { background: #EDE7F6; color: #4527A0; }

/* Standings Section */
.standings-section {
  padding: 60px 0;
}
.standings-section .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.standings-group {
  margin-bottom: 48px;
}
.standings-group:last-child { margin-bottom: 0; }

.standings-group-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Table Container (mobile horizontal scroll) */
.standings-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.standings-table thead {
  background: var(--primary-light);
}

.standings-table thead th {
  padding: 12px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.standings-table thead th:first-child { padding-left: 20px; }
.standings-table thead th:last-child { padding-right: 20px; }
.standings-table thead th.col-team { text-align: left; }

.standings-table tbody td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--gray-dark);
  white-space: nowrap;
}
.standings-table tbody td:first-child { padding-left: 20px; }
.standings-table tbody td:last-child { padding-right: 20px; }

.standings-table tbody tr:hover {
  background: var(--orange-bg);
}

/* Rank 1st gold highlight */
.standings-table tbody tr.rank-1 {
  background: #FFFDE7;
}
.standings-table tbody tr.rank-1:hover {
  background: #FFF9C4;
}

/* Rank column */
.col-rank {
  font-weight: 700;
  width: 50px;
}
.col-rank .rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}
.rank-badge.r1 { background: #FFD700; color: #5D4037; }
.rank-badge.r2 { background: #E0E0E0; color: #424242; }
.rank-badge.r3 { background: #FFCC80; color: #5D4037; }
.rank-badge.rn { color: var(--gray-dark); }

/* Team column */
.col-team { text-align: left !important; }
.standings-team {
  display: flex;
  align-items: center;
  gap: 10px;
}
.standings-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-light);
  flex-shrink: 0;
}
.standings-team-name {
  font-weight: 600;
  color: var(--dark);
}

/* Points column bold */
.col-points {
  font-weight: 800;
  color: var(--primary);
  font-size: 15px;
}

/* Match score/vs for schedule rows */
.match-score {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  padding: 0 6px;
}
.match-vs {
  font-size: 12px;
  color: var(--gray);
  padding: 0 6px;
}

/* No data state */
.standings-empty {
  text-align: center;
  padding: 48px 24px;
  font-size: 15px;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .standings-hero { padding: 100px 20px 40px; }
  .standings-hero h1 { font-size: 28px; }
  .standings-group-title { font-size: 18px; }
  .standings-table { font-size: 13px; min-width: 520px; }
  .standings-table thead th,
  .standings-table tbody td {
    padding: 8px 6px;
  }
  .standings-table thead th:first-child,
  .standings-table tbody td:first-child { padding-left: 12px; }
  .standings-table thead th:last-child,
  .standings-table tbody td:last-child { padding-right: 12px; }
}
