* {
  box-sizing: border-box;
}

:root {
  --bg: #f3fbf7;
  --bg-soft: #e9f7f4;
  --white: #ffffff;
  --text: #102326;
  --muted: #5d7376;
  --green: #24b47e;
  --green-soft: #dff6ec;
  --blue: #2f80ed;
  --blue-soft: #e6f1ff;
  --orange: #f59e0b;
  --orange-soft: #fff4db;
  --red: #ef4444;
  --red-soft: #ffe8e8;
  --border: #d9ebe5;
  --shadow: 0 16px 40px rgba(27, 72, 64, 0.08);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, #dff8ef 0, transparent 36%),
    linear-gradient(180deg, #f7fffb 0%, #eef9f5 48%, #f6fbff 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: var(--shadow);
}

.brand h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.brand p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--muted);
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.main-nav a.active,
.main-nav a:hover {
  background: var(--green-soft);
  color: #08724e;
}

/* Hero */
.hero {
  padding: 64px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.hero-content {
  padding: 20px 0;
}

.eyebrow,
.section-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0c8f63;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h2 {
  margin: 16px 0 18px;
  max-width: 780px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.hero-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.clean-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.clean-list li {
  margin: 10px 0;
}

.clean-list strong {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn.small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #16a0b5);
  color: #fff;
  box-shadow: 0 12px 24px rgba(36, 180, 126, 0.22);
}

.btn-secondary {
  background: #fff;
  color: #176b55;
  border-color: var(--border);
}

.text-link {
  color: #0c8f63;
  font-weight: 900;
}

/* Sections */
section {
  padding: 42px 0;
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 8px 0 8px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.row-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

/* Overview */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card,
.entry-card,
.group-card,
.evidence-item,
.match-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 22px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.2;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.stat-card.green {
  background: var(--green-soft);
}

.stat-card.blue {
  background: var(--blue-soft);
}

.stat-card.orange {
  background: var(--orange-soft);
}

.stat-card.red {
  background: var(--red-soft);
}

/* Match card */
.match-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.match-card {
  padding: 26px;
}

.match-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.badge.green {
  background: var(--green-soft);
  color: #08724e;
}

.match-stage {
  color: var(--muted);
  font-weight: 800;
}

.match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.team-side {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.team-side:last-child {
  justify-content: flex-end;
}

.flag-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e6f7ff, #dff6ec);
  border: 1px solid var(--border);
  font-weight: 900;
  color: #176b55;
}

.versus {
  font-weight: 1000;
  color: var(--orange);
  font-size: 22px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.fact-grid div {
  background: #f8fcfb;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.fact-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.fact-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Entry */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.entry-card {
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.entry-card:hover {
  transform: translateY(-3px);
}

.entry-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.entry-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.entry-card span {
  font-weight: 900;
}

.entry-card.blue {
  background: var(--blue-soft);
}

.entry-card.green {
  background: var(--green-soft);
}

.entry-card.orange {
  background: var(--orange-soft);
}

/* Groups */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.group-card {
  padding: 18px;
}

.group-card h3 {
  margin: 0 0 6px;
}

.group-card p {
  margin: 0;
  color: var(--muted);
}

/* Evidence */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.evidence-item {
  padding: 20px;
}

.evidence-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.evidence-item p {
  margin: 0 0 14px;
  color: var(--muted);
}

.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.pending {
  background: var(--orange-soft);
  color: #9a5b00;
}

.status.ready {
  background: var(--green-soft);
  color: #08724e;
}

.notice-box {
  margin-top: 22px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 34px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-inner p {
  margin: 0;
}

/* Old class compatibility */
.card,
.panel,
.section-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Mobile */
@media (max-width: 900px) {
  .header-inner,
  .footer-inner,
  .row-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .stats-grid,
  .entry-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 36px;
  }

  .brand h1 {
    font-size: 20px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .match-teams {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .team-side:last-child {
    justify-content: flex-start;
  }

  .versus {
    text-align: left;
  }

  .fact-grid,
  .groups-grid {
    grid-template-columns: 1fr;
  }
}
/* Hook Section */
.hook-section {
  padding: 40px 0 20px;
}

.hook-title {
  margin-bottom: 20px;
}

.hook-title span {
  font-size: 12px;
  font-weight: 900;
  color: #0c8f63;
  letter-spacing: 0.12em;
}

.hook-title h2 {
  margin: 6px 0;
  font-size: 28px;
}

.hook-title p {
  margin: 0;
  color: var(--muted);
}

.hook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hook-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.2s;
}

.hook-card:hover {
  transform: translateY(-4px);
}

.hook-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.hook-card p {
  color: var(--muted);
  font-size: 14px;
}

.hook-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: #0c8f63;
}

.hook-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hook-badge.orange {
  background: var(--orange-soft);
  color: #9a5b00;
}

.hook-badge.blue {
  background: var(--blue-soft);
  color: #1d4ed8;
}

.hook-badge.green {
  background: var(--green-soft);
  color: #08724e;
}
/* HIDE_FAKE_TODAY_MATCHES_SECTION */
#todayMatches {
  display: none !important;
}

/* === PRODUCT HOME V2 === */
.product-home-v2 {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .16), transparent 34%),
    linear-gradient(180deg, #f4fffb 0%, #eefaf5 48%, #f8fafc 100%);
  padding: 44px 32px 70px;
}

.product-home-v2 .home-hero,
.product-home-v2 .home-section {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.product-home-v2 .home-hero {
  border: 1px solid rgba(15, 118, 110, .14);
  border-radius: 28px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(220,252,231,.72));
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

.product-home-v2 .home-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -1.5px;
  color: #06251f;
}

.product-home-v2 .hero-subtitle {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

.product-home-v2 .eyebrow,
.product-home-v2 .mini-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0f766e;
}

.product-home-v2 .section-head {
  margin-bottom: 18px;
}

.product-home-v2 .section-head h2 {
  margin: 8px 0;
  font-size: 28px;
  color: #082f2a;
}

.product-home-v2 .section-head p {
  max-width: 860px;
  color: #64748b;
  line-height: 1.7;
}

.product-home-v2 .home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.product-home-v2 .home-card {
  display: block;
  border: 1px solid rgba(15, 118, 110, .13);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  text-decoration: none;
  color: inherit;
}

.product-home-v2 .home-card h3 {
  margin: 12px 0 10px;
  font-size: 20px;
  color: #0f172a;
}

.product-home-v2 .home-card p {
  margin: 7px 0;
  color: #475569;
  line-height: 1.55;
}

.product-home-v2 .home-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, .45);
  box-shadow: 0 16px 36px rgba(15, 118, 110, .12);
}

.product-home-v2 .data-note {
  border-radius: 24px;
  padding: 24px;
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, .18);
}

@media (max-width: 720px) {
  .product-home-v2 {
    padding: 28px 16px 50px;
  }

  .product-home-v2 .home-hero {
    padding: 28px 22px;
  }
}


.product-home-v2 .team-flag-card {
  min-height: 150px;
}

.product-home-v2 .team-flag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-home-v2 .team-flag {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc, #ecfdf5);
  border: 1px solid rgba(15, 118, 110, .12);
  font-size: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}


.product-home-v2 .team-flag-img {
  width: 62px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(15, 118, 110, .14);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.product-home-v2 .team-flag-fallback {
  display: none;
}


/* === PRODUCT HOME V2 Schedule Poster Cards === */
.product-home-v2 .schedule-poster-card {
  padding: 18px;
}

.product-home-v2 .schedule-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-home-v2 .match-vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.product-home-v2 .match-side {
  min-width: 0;
  text-align: center;
}

.product-home-v2 .match-side h3 {
  margin: 10px 0 0;
  font-size: 20px;
}

.product-home-v2 .match-flag-img,
.product-home-v2 .match-flag-placeholder {
  width: 64px;
  height: 44px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(15,118,110,.16);
  background: linear-gradient(135deg, #f8fafc, #ecfdf5);
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
}

.product-home-v2 .match-flag-img {
  object-fit: cover;
  display: block;
}

.product-home-v2 .match-flag-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
  font-weight: 900;
  font-size: 18px;
}

.product-home-v2 .vs-badge {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f766e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15,118,110,.2);
}

.product-home-v2 .schedule-info {
  border-top: 1px solid rgba(15,118,110,.12);
  padding-top: 12px;
}


.product-home-v2 .schedule-status-badge {
  margin-top: 6px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .18);
  color: #b45309;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.product-home-v2 .match-flag-placeholder {
  font-size: 13px;
  letter-spacing: .04em;
}


/* === PRODUCT HOME V2 City Venue Cards === */
.product-home-v2 .city-venue-card {
  position: relative;
  overflow: hidden;
}

.product-home-v2 .city-venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, .16), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(240,253,250,.9));
  z-index: 0;
}

.product-home-v2 .city-venue-card > * {
  position: relative;
  z-index: 1;
}

.product-home-v2 .city-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-home-v2 .city-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 118, 110, .08);
  border: 1px solid rgba(15, 118, 110, .12);
  font-size: 26px;
}

.product-home-v2 .venue-name {
  min-height: 44px;
}

.product-home-v2 .venue-count {
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  display: inline-flex;
  background: rgba(15, 118, 110, .09);
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
}


/* === PRODUCT HOME V2 Hero V2 === */
.product-home-v2 .hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: center;
  min-height: 360px;
  background:
    radial-gradient(circle at 78% 18%, rgba(20,184,166,.25), transparent 28%),
    linear-gradient(135deg, #06251f 0%, #0f766e 48%, #ecfdf5 100%);
  color: #fff;
  overflow: hidden;
}

.product-home-v2 .hero-v2 h1 {
  color: #ffffff;
}

.product-home-v2 .hero-v2 .hero-subtitle {
  color: rgba(255,255,255,.82);
}

.product-home-v2 .hero-v2 .eyebrow {
  color: #99f6e4;
}

.product-home-v2 .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.product-home-v2 .hero-btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.product-home-v2 .hero-btn.primary {
  background: #ffffff;
  color: #0f766e;
}

.product-home-v2 .hero-btn.ghost {
  border: 1px solid rgba(255,255,255,.35);
  color: #ffffff;
}

.product-home-v2 .hero-visual-card {
  position: relative;
  min-height: 230px;
  border-radius: 26px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.2), rgba(15,23,42,.62)),
    radial-gradient(circle at center, rgba(255,255,255,.28), transparent 46%);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.product-home-v2 .stadium-glow {
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34,197,94,.55), rgba(20,184,166,.08), transparent 70%);
}

.product-home-v2 .hero-match-label {
  position: relative;
  z-index: 1;
  color: #99f6e4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.product-home-v2 .hero-match-title {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  font-size: 30px;
  font-weight: 950;
}

.product-home-v2 .hero-match-title span {
  margin: 0 12px;
  color: #fde68a;
}

.product-home-v2 .hero-match-meta {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: rgba(255,255,255,.78);
}

@media (max-width: 860px) {
  .product-home-v2 .hero-v2 {
    grid-template-columns: 1fr;
  }
}


/* === PRODUCT HOME V2 Groups === */
.product-home-v2 .groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.product-home-v2 .group-card-v2 {
  border: 1px solid rgba(15,118,110,.14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.product-home-v2 .group-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15,118,110,.12);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.product-home-v2 .group-card-head strong {
  font-size: 24px;
  color: #082f2a;
}

.product-home-v2 .group-team-list {
  display: grid;
  gap: 10px;
}

.product-home-v2 .group-team-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(240,253,250,.72);
}

.product-home-v2 .group-flag,
.product-home-v2 .group-flag-placeholder {
  width: 42px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(15,118,110,.14);
}

.product-home-v2 .group-flag-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #0f766e;
  font-weight: 900;
}

.product-home-v2 .group-team-row strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.product-home-v2 .group-team-row span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.product-home-v2 .group-team-row em {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.product-home-v2 .group-team-row em.ok {
  color: #047857;
}

.product-home-v2 .group-team-row em.pending {
  color: #b45309;
}


.product-home-v2 .group-detail-link {
  margin-top: 14px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,118,110,.09);
  color: #0f766e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.product-home-v2 .group-detail-link:hover {
  background: rgba(15,118,110,.16);
}


/* === GROUP PAGE Standings V1 === */
.group-page-v1 .standings-card {
  border: 1px solid rgba(15,118,110,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
  overflow: hidden;
}

.group-page-v1 .standings-table {
  width: 100%;
  overflow-x: auto;
}

.group-page-v1 .standings-row {
  display: grid;
  grid-template-columns: 46px minmax(180px, 1fr) repeat(8, 54px);
  gap: 8px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(15,118,110,.1);
  color: #334155;
  font-size: 14px;
}

.group-page-v1 .standings-row:last-child {
  border-bottom: 0;
}

.group-page-v1 .standings-head {
  background: rgba(15,118,110,.08);
  color: #0f766e;
  font-weight: 900;
}

.group-page-v1 .standing-team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.group-page-v1 .standing-team img {
  width: 38px;
  height: 26px;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid rgba(15,118,110,.14);
}

.group-page-v1 .standing-team strong {
  color: #0f172a;
}

@media (max-width: 860px) {
  .group-page-v1 .standings-row {
    grid-template-columns: 36px minmax(150px, 1fr) repeat(8, 42px);
    min-width: 760px;
  }
}

