/*
Theme Name: AACL Cricket League
Theme URI: https://aaclcricket.com
Author: AACL
Author URI: https://aaclcricket.com
Description: Custom WordPress theme for the Asian African Cricket League (AACL) — navy & gold design system with shared header/footer template parts.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aacl-theme
*/

:root {
  --navy: #0D1B3E;
  --navy-dark: #070e20;
  --navy-mid: #162040;
  --gold: #C8993A;
  --gold-light: #E8B84B;
  --gold-pale: #f5e9cc;
  --red: #DC2626;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --grey-light: #f1eff9;
  --grey-mid: #e0ddd8;
  --grey-text: #666;
  --text-dark: #1a1a2e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7, 14, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 153, 58, 0.2);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy-dark);
  letter-spacing: 1px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--gold); }

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-outline-gold {
  padding: 9px 20px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold {
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-gold:hover { background: var(--gold-light); }

/* ─── SECTION 1: HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,153,58,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(200,153,58,0.025) 40px,
      rgba(200,153,58,0.025) 41px
    );
}

.hero-cricket-lines {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 600px at 70% 50%, rgba(13,27,62,0.0) 0%, transparent 70%),
    radial-gradient(circle 300px at 10% 80%, rgba(220,38,38,0.06) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  padding: 0 2rem;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,153,58,0.12);
  border: 1px solid rgba(200,153,58,0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  color: var(--white);
  letter-spacing: 4px;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-headline .gold { color: var(--gold); }
.hero-headline .red { color: var(--red); }

.hero-subheadline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
  color: rgba(255,255,255,0.7);
  margin: 1.5rem 0;
  letter-spacing: 1px;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

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

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  height: 50px;
  background: rgba(200,153,58,0.3);
  align-self: center;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.2s;
}

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

.btn-hero-secondary {
  padding: 16px 40px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,153,58,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* ─── SECTION 2: TICKER BAR ─── */
.ticker-bar {
  background: var(--gold);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  gap: 4rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--navy-dark);
  border-radius: 50%;
  opacity: 0.4;
}

/* ─── SECTION 3: COUNTDOWN ─── */
.countdown-section {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,153,58,0.2);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  min-width: 100px;
  text-align: center;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.countdown-unit {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.countdown-colon {
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(200,153,58,0.3);
  align-self: flex-start;
  padding-top: 1.5rem;
}

/* ─── SECTION 4: STATS BAR ─── */
.stats-bar {
  background: var(--off-white);
  padding: 3rem 4rem;
  border-bottom: 1px solid var(--grey-mid);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--grey-mid);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
}

.stat-number .gold { color: var(--gold); }

.stat-label {
  font-size: 11px;
  color: var(--grey-text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─── SECTION 5: WHAT IS AACL ─── */
.about-section {
  padding: 7rem 2rem;
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

.about-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,153,58,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vision-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,153,58,0.2);
  border-radius: 8px;
  padding: 1.5rem;
}

.vision-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.vision-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.vision-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ─── SECTION 6: 8 TEAMS ─── */
.teams-section {
  padding: 7rem 2rem;
  background: var(--navy-dark);
}

.teams-header {
  text-align: center;
  margin-bottom: 4rem;
}

.teams-header .section-heading { color: var(--white); }

.teams-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}

.team-card:hover { transform: translateY(-4px); }

.team-card-header {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.team-flag {
  font-size: 28px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.team-city {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
  margin-top: 4px;
}

.team-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

/* Team Colors */
.team-mumbai { background: linear-gradient(135deg, #0A2463 0%, #051230 100%); border-top: 3px solid #C8993A; }
.team-dubai { background: linear-gradient(135deg, #2a2a2a 0%, #111 100%); border-top: 3px solid #C8993A; }
.team-cape { background: linear-gradient(135deg, #006B54 0%, #003D30 100%); border-top: 3px solid #FFB81C; }
.team-jhb { background: linear-gradient(135deg, #6B0000 0%, #3a0000 100%); border-top: 3px solid #FFD700; }
.team-colombo { background: linear-gradient(135deg, #3a0060 0%, #1a002d 100%); border-top: 3px solid #00B4D8; }
.team-dhaka { background: linear-gradient(135deg, #004d3a 0%, #002618 100%); border-top: 3px solid #F42A41; }
.team-nairobi { background: linear-gradient(135deg, #004025 0%, #001f10 100%); border-top: 3px solid #FF8C00; }
.team-lagos { background: linear-gradient(135deg, #100520 0%, #070010 100%); border-top: 3px solid #00C896; }

.teams-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── SECTION 7: INVESTOR PANEL ─── */
.investor-section {
  padding: 7rem 2rem;
  background: var(--off-white);
}

.investor-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.investor-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}

.investor-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.investor-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  color: var(--grey-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.4;
}

.tier-table {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
  margin-top: 3rem;
}

.tier-table-header {
  background: var(--navy);
  display: grid;
  grid-template-columns: 120px 1fr 160px 160px 120px;
  gap: 0;
  padding: 1rem 2rem;
}

.tier-table-header span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tier-row {
  display: grid;
  grid-template-columns: 120px 1fr 160px 160px 120px;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--grey-mid);
  align-items: center;
  transition: background 0.15s;
}

.tier-row:last-child { border-bottom: none; }
.tier-row:hover { background: var(--off-white); }

.tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tier-1 { background: #fef3c7; color: #92400e; }
.tier-2 { background: #dbeafe; color: #1e3a8a; }
.tier-3 { background: #d1fae5; color: #065f46; }
.tier-4 { background: #f3f4f6; color: #374151; }

.tier-team-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.tier-city {
  font-size: 12px;
  color: var(--grey-text);
  margin-top: 2px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 1px;
}

.tier-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #059669;
  font-weight: 600;
}

.tier-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
}

/* ─── SECTION 8: SEASON INFO ─── */
.season-section {
  padding: 7rem 2rem;
  background: var(--navy);
  color: var(--white);
}

.season-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.season-header {
  text-align: center;
  margin-bottom: 4rem;
}

.season-header .section-heading { color: var(--white); }

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.season-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,153,58,0.2);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
}

.season-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,153,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 24px;
}

.season-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.season-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.season-timeline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,153,58,0.15);
  border-radius: 10px;
  padding: 2.5rem;
}

.timeline-heading {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-align: center;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.timeline-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(200,153,58,0.15);
}

.timeline-item:last-child { border-right: none; }

.timeline-date {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-event {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ─── SECTION 9: FORMAT ─── */
.format-section {
  padding: 7rem 2rem;
  background: var(--white);
}

.format-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: start;
}

.format-rules {
  list-style: none;
}

.format-rule {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-mid);
  align-items: flex-start;
}

.format-rule:last-child { border-bottom: none; }

.rule-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: rgba(200,153,58,0.2);
  letter-spacing: 1px;
  line-height: 1;
  min-width: 48px;
}

.rule-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.rule-text {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.6;
}

.format-sidebar {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
}

.format-sidebar-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.squad-rule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.squad-rule:last-child { border-bottom: none; }

.squad-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.squad-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ─── SECTION 10: VENUES ─── */
.venues-section {
  padding: 7rem 2rem;
  background: var(--off-white);
}

.venues-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.venue-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
}

.venue-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}

.venue-primary { background: linear-gradient(135deg, #0D1B3E, #1a2d5a); }
.venue-secondary { background: linear-gradient(135deg, #1a1a2e, #2d2d4e); }
.venue-tertiary { background: linear-gradient(135deg, #1a0a2e, #2d1545); }

.venue-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.venue-info {
  padding: 1.5rem;
}

.venue-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.venue-city {
  font-size: 12px;
  color: var(--grey-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.venue-capacity {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 1px;
}

.venue-cap-label {
  font-size: 11px;
  color: var(--grey-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── SECTION 11: SPONSOR / PARTNER ─── */
.partners-section {
  padding: 5rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
}

.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.partners-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-text);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.partner-tiers {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.partner-tier {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-tier-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  min-width: 120px;
  text-align: right;
}

.partner-slot {
  background: var(--off-white);
  border: 1.5px dashed var(--grey-mid);
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 12px;
  color: rgba(0,0,0,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  min-width: 140px;
}

.sponsor-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.sponsor-cta p {
  font-size: 16px;
  color: var(--grey-text);
}

/* ─── SECTION 12: MEDIA / NEWS ─── */
.media-section {
  padding: 7rem 2rem;
  background: var(--navy-dark);
}

.media-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.news-card:hover { border-color: rgba(200,153,58,0.3); }

.news-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, rgba(13,27,62,0.8), rgba(200,153,58,0.1));
}

.news-card-large .news-img { height: 280px; }

.news-body {
  padding: 1.5rem;
}

.news-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card-large .news-title { font-size: 24px; }

.news-date {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── SECTION 13: FAN ZONE ─── */
.fanzone-section {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fanzone-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 30px,
    rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px
  );
}

.fanzone-inner { position: relative; max-width: 800px; margin: 0 auto; }

.fanzone-section .section-heading { color: var(--white); margin-bottom: 1rem; }

.fanzone-body {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.fanzone-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.fanzone-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.fanzone-form input::placeholder { color: rgba(255,255,255,0.5); }

.btn-white {
  padding: 14px 28px;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-white:hover { background: var(--gold-pale); }

/* ─── SECTION 14: GOVERNANCE ─── */
.governance-section {
  padding: 7rem 2rem;
  background: var(--off-white);
}

.governance-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.entity-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.entity-logo-placeholder {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
}

.entity-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.entity-type {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.entity-desc {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ─── SECTION 15: LEADERSHIP ─── */
.leadership-section {
  padding: 7rem 2rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.leader-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,153,58,0.2);
  border-bottom: 3px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}

.leader-photo {
  width: 100px;
  height: 100px;
  background: rgba(200,153,58,0.15);
  border: 3px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
}

.leader-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.leader-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.leader-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.leader-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.leader-bio {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.leader-placeholder-note {
  margin-top: 1.5rem;
  font-size: 11px;
  color: rgba(200,153,58,0.5);
  letter-spacing: 1px;
  font-style: italic;
}

/* ─── SECTION 16: FOOTER ─── */
.footer {
  background: var(--navy-dark);
  padding: 5rem 2rem 2rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(200,153,58,0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.footer-brand .footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-entity-strip {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.entity-link {
  font-size: 11px;
  color: rgba(200,153,58,0.6);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.entity-link:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.5); }

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

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.2s;
  text-decoration: none;
}

.whatsapp-fab:hover { transform: scale(1.1); }

.whatsapp-icon { font-size: 28px; }

/* Responsive */
@media (max-width: 1024px) {
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .timeline-items { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .investor-header { grid-template-columns: 1fr; }
  .investor-metrics { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: 1fr; }
  .venues-grid { grid-template-columns: 1fr; }
  .entity-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .tier-table-header { display: none; }
  .tier-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .format-inner { grid-template-columns: 1fr; }
  .hero-stats-row { gap: 1.5rem; }
  .hero-divider { display: none; }
  .hero-headline { font-size: 60px; }
}

/* ============================================================
   EXTRA — Inner page components (Invest / Broadcast / Teams /
   Schedule / About / Contact / Fan Zone / Legal / Tickets)
   ============================================================ */
.header-nav a.is-active { color: var(--gold); }

.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 160px 2rem 80px;
  text-align: center;
}
.page-hero .aacl-label { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 13px; font-weight: 600; }
.page-hero h1 { font-family: var(--font-display); font-size: 56px; letter-spacing: 1px; margin: 1rem 0; }
.page-hero p { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.6; }

.aacl-section { padding: 80px 2rem; }
.aacl-bg--navy { background: var(--navy); color: var(--white); }
.aacl-bg--light { background: var(--off-white); }
.aacl-bg--gold { background: var(--gold); color: var(--navy-dark); }
.aacl-text--white { color: var(--white); }
.aacl-text--navy { color: var(--navy-dark); }
.aacl-text--center { text-align: center; }
.aacl-container { max-width: 1200px; margin: 0 auto; }
.aacl-container--narrow { max-width: 800px; }

.aacl-section-header { margin-bottom: 2.5rem; }
.aacl-section-header--center { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.aacl-section-header h2 { font-family: var(--font-display); font-size: 38px; margin: 0.5rem 0 1rem; letter-spacing: 0.5px; }
.aacl-section-header__sub { color: var(--grey-text); line-height: 1.7; }
.aacl-bg--navy .aacl-section-header__sub, .aacl-bg--navy p { color: rgba(255,255,255,0.75); }

.aacl-label { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.aacl-label--gold { color: var(--gold-light); }

.aacl-btn { display: inline-block; padding: 14px 28px; border-radius: 4px; font-weight: 600; text-decoration: none; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; transition: 0.2s; }
.aacl-btn--gold { background: var(--gold); color: var(--navy-dark); }
.aacl-btn--gold:hover { background: var(--gold-light); }
.aacl-btn--navy { background: var(--navy); color: var(--white); }
.aacl-btn--navy:hover { background: var(--navy-mid); }
.aacl-btn--outline-white { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); }
.aacl-btn--outline-white:hover { border-color: var(--gold); color: var(--gold); }
.aacl-btn--large { padding: 16px 36px; font-size: 15px; }
.aacl-text-link { color: var(--gold); font-weight: 600; text-decoration: none; font-size: 14px; }
.aacl-text-link:hover { text-decoration: underline; }

/* Card grids reused across Invest / Broadcast */
.aacl-grid-cards { display: grid; gap: 1.5rem; }
.aacl-grid-cards--2 { grid-template-columns: repeat(2, 1fr); }
.aacl-grid-cards--3 { grid-template-columns: repeat(3, 1fr); }
.aacl-grid-cards--4 { grid-template-columns: repeat(4, 1fr); }
.aacl-card { background: var(--white); border: 1px solid var(--grey-mid); border-radius: 8px; padding: 2rem; }
.aacl-bg--navy .aacl-card { background: var(--navy-mid); border-color: rgba(200,153,58,0.2); }
.aacl-card h3 { font-family: var(--font-serif); font-size: 22px; margin: 0.75rem 0; }
.aacl-card p { color: var(--grey-text); line-height: 1.6; font-size: 14px; }
.aacl-bg--navy .aacl-card p { color: rgba(255,255,255,0.7); }
.aacl-card-icon { font-size: 32px; }

/* Stats strip */
.aacl-stats-strip { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; text-align: center; }
.aacl-stats-strip__item { flex: 1; min-width: 140px; }
.aacl-stats-strip__value { display: block; font-family: var(--font-display); font-size: 42px; color: var(--gold); }
.aacl-stats-strip__label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* Tier cards */
.aacl-tier-card { border: 1px solid var(--grey-mid); border-radius: 10px; padding: 2rem; background: var(--white); }
.aacl-tier-card--gold { border-color: var(--gold); box-shadow: 0 8px 30px rgba(200,153,58,0.15); }
.aacl-tier-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.aacl-tier-label { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }
.aacl-tier-price { font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.aacl-tier-card ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.aacl-tier-card li { padding: 4px 0; font-weight: 600; }
.aacl-tier-card .markets { font-size: 13px; color: var(--gold); margin-bottom: 0.5rem; font-weight: 600; }
.aacl-tier-card .why { color: var(--grey-text); font-size: 14px; line-height: 1.6; margin-bottom: 1rem; }

/* Revenue streams */
.aacl-revenue-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--grey-mid); }
.aacl-revenue-item:last-child { border-bottom: none; }
.aacl-revenue-pct { font-family: var(--font-display); font-size: 36px; color: var(--gold); min-width: 90px; }
.aacl-revenue-item p { margin-top: 0.25rem; color: var(--grey-text); font-size: 14px; line-height: 1.6; }

/* Journey steps */
.aacl-journey-steps { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.aacl-journey-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.aacl-journey-step-num { font-family: var(--font-display); font-size: 32px; color: var(--gold); min-width: 50px; }
.aacl-journey-step h3 { font-family: var(--font-serif); margin-bottom: 0.25rem; font-size: 18px; }
.aacl-journey-step p { color: var(--grey-text); font-size: 14px; line-height: 1.6; }

/* Sub nav */
.aacl-sub-nav { background: var(--navy-dark); padding: 1rem 2rem; }
.aacl-sub-nav-list { max-width: 1200px; margin: 0 auto; display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.aacl-sub-nav-list a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }
.aacl-sub-nav-list a:hover, .aacl-sub-nav-list a.is-active { color: var(--gold); }

/* Generic content / legal pages */
.content-page { max-width: 800px; margin: 0 auto; padding: 140px 2rem 80px; line-height: 1.8; }
.content-page h1 { font-family: var(--font-display); font-size: 44px; margin-bottom: 0.5rem; }
.content-page .updated { color: var(--grey-text); font-size: 13px; margin-bottom: 2rem; }
.content-page h2 { font-family: var(--font-serif); font-size: 24px; margin: 2rem 0 0.75rem; color: var(--navy); }
.content-page p, .content-page li { color: #444; }
.content-page ul { padding-left: 1.25rem; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 1rem; border: 1px solid var(--grey-mid);
  border-radius: 4px; font-family: var(--font-body); font-size: 14px;
}
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 0.35rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); }
.contact-info h3 { font-family: var(--font-serif); margin: 1.5rem 0 0.5rem; }
.contact-info p { color: var(--grey-text); line-height: 1.7; }

/* Team detail cards on Teams page */
.team-detail-card { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; border: 1px solid var(--grey-mid); border-radius: 10px; padding: 1.5rem; align-items: center; background: var(--white); }
.team-detail-flag { font-size: 64px; text-align: center; }
.team-detail-card h3 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 0.25rem; }
.team-detail-card .meta { font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.team-detail-card p { color: var(--grey-text); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
  .aacl-grid-cards--2, .aacl-grid-cards--3, .aacl-grid-cards--4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-detail-card { grid-template-columns: 1fr; text-align: center; }
  .page-hero h1 { font-size: 38px; }
}
