/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  --pink-primary: #FC5B9B;
  --pink-secondary: #FDA4C7;
  --pink-light: #FEC1D8;
  --pink-accent: #FE7EAD;
  --teal: #35E0BE;
  --gray-dark: #3A3A3A;
  --gray-medium: #999999;
  --white: #F3F2F2;
  --bg-0: #090909;
  --bg-1: #0C0C0C;
  --bg-2: #111111;
  --bg-3: #161616;
  --gradient-primary: linear-gradient(135deg, #FC5B9B 0%, #FE7EAD 100%);
  --gradient-soft: linear-gradient(135deg, #FC5B9B 0%, #FDA4C7 100%);
  --gradient-dark: linear-gradient(180deg, #0C0C0C 0%, #090909 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1280px;
}

/* =========================================
   RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-0);
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Tourney', cursive;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.is-hidden { display: none; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--pink-primary);
  display: inline-block;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 em { font-style: normal; color: var(--pink-primary); }
.section { padding: 120px 0; position: relative; }
.section-header { max-width: 760px; margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 20px; }
.section-subtitle { font-size: 17px; color: var(--gray-medium); font-weight: 400; max-width: 620px; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-0);
  box-shadow: 0 0 0 0 rgba(252, 91, 155, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px -10px rgba(252, 91, 155, 0.6), 0 0 0 4px rgba(252, 91, 155, 0.15);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover::after { left: 100%; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(243, 242, 242, 0.2);
}
.btn-secondary:hover {
  border-color: var(--pink-primary);
  background: rgba(252, 91, 155, 0.08);
  transform: translateY(-2px);
}

.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(9, 9, 9, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(243, 242, 242, 0.06);
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(9, 9, 9, 0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.logo img {
  height: 76px;
  width: auto;
  display: block;
}
.footer .logo img { height: 48px; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.logo-mark span {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 22px;
  color: var(--bg-0);
  position: relative;
  z-index: 1;
}
.logo-text { color: var(--white); }
.logo-text em { font-style: normal; color: var(--pink-primary); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--pink-primary);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--pink-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243, 242, 242, 0.15);
  align-items: center;
  justify-content: center;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg-0);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(252, 91, 155, 0.25), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(254, 126, 173, 0.15), transparent 50%);
  z-index: 2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0.4) 0%, rgba(9,9,9,0.7) 60%, rgba(9,9,9,0.95) 100%);
  z-index: 3;
}
.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,9,9,0.5), rgba(9,9,9,0.85)),
    url('https://images.unsplash.com/photo-1577223625816-7546f13df25d?w=1920&q=80') center/cover;
  filter: grayscale(100%) contrast(1.1);
  z-index: 1;
}
.hero-stadium {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 100%, rgba(252, 91, 155, 0.15), transparent 60%),
    url('https://images.unsplash.com/photo-1518604666860-9ed391f76460?w=1920&q=80') center/cover;
  opacity: 0.3;
  mix-blend-mode: lighten;
}
.hero-halftone {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.15;
  background-image: radial-gradient(circle, var(--pink-primary) 1px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 70%, transparent 100%);
}
.hero-spotlights {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    conic-gradient(from 200deg at 20% 0%, transparent 0deg, rgba(252, 91, 155, 0.08) 15deg, transparent 30deg),
    conic-gradient(from 340deg at 80% 0%, transparent 0deg, rgba(252, 91, 155, 0.08) 15deg, transparent 30deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-dot {
  width: 6px; height: 6px;
  background: var(--pink-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--pink-primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-meta-divider {
  width: 1px; height: 14px;
  background: rgba(243, 242, 242, 0.15);
}

.hero-title {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: clamp(48px, 6.75vw, 105px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--white);
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--pink-primary);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--white);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-subtitle strong { color: var(--pink-primary); font-weight: 600; }

.hero-note {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-medium);
  max-width: 440px;
}
.hero-note strong { color: var(--white); font-weight: 600; }

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(243, 242, 242, 0.1);
  border-bottom: 1px solid rgba(243, 242, 242, 0.1);
}
.hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.hero-info-value {
  font-family: 'Tourney', cursive;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* HERO COUNTDOWN */
.countdown-card {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(243, 242, 242, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.countdown-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-primary);
}
.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.countdown-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.countdown-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--pink-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--pink-primary);
  animation: pulse 1.5s infinite;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.countdown-unit {
  text-align: center;
  padding: 30px 8px;
  background: rgba(252, 91, 155, 0.05);
  border: 1px solid rgba(252, 91, 155, 0.15);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.countdown-unit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
  opacity: 0.5;
}
.countdown-num {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 6px;
}
.countdown-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.countdown-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(252, 91, 155, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(252, 91, 155, 0.15);
}
.countdown-foot-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.countdown-foot-text {
  font-size: 12px;
  line-height: 1.4;
}
.countdown-foot-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}
.countdown-foot-text span { color: var(--gray-medium); }

/* =========================================
   TICKER
   ========================================= */
.ticker {
  background: var(--bg-1);
  border-top: 1px solid rgba(243, 242, 242, 0.06);
  border-bottom: 1px solid rgba(243, 242, 242, 0.06);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Tourney', cursive;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.ticker-dot {
  width: 8px; height: 8px;
  background: var(--pink-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-item:nth-child(even) .ticker-dot { background: var(--teal); }

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 120px 0 60px; }
  .hero-info { grid-template-columns: 1fr; gap: 16px; }
  .hero-title { font-size: clamp(36px, 10.5vw, 60px); }
}

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--bg-0); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-1) 100%);
}
.about-visual-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 91, 155, 0.3);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.about-visual-badge-icon {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.about-visual-badge strong {
  font-family: 'Tourney', cursive;
  font-weight: 800;
  font-size: 24px;
  display: block;
  line-height: 1;
  color: var(--white);
}
.about-visual-badge span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.about-stats-row {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(243, 242, 242, 0.08);
  padding: 20px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  z-index: 2;
}
.about-stat { text-align: center; }
.about-stat strong {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 28px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.about-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 20px 0 28px;
}
.about-content p {
  color: var(--gray-medium);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-content p strong { color: var(--white); font-weight: 600; }

/* =========================================
   HIGHLIGHTS
   ========================================= */
.highlights { background: var(--bg-1); position: relative; }
.highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.highlight-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.highlight-card:hover {
  border-color: rgba(252, 91, 155, 0.3);
  transform: translateY(-6px);
}
.highlight-card:first-child {
  background: linear-gradient(140deg, rgba(252, 91, 155, 0.16), rgba(252, 91, 155, 0.02) 60%);
  border-color: rgba(252, 91, 155, 0.25);
}
.highlight-card-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: var(--pink-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  bottom: -100px;
  right: -100px;
  transition: opacity 0.5s var(--ease);
}
.highlight-card:hover .highlight-card-glow { opacity: 0.15; }
.highlight-icon {
  width: 56px; height: 56px;
  background: rgba(252, 91, 155, 0.1);
  border: 1px solid rgba(252, 91, 155, 0.2);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.highlight-number {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 14px;
  color: var(--pink-primary);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}
.highlight-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.highlight-card p {
  color: var(--gray-medium);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   STATS
   ========================================= */
.stats {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(252, 91, 155, 0.15), transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
}
.stats-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.stats-header .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}
.stats-header .eyebrow::before { display: none; }
.stats-header h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 20px;
}
.stats-header p {
  color: var(--gray-medium);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(243, 242, 242, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-1);
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(243, 242, 242, 0.06);
  position: relative;
  transition: all 0.4s var(--ease);
}
.stat-item:last-child { border-right: 0; }
.stat-item:hover { background: rgba(252, 91, 155, 0.04); }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.stat-item:hover::before { width: 80%; }
.stat-num {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.stats-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 40px 0 8px;
}
.cta-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  padding: 96px 48px;
  border-radius: 32px;
  background:
    radial-gradient(620px 320px at 12% 0%, rgba(252, 91, 155, 0.2), transparent 65%),
    radial-gradient(520px 300px at 88% 100%, rgba(53, 224, 190, 0.13), transparent 65%),
    var(--bg-2);
  border: 1px solid rgba(252, 91, 155, 0.3);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--pink-primary) 1px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.08;
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 20px;
}
.cta-band p {
  position: relative;
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
}
.btn-lg { padding: 20px 44px; font-size: 13px; }
.cta-band .btn-primary { box-shadow: 0 16px 48px -8px rgba(252, 91, 155, 0.55); }
.cta-band .btn-primary:hover { box-shadow: 0 22px 64px -8px rgba(252, 91, 155, 0.75); }

/* =========================================
   WHY ATTEND
   ========================================= */
.why { background: var(--bg-1); position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 20px 0 28px;
}
.why-content > p {
  color: var(--gray-medium);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.why-list { list-style: none; display: grid; gap: 16px; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.why-item:hover {
  border-color: rgba(252, 91, 155, 0.3);
  transform: translateX(6px);
}
.why-item-num {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 32px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.why-item-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: var(--white);
}
.why-item-content p {
  color: var(--gray-medium);
  font-size: 13px;
  line-height: 1.5;
}
.why-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
}
.why-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}
.why-visual-tile {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.why-visual-tile-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.why-visual-tile-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--pink-primary);
  border-radius: 50%;
}

/* =========================================
   SCHEDULE
   ========================================= */
.schedule { background: var(--bg-0); position: relative; }
.schedule-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.schedule-tab {
  padding: 14px 28px;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.08);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-medium);
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedule-tab:hover {
  border-color: rgba(252, 91, 155, 0.3);
  color: var(--white);
}
.schedule-tab.active {
  background: var(--gradient-primary);
  color: var(--bg-0);
  border-color: transparent;
}
.schedule-tab .num {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 14px;
}
.schedule-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 12px;
}
.schedule-panel.active { display: grid; animation: fadeIn 0.6s var(--ease); }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr 180px 140px;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.schedule-row:hover {
  border-color: rgba(252, 91, 155, 0.3);
  background: var(--bg-3);
}
.schedule-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.schedule-row:hover::before { transform: scaleY(1); }
.schedule-time {
  font-family: 'Tourney', cursive;
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
}
.schedule-time span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-top: 4px;
}
.schedule-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
  color: var(--white);
}
.schedule-info p {
  font-size: 13px;
  color: var(--gray-medium);
}
.schedule-stage {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
  display: flex;
  align-items: center;
  gap: 8px;
}
.schedule-stage::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--pink-primary);
  border-radius: 50%;
}
.schedule-action { text-align: right; }
.schedule-action .tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(252, 91, 155, 0.1);
  border: 1px solid rgba(252, 91, 155, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
}
.schedule-action .tag.live {
  background: var(--pink-primary);
  color: var(--bg-0);
}

/* =========================================
   TEAMS
   ========================================= */
.teams { background: var(--bg-1); position: relative; }
.teams-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}
.teams-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.teams-filter button {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(243, 242, 242, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-medium);
  transition: all 0.3s var(--ease);
}
.teams-filter button:hover { color: var(--white); border-color: rgba(252, 91, 155, 0.3); }
.teams-filter button.active {
  background: var(--gradient-primary);
  color: var(--bg-0);
  border-color: transparent;
}
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(252, 91, 155, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.team-card:hover::before { opacity: 1; }
.team-card:hover {
  border-color: rgba(252, 91, 155, 0.3);
  transform: translateY(-4px);
}
.team-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.team-logo {
  width: 56px; height: 56px;
  background: var(--bg-3);
  border: 1px solid rgba(243, 242, 242, 0.1);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 18px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-rank {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 28px;
  color: var(--gray-medium);
  line-height: 1;
}
.team-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.team-card .team-origin {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 242, 242, 0.06);
  position: relative;
  z-index: 1;
}
.team-stat { text-align: center; }
.team-stat strong {
  font-family: 'Tourney', cursive;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.team-stat span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}

/* =========================================
   STANDINGS
   ========================================= */
.standings { background: var(--bg-0); position: relative; }
.standings-wrap {
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 24px;
  overflow: hidden;
}
.standings-head {
  display: grid;
  grid-template-columns: 60px 1fr 80px 80px 80px 80px 80px 100px;
  gap: 16px;
  padding: 20px 32px;
  background: var(--bg-3);
  border-bottom: 1px solid rgba(243, 242, 242, 0.06);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.standings-head > div:not(:first-child):not(:nth-child(2)) { text-align: center; }
.standings-row {
  display: grid;
  grid-template-columns: 60px 1fr 80px 80px 80px 80px 80px 100px;
  gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(243, 242, 242, 0.04);
  align-items: center;
  transition: all 0.3s var(--ease);
}
.standings-row:last-child { border-bottom: 0; }
.standings-row:hover { background: rgba(252, 91, 155, 0.04); }
.standings-row.featured {
  background: linear-gradient(90deg, rgba(252, 91, 155, 0.08), transparent);
  border-left: 3px solid var(--pink-primary);
}
.standings-pos {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
}
.standings-pos.top { color: var(--pink-primary); }
.standings-team {
  display: flex;
  align-items: center;
  gap: 16px;
}
.standings-team-logo {
  width: 36px; height: 36px;
  background: var(--bg-3);
  border: 1px solid rgba(243, 242, 242, 0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 14px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.standings-team-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.standings-team-country {
  font-size: 11px;
  color: var(--gray-medium);
  margin-top: 2px;
}
.standings-cell {
  text-align: center;
  font-family: 'Tourney', cursive;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.standings-cell.points {
  color: var(--pink-primary);
  font-size: 22px;
}

/* =========================================
   FEATURED MATCH
   ========================================= */
.featured-match {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.featured-match::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(252, 91, 155, 0.15), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(254, 126, 173, 0.1), transparent 50%);
}
.featured-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.08);
  border-radius: 32px;
  overflow: hidden;
  padding: 48px;
  z-index: 1;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-primary);
}
.featured-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(252, 91, 155, 0.1);
  border: 1px solid rgba(252, 91, 155, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
}
.featured-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-medium);
  flex-wrap: wrap;
}
.featured-meta-item { display: flex; align-items: center; gap: 8px; }
.featured-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.featured-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.featured-team-logo {
  width: 120px; height: 120px;
  background: var(--bg-3);
  border: 2px solid rgba(243, 242, 242, 0.1);
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 48px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  transition: all 0.4s var(--ease);
}
.featured-team:hover .featured-team-logo {
  border-color: var(--pink-primary);
}
.featured-team h3 {
  font-size: 32px;
  letter-spacing: 0;
}
.featured-team p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.featured-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.featured-vs-divider {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 96px;
  line-height: 0.8;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.featured-vs-time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.featured-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 24px;
  padding: 24px;
  background: var(--bg-3);
  border-radius: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.featured-foot-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.featured-foot-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.featured-foot-value {
  font-family: 'Tourney', cursive;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery { background: var(--bg-0); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-2);
  cursor: pointer;
  border: 1px solid rgba(243, 242, 242, 0.06);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-row: span 2; }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(40%) contrast(1.1);
  transition: all 0.6s var(--ease);
}
.gallery-item:hover::before { filter: grayscale(0%) contrast(1.05); transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 9, 9, 0.9));
}
.gallery-item-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-item-label-text {
  font-family: 'Tourney', cursive;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}
.gallery-item-icon {
  width: 32px; height: 32px;
  background: rgba(252, 91, 155, 0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-icon { opacity: 1; transform: scale(1); }
.gallery-item.g1::before { background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=800&q=80'); }
.gallery-item.g2::before { background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=600&q=80'); }
.gallery-item.g3::before { background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=600&q=80'); }
.gallery-item.g4::before { background-image: url('https://images.unsplash.com/photo-1551817958-d9d86fb29431?w=800&q=80'); }
.gallery-item.g5::before { background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=600&q=80'); }
.gallery-item.g6::before { background-image: url('https://images.unsplash.com/photo-1518604666860-9ed391f76460?w=600&q=80'); }
.gallery-item.g7::before { background-image: url('https://images.unsplash.com/photo-1577223625816-7546f13df25d?w=800&q=80'); }
.gallery-item.g8::before { background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=600&q=80'); }

/* =========================================
   EXPERIENCE
   ========================================= */
.experience { background: var(--bg-1); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.exp-card {
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exp-card:hover {
  border-color: rgba(252, 91, 155, 0.3);
  transform: translateY(-4px);
}
.exp-card:first-child { grid-column: span 2; }
.exp-card-icon {
  width: 48px; height: 48px;
  background: rgba(252, 91, 155, 0.1);
  border: 1px solid rgba(252, 91, 155, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.exp-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: var(--white);
}
.exp-card p {
  font-size: 13px;
  color: var(--gray-medium);
  line-height: 1.5;
}
.exp-card-tag {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================================
   SPONSORS
   ========================================= */
.sponsors { background: var(--bg-0); }
.sponsor-tier { margin-bottom: 56px; }
.sponsor-tier:last-child { margin-bottom: 0; }
.sponsor-tier-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.sponsor-tier-name {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sponsor-tier-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(252, 91, 155, 0.3), transparent);
}
.sponsor-tier-info {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}
.sponsor-grid { display: grid; gap: 16px; }
.sponsor-grid.diamond { grid-template-columns: repeat(2, 1fr); }
.sponsor-grid.gold { grid-template-columns: repeat(3, 1fr); }
.sponsor-grid.silver { grid-template-columns: repeat(4, 1fr); }
.sponsor-grid.partners { grid-template-columns: repeat(6, 1fr); }
.sponsor-card {
  aspect-ratio: 16/9;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.sponsor-card.diamond { aspect-ratio: 21/9; }
.sponsor-card:hover {
  border-color: rgba(252, 91, 155, 0.3);
  background: var(--bg-3);
}
.sponsor-card-name {
  font-family: 'Tourney', cursive;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--gray-medium);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}
.sponsor-card.diamond .sponsor-card-name { font-size: 36px; }
.sponsor-card:hover .sponsor-card-name { color: var(--white); }
.sponsor-card-note {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}

/* =========================================
   FAQ
   ========================================= */
.faq { background: var(--bg-1); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-aside h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 20px 0 24px;
}
.faq-aside p {
  color: var(--gray-medium);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.faq-support {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.faq-support-icon {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq-support-text h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
  color: var(--white);
}
.faq-support-text p {
  font-size: 13px;
  color: var(--gray-medium);
  margin-bottom: 0;
}
.faq-support-text a {
  color: var(--pink-primary);
  font-weight: 600;
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(252, 91, 155, 0.2); }
.faq-item.open { border-color: rgba(252, 91, 155, 0.3); }
.faq-q {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--pink-primary); }
.faq-icon {
  width: 32px; height: 32px;
  background: rgba(252, 91, 155, 0.1);
  border: 1px solid rgba(252, 91, 155, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 14px; height: 14px;
  stroke: var(--pink-primary);
  transition: stroke 0.4s var(--ease);
}
.faq-item.open .faq-icon svg { stroke: var(--bg-0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 28px 24px;
  color: var(--gray-medium);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
   FINAL CTA
   ========================================= */
.cta-final {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(252, 91, 155, 0.2), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(254, 126, 173, 0.15), transparent 50%);
}
.cta-body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.cta-body .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
.cta-body .eyebrow::before { display: none; }
.cta-body h2 {
  font-size: clamp(48px, 8vw, 112px);
  margin-bottom: 32px;
  line-height: 0.95;
}
.cta-body p {
  font-size: 18px;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto 48px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(243, 242, 242, 0.1);
}
.cta-stat strong {
  font-family: 'Tourney', cursive;
  font-weight: 900;
  font-size: 48px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.cta-stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-medium);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(243, 242, 242, 0.06);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  color: var(--gray-medium);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-social a:hover svg { stroke: var(--bg-0); }
.footer-social svg {
  width: 16px; height: 16px;
  stroke: var(--white);
  transition: stroke 0.3s var(--ease);
}
.footer-col h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-col a {
  font-size: 13px;
  color: var(--gray-medium);
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--pink-primary); }
.footer-col a::before {
  content: '→';
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s var(--ease);
}
.footer-col a:hover::before { opacity: 1; transform: translateX(0); }
.footer-newsletter input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid rgba(243, 242, 242, 0.08);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 12px;
  transition: all 0.3s var(--ease);
}
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--pink-primary);
}
.footer-newsletter input::placeholder { color: var(--gray-medium); }
.footer-newsletter button {
  width: 100%;
  padding: 14px;
  background: var(--gradient-primary);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-0);
  transition: all 0.3s var(--ease);
}
.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px rgba(252, 91, 155, 0.5);
}
.footer-newsletter p {
  font-size: 11px;
  color: var(--gray-medium);
  margin-top: 12px;
  line-height: 1.5;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(243, 242, 242, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray-medium);
}
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: var(--gray-medium);
  transition: color 0.3s var(--ease);
}
.footer-legal a:hover { color: var(--pink-primary); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .highlights-grid, .teams-grid, .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: 0; }
  .stat-item:nth-child(n+4) { border-top: 1px solid rgba(243, 242, 242, 0.06); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(7) { grid-row: span 1; }
  .standings-head, .standings-row { grid-template-columns: 50px 1fr 60px 60px 60px 60px 60px 80px; font-size: 12px; }
  .sponsor-grid.partners { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .highlights-grid, .teams-grid, .experience-grid, .sponsor-grid.diamond, .sponsor-grid.gold, .sponsor-grid.silver, .sponsor-grid.partners { grid-template-columns: 1fr; }
  .exp-card:first-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: 0; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(243, 242, 242, 0.06); }
  .schedule-row { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .schedule-action { text-align: left; }
  .featured-body { grid-template-columns: 1fr; gap: 32px; }
  .featured-vs-divider { font-size: 64px; }
  .featured-foot { grid-template-columns: 1fr 1fr; }
  .standings-wrap { overflow-x: auto; }
  .standings-head, .standings-row { min-width: 720px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4), .gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
  .cta-stats { grid-template-columns: 1fr; gap: 24px; }
  .cta-band { padding: 64px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
