*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal:    #00b9c8;
  --teal-dk: #008f9c;
  --teal-lt: #e4f8fa;
  --teal-b:  rgba(0,185,200,0.16);
  --navy:    #0d1e2c;
  --ink:     #111827;
  --mid:     #6b7f8e;
  --muted:   #9eaebb;
  --border:  #e5e9ec;
  --off:     #f7f9fa;
  --white:   #ffffff;
  --max:     1140px;
  --f: 'Inter', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--f); background: var(--white); color: var(--ink); font-size: 15px; line-height: 1.55; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
body > section, body > main { flex: 1; }
a { text-decoration: none; color: inherit; }
img, video { display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }

.sip-logo { display: flex; align-items: center; text-decoration: none; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
}
.nav-in {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 32px; width: auto; }
.nav-center { display: flex; gap: 4px; }
.nav-link { padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--mid); border-radius: 6px; transition: all 0.13s; }
.nav-link:hover { background: var(--off); color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-search-wrap { position: relative; }
.nav-search-wrap input {
  padding: 7px 14px 7px 34px; background: var(--off);
  border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--f); font-size: 13px; color: var(--ink); outline: none;
  width: 200px; transition: all 0.15s;
}
.nav-search-wrap input:focus { border-color: var(--teal); width: 240px; background: var(--white); }
.nav-search-wrap input::placeholder { color: var(--muted); }
.nav-search-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.nav-signin { font-size: 13px; font-weight: 600; color: var(--mid); padding: 7px 14px; transition: color 0.13s; }
.nav-signin:hover { color: var(--ink); }
.nav-cta { padding: 8px 20px; background: var(--teal); color: var(--white); border-radius: 6px; font-size: 13px; font-weight: 700; transition: background 0.15s; white-space: nowrap; }
.nav-cta:hover { background: var(--teal-dk); }

/* ── HERO ── */
.hero { padding: 56px 48px 0; overflow: hidden; background: var(--white); }
.hero-in { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.hero-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dk); margin-bottom: 20px; }
.hero-label-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pip 2s ease infinite; }
@keyframes pip { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 { font-size: clamp(36px, 4.5vw, 52px); font-weight: 900; color: var(--ink); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-h1 em { color: var(--teal-dk); font-style: normal; }

.hero-sub { font-size: 17px; color: var(--mid); line-height: 1.7; max-width: 440px; margin-bottom: 32px; }

/* search bar */
.hero-search { display: flex; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; max-width: 440px; margin-bottom: 16px; transition: border-color 0.15s; }
.hero-search:focus-within { border-color: var(--teal); }
.hero-search input { flex: 1; padding: 13px 16px; border: none; outline: none; font-family: var(--f); font-size: 14px; color: var(--ink); min-width: 0; background: var(--white); }
.hero-search input::placeholder { color: var(--muted); }
.hero-search button { padding: 13px 22px; background: var(--teal); border: none; font-family: var(--f); font-weight: 700; font-size: 14px; color: var(--white); cursor: pointer; flex-shrink: 0; transition: background 0.15s; }
.hero-search button:hover { background: var(--teal-dk); }

.hero-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chip { padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--mid); border: 1px solid var(--border); cursor: pointer; transition: all 0.13s; background: var(--white); }
.chip:hover { border-color: var(--teal); color: var(--teal-dk); background: var(--teal-lt); }

/* right: video with floating card */
.hero-visual { position: relative; border-radius: 12px; overflow: hidden; }
.hero-video-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,30,44,0.18);
}
.hero-video-wrap video {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
/* dark gradient at bottom for card legibility */
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* floating stat card */
.hero-card {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: var(--white); border-radius: 10px;
  padding: 16px 18px; z-index: 2;
  box-shadow: 0 4px 24px rgba(13,30,44,0.18);
}
.hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hc-player { display: flex; align-items: center; gap: 10px; }
.hc-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.hc-name { font-size: 15px; font-weight: 800; color: var(--ink); }
.hc-pos { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.hc-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(29,148,80,0.1); color: #1d9450; border: 1px solid rgba(29,148,80,0.2);
  display: flex; align-items: center; gap: 5px;
}
.hc-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #1d9450; }

.hc-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--border); padding-top: 12px; }
.hc-stat { text-align: center; padding: 0 4px; border-right: 1px solid var(--border); }
.hc-stat:last-child { border-right: none; }
.hc-stat-key { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.hc-stat-val { font-size: 20px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.hc-stat-val.hi { color: var(--teal-dk); }

.hc-formats { display: flex; align-items: center; gap: 6px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); }
.hc-fmt-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.hc-fmt { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; background: var(--teal-lt); color: var(--teal-dk); border: 1px solid rgba(0,185,200,0.2); }
.hc-venue { margin-left: auto; font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.hc-venue svg { flex-shrink: 0; }

/* ── GAMES ── */
.games-section { padding: 56px 0 0; }
.section-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-h { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.section-filters { display: flex; gap: 0; }
.sf { padding: 6px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mid); border: 1px solid var(--border); background: var(--white); cursor: pointer; transition: all 0.12s; margin-left: -1px; }
.sf:first-child { border-radius: 6px 0 0 6px; }
.sf:last-child { border-radius: 0 6px 6px 0; }
.sf.on, .sf:hover { background: var(--navy); color: var(--white); border-color: var(--navy); z-index: 1; position: relative; }
.view-all { font-size: 13px; font-weight: 600; color: var(--mid); padding: 6px 14px; border: 1px solid var(--border); border-radius: 6px; transition: all 0.13s; white-space: nowrap; }
.view-all:hover { border-color: var(--teal); color: var(--teal-dk); }

.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* game card following SIP layout: photo thumbnail + info below */
.gc {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  background: var(--white); transition: all 0.18s; cursor: pointer; display: block;
}
.gc:hover { border-color: var(--teal-b); box-shadow: 0 6px 28px rgba(13,30,44,0.1); transform: translateY(-3px); }

.gc-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--navy);
}
.gc-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; }
.gc-thumb-dark { width: 100%; height: 100%; background: linear-gradient(135deg, #0a1e2e 0%, #132438 100%); display: flex; align-items: center; justify-content: center; }
/* scoreboard style inside dark thumb */
.gc-thumb-scores { text-align: center; }
.gc-thumb-matchup { font-size: 15px; font-weight: 800; color: rgba(255,255,255,0.9); letter-spacing: 0.02em; margin-bottom: 4px; }
.gc-thumb-matchup .vs { color: var(--teal); font-weight: 600; margin: 0 6px; font-size: 12px; }
.gc-thumb-score { font-size: 28px; font-weight: 900; color: var(--white); letter-spacing: 0.02em; }
.gc-thumb-score .loser { color: rgba(255,255,255,0.35); }
.gc-thumb-final { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }

/* overlay tag */
.gc-tag {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; color: var(--white);
}
.gc-tag-aau { background: var(--teal-dk); }
.gc-tag-fresh { background: #4a6fa5; }
.gc-tag-jv { background: #7c5cbf; }
.gc-tag-var { background: #1d7a3a; }
.gc-tag-up  { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); }

/* play button overlay */
.gc-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.18s;
}
.gc:hover .gc-play { opacity: 1; }
.gc-play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.gc-play-btn svg { margin-left: 3px; }

.gc-body { padding: 14px 16px; }
.gc-title { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.gc-date { font-size: 13px; color: var(--mid); margin-bottom: 2px; }
.gc-venue { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.gc-venue svg { flex-shrink: 0; }
.gc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--off); }
.gc-duration { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.gc-cta { font-size: 13px; font-weight: 700; color: var(--teal-dk); transition: color 0.13s; }
.gc:hover .gc-cta { color: var(--teal); }

/* ── HIGHLIGHTS CAROUSEL ── */
.hl-section { padding: 56px 48px 64px; background: var(--off); border-top: 1px solid var(--border); margin-top: 56px; }
.hl-header { text-align: center; margin-bottom: 44px; }
.hl-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-dk); margin-bottom: 10px; }
.hl-h { font-size: 28px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.hl-sub { font-size: 15px; color: var(--mid); max-width: 480px; margin: 0 auto; line-height: 1.65; }

/* Stage: centers the clip and transitions width */
.hl-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hl-window {
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
  position: relative;
}
/* Individual clip cards */
.hl-slide {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 40px rgba(13,30,44,0.16);
}
.hl-slide.active { display: block; }
.hl-slide video {
  width: 100%;
  display: block;
  vertical-align: bottom;
}
.hl-slide-16x9 video { aspect-ratio: 16/9; object-fit: cover; }
.hl-slide-1x1  video { aspect-ratio: 1/1;  object-fit: cover; }
.hl-slide-9x16 video { aspect-ratio: 9/16; object-fit: cover; }

.hl-clip-foot {
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.hl-clip-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.hl-fmt {
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 4px;
  background: var(--teal-lt); color: var(--teal-dk); border: 1px solid rgba(0,185,200,0.2);
}

/* Controls */
.hl-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 24px;
}
.hl-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s; flex-shrink: 0;
  color: var(--mid);
}
.hl-arrow:hover { border-color: var(--teal); color: var(--teal-dk); background: var(--teal-lt); }
.hl-dots { display: flex; gap: 8px; align-items: center; }
.hl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all 0.2s;
  border: none; padding: 0;
}
.hl-dot.on { background: var(--teal); transform: scale(1.25); }
.hl-fmt-labels {
  display: flex; gap: 8px;
}
.hl-fmt-tab {
  padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 700;
  border: 1px solid var(--border); background: var(--white); color: var(--mid);
  cursor: pointer; transition: all 0.15s;
}
.hl-fmt-tab.on { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── HOW IT WORKS ── */
.hiw { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border); }
.hiw-header { text-align: center; margin-bottom: 44px; }
.hiw-h { font-size: 28px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.hiw-sub { font-size: 15px; color: var(--mid); }

.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hiw-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px;
  text-align: center; background: var(--white); transition: all 0.18s; position: relative; overflow: hidden;
}
.hiw-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 12px 12px 0 0; }
.hiw-card:nth-child(1)::before { background: var(--teal); }
.hiw-card:nth-child(2)::before { background: #4a90e2; }
.hiw-card:nth-child(3)::before { background: #1d9450; }
.hiw-card:hover { box-shadow: 0 6px 24px rgba(13,30,44,0.08); transform: translateY(-3px); }

.hiw-num { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.hiw-card:nth-child(1) .hiw-num { color: var(--teal-dk); }
.hiw-card:nth-child(2) .hiw-num { color: #3a7bd5; }
.hiw-card:nth-child(3) .hiw-num { color: #1d9450; }

.hiw-icon { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.hiw-card:nth-child(1) .hiw-icon { background: var(--teal-lt); }
.hiw-card:nth-child(2) .hiw-icon { background: #e8f1fd; }
.hiw-card:nth-child(3) .hiw-icon { background: #e8f5ec; }

.hiw-title { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.hiw-body { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── BOTTOM CTA ── */
.bottom-cta { padding: 56px 0; background: var(--off); border-top: 1px solid var(--border); text-align: center; }
.bottom-cta-h { font-size: 28px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.bottom-cta-sub { font-size: 15px; color: var(--mid); margin-bottom: 28px; }
.btn-teal { padding: 14px 36px; background: var(--teal); color: var(--white); border-radius: 8px; font-weight: 700; font-size: 16px; transition: background 0.15s; display: inline-block; }
.btn-teal:hover { background: var(--teal-dk); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 44px 0 24px; border-top: 3px solid var(--teal); }
.ft-top { max-width: var(--max); margin: 0 auto; padding: 0 48px 32px; display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ft-brand-name { font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: 0.02em; margin-top: 12px; }
.ft-brand-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-top: 3px; }
.ft-brand-about { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 12px; line-height: 1.6; }
.ft-col-head { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 14px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.42); transition: color 0.13s; }
.ft-links a:hover { color: var(--teal); }
.ft-bot { max-width: var(--max); margin: 0 auto; padding: 20px 48px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.ft-bot-links { display: flex; gap: 18px; list-style: none; }
.ft-bot-links a { font-size: 11px; color: rgba(255,255,255,0.18); transition: color 0.13s; }
.ft-bot-links a:hover { color: rgba(255,255,255,0.5); }

/* responsive */
@media(max-width:960px){
  .hero-in { grid-template-columns: 1fr; gap: 36px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .hl-grid { grid-template-columns: 1fr 1fr; }
  .hl-clip-9x16 { display: none; }
  .hiw-grid { grid-template-columns: 1fr; gap: 16px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-center, .nav-search-wrap { display: none; }
}
@media(max-width:620px){
  .games-grid { grid-template-columns: 1fr; }
  .hl-grid { grid-template-columns: 1fr; }
  .hl-clip-9x16 { display: block; }
  .ft-top { grid-template-columns: 1fr; }
}

  .hero-brand-logo { margin-bottom: 24px; }
  .hero-brand-logo a { display: inline-block; }

/* ── GAME DETAIL PAGE ── */
.game-detail { padding: 48px 0 64px; }
.game-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }

.game-video-wrap { border-radius: 12px; overflow: hidden; background: var(--navy); box-shadow: 0 8px 40px rgba(13,30,44,0.16); }
.game-video-wrap video { width: 100%; display: block; }

.game-info { padding-top: 8px; }
.game-info-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; color: var(--white); margin-bottom: 16px; }
.game-info-title { font-size: 28px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.2; }
.game-info-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.game-info-meta-item { font-size: 14px; color: var(--mid); display: flex; align-items: center; gap: 8px; }
.game-info-meta-item svg { flex-shrink: 0; color: var(--muted); }
.game-info-score { font-size: 22px; font-weight: 900; color: var(--ink); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.game-info-desc { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 28px; }

.game-packages { display: flex; flex-direction: column; gap: 12px; }
.game-pkg {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--white); transition: all 0.15s;
}
.game-pkg:hover { border-color: var(--teal-b); box-shadow: 0 4px 16px rgba(13,30,44,0.06); }
.game-pkg-info { display: flex; flex-direction: column; gap: 2px; }
.game-pkg-name { font-size: 15px; font-weight: 800; color: var(--ink); }
.game-pkg-desc { font-size: 12px; color: var(--muted); }
.game-pkg-right { display: flex; align-items: center; gap: 16px; }
.game-pkg-price { font-size: 20px; font-weight: 900; color: var(--ink); }
.game-pkg-cta {
  padding: 10px 22px; border-radius: 8px; font-size: 13px; font-weight: 700;
  transition: all 0.15s; white-space: nowrap; cursor: pointer; font-family: var(--f);
}
.game-pkg-cta-primary { background: var(--teal); color: var(--white); }
.game-pkg-cta-primary:hover { background: var(--teal-dk); }
.game-pkg-cta-secondary { background: var(--off); color: var(--ink); border: 1px solid var(--border); }
.game-pkg-cta-secondary:hover { border-color: var(--teal); color: var(--teal-dk); }

.game-pkg-divider { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 8px 0 4px; }

.game-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--mid); margin-bottom: 28px; transition: color 0.13s; }
.game-back:hover { color: var(--teal-dk); }

@media(max-width:960px){
  .game-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── PRICING PAGE ── */
.pricing-hero { padding: 64px 0 40px; text-align: center; border-bottom: 1px solid var(--border); }
.pricing-hero-h { font-size: 36px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.pricing-hero-sub { font-size: 16px; color: var(--mid); max-width: 560px; margin: 0 auto; line-height: 1.65; }

.pricing-section { padding: 56px 0; }
.pricing-section + .pricing-section { border-top: 1px solid var(--border); }
.pricing-section-header { margin-bottom: 32px; }
.pricing-section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-section-label.parent { color: var(--teal-dk); }
.pricing-section-label.coach { color: #4a90e2; }
.pricing-section-label.team { color: #1d9450; }
.pricing-section-label.tournament { color: #e67e22; }
.pricing-section-h { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 6px; }
.pricing-section-sub { font-size: 14px; color: var(--mid); }

.pricing-grid { display: grid; gap: 20px; }
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); }

.price-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px;
  background: var(--white); transition: all 0.18s; position: relative; display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: 0 6px 28px rgba(13,30,44,0.08); transform: translateY(-3px); }
.price-card.featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 14px; border-radius: 100px; background: var(--teal); color: var(--white);
}

.price-card-name { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.price-card-desc { font-size: 13px; color: var(--mid); line-height: 1.55; margin-bottom: 20px; }
.price-card-price { font-size: 36px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 4px; }
.price-card-price span { font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-card-per { font-size: 12px; color: var(--muted); margin-bottom: 24px; }

.price-card-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card-features li { font-size: 13px; color: var(--mid); padding-left: 22px; position: relative; line-height: 1.5; }
.price-card-features li::before {
  content: ''; position: absolute; left: 0; top: 5px; width: 14px; height: 14px;
  background: var(--teal-lt); border-radius: 50%; border: 1.5px solid var(--teal);
}
.price-card-features li::after {
  content: ''; position: absolute; left: 4px; top: 9px; width: 6px; height: 3px;
  border-left: 1.5px solid var(--teal-dk); border-bottom: 1.5px solid var(--teal-dk);
  transform: rotate(-45deg);
}

.price-card-cta {
  display: block; text-align: center; padding: 12px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 700; transition: all 0.15s; margin-top: auto;
}
.price-card-cta-primary { background: var(--teal); color: var(--white); }
.price-card-cta-primary:hover { background: var(--teal-dk); }
.price-card-cta-secondary { background: var(--off); color: var(--ink); border: 1px solid var(--border); }
.price-card-cta-secondary:hover { border-color: var(--teal); color: var(--teal-dk); }

.pricing-note { text-align: center; padding: 40px 0 0; font-size: 13px; color: var(--muted); }

@media(max-width:960px){
  .pricing-grid-3 { grid-template-columns: 1fr; }
  .pricing-grid-2 { grid-template-columns: 1fr; }
}

