/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1e1e2a;
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-muted: #55556a;
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --accent-secondary: #f4a261;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --nav-height: 72px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.85); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); height: var(--nav-height);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 10px; font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 2px; color: var(--text-primary);
}
.logo strong { color: var(--accent); }
.logo-icon {
  width: 36px; height: 36px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.3s; position: relative; letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.search-box {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.3s; color: var(--text-secondary);
}
.search-box:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: flex-end;
  padding: 0 32px 60px; margin-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a0a0a 0%, #0a0a0f 40%, #0a1628 100%);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(230,57,70,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(30,58,95,0.2) 0%, transparent 70%);
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3);
  border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; color: var(--accent); margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95; letter-spacing: 3px; margin-bottom: 12px;
}
.hero-title span {
  font-family: var(--font-body); font-size: 0.4em; font-weight: 300;
  color: var(--text-muted); vertical-align: middle; margin: 0 12px;
  letter-spacing: 0;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 20px; font-weight: 400;
}
.hero-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; }
.score-badge {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 4px;
  background: var(--accent); padding: 4px 20px; border-radius: var(--radius-sm);
}
.time-badge {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 2px;
  color: var(--accent); background: rgba(230,57,70,0.1); padding: 6px 14px;
  border-radius: var(--radius-sm); border: 1px solid rgba(230,57,70,0.2);
}
.hero-actions { display: flex; gap: 12px; }
.hero-stats {
  position: absolute; right: 0; bottom: 0; display: flex; gap: 40px;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 1px; color: var(--text-primary); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white; border: none; padding: 14px 28px;
  border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; font-family: var(--font-body);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px var(--accent-glow); filter: brightness(1.1); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); color: var(--text-primary); border: 1px solid var(--border);
  padding: 14px 28px; border-radius: var(--radius-sm); font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: var(--font-body);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-small {
  padding: 8px 16px; font-size: 0.8rem; border-radius: 6px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04); color: var(--text-secondary); cursor: pointer;
  transition: all 0.3s; font-family: var(--font-body); font-weight: 500;
}
.btn-small:hover { background: var(--accent); color: white; border-color: var(--accent); }
.btn-small.ghost { background: transparent; }
.full-width { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.content-section { max-width: 1400px; margin: 0 auto; padding: 48px 32px; }
.dark-section { background: var(--bg-secondary); max-width: 100%; }
.dark-section .content-section { max-width: 1400px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.section-header h2 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 2px; }
.see-all { font-size: 0.85rem; color: var(--accent); font-weight: 500; }
.see-all:hover { text-decoration: underline; }

/* ===== CARDS ===== */
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.card-img {
  height: 200px; position: relative; display: flex; align-items: center; justify-content: center;
}
.card-play {
  width: 50px; height: 50px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.3s; opacity: 0;
}
.card:hover .card-play, .highlight-card:hover .card-play { opacity: 1; transform: scale(1.1); }
.card-play.large { width: 80px; height: 80px; font-size: 1.5rem; opacity: 0.8; }
.card-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.1); }
.card-progress-bar { height: 100%; background: var(--accent); border-radius: 0 2px 2px 0; }
.card-badge {
  position: absolute; top: 12px; left: 12px; padding: 4px 10px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); border-radius: 4px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; color: var(--text-secondary);
}
.card-info { padding: 16px; background: var(--bg-card); }
.card-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.card-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FIXTURES ===== */
.fixtures-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fixture-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.3s;
}
.fixture-card:hover { border-color: rgba(230,57,70,0.3); }
.fixture-date { display: flex; align-items: baseline; gap: 6px; }
.fixture-day { font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.fixture-num { font-family: var(--font-display); font-size: 2rem; letter-spacing: 1px; }
.fixture-month { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; }
.fixture-teams { font-size: 1rem; font-weight: 600; }
.fixture-teams .vs { font-weight: 300; color: var(--text-muted); margin: 0 6px; font-size: 0.85rem; }
.fixture-info { font-size: 0.8rem; color: var(--text-muted); }

/* ===== ORIGINALS GRID ===== */
.originals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.originals-grid .original-card.featured { grid-column: 1 / -1; }
.original-img {
  border-radius: var(--radius); overflow: hidden; position: relative;
  min-height: 250px; display: flex; align-items: flex-end;
}
.original-card.featured .original-img { min-height: 400px; }
.original-overlay {
  padding: 32px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  width: 100%; position: absolute; bottom: 0; left: 0; right: 0;
}
.original-badge {
  display: inline-block; padding: 4px 10px; background: var(--accent);
  border-radius: 4px; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; margin-bottom: 12px;
}
.original-overlay h3 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 3px; margin-bottom: 8px; }
.original-card.featured .original-overlay h3 { font-size: 3.5rem; }
.original-overlay p { font-size: 0.85rem; color: var(--text-secondary); max-width: 500px; margin-bottom: 16px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 32px 48px; max-width: 1400px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 3px; margin-bottom: 12px;
}
.page-hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin-bottom: 28px; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; border-radius: 20px; border: 1px solid var(--border);
  background: transparent; color: var(--text-secondary); font-size: 0.85rem;
  font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: var(--font-body);
}
.filter-tab:hover { border-color: var(--text-muted); color: var(--text-primary); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: white; }

/* ===== LIVE MATCH ===== */
.live-match-card {
  background: var(--bg-card); border: 1px solid rgba(230,57,70,0.2); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: 0 0 60px rgba(230,57,70,0.05);
}
.live-match-inner { display: flex; align-items: center; justify-content: center; gap: 60px; margin-bottom: 24px; }
.live-team { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 120px; }
.team-crest {
  width: 72px; height: 72px; border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 2px;
}
.live-team span { font-weight: 600; font-size: 1rem; }
.live-score-area { text-align: center; }
.live-score { font-family: var(--font-display); font-size: 4rem; letter-spacing: 8px; }
.live-time {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 1.1rem; color: var(--accent); font-weight: 600;
}
.live-dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.live-comp { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.live-actions { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; }
.live-events { display: flex; gap: 24px; justify-content: center; border-top: 1px solid var(--border); padding-top: 20px; }
.event { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); }
.event-time { font-weight: 700; color: var(--text-primary); font-size: 0.8rem; }

/* ===== MATCH LIST ===== */
.match-list { display: flex; flex-direction: column; gap: 2px; }
.match-item {
  display: flex; align-items: center; gap: 24px; padding: 20px 24px;
  background: var(--bg-card); border-radius: var(--radius-sm); transition: background 0.3s;
}
.match-item:hover { background: var(--bg-card-hover); }
.match-date-col { min-width: 80px; text-align: center; }
.match-date { display: block; font-weight: 600; font-size: 0.9rem; }
.match-comp {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
  padding: 2px 8px; background: rgba(255,255,255,0.05); border-radius: 3px;
  color: var(--text-muted); margin-top: 4px;
}
.match-teams-col { flex: 1; display: flex; align-items: center; gap: 16px; justify-content: center; }
.match-team { font-weight: 500; min-width: 140px; }
.match-team:first-child { text-align: right; }
.match-result {
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 4px;
  padding: 4px 16px; border-radius: 6px; background: rgba(255,255,255,0.04);
}
.match-result.win { color: #2ecc71; }
.match-result.draw { color: var(--accent-secondary); }
.match-result.loss { color: var(--accent); }
.match-actions-col { display: flex; gap: 8px; }

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.highlight-card {
  border-radius: var(--radius); overflow: hidden; background: var(--bg-card);
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.highlight-img {
  height: 180px; position: relative; display: flex; align-items: center; justify-content: center;
}
.highlight-duration {
  position: absolute; bottom: 10px; right: 10px; padding: 3px 8px;
  background: rgba(0,0,0,0.7); border-radius: 4px; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.5px;
}
.highlight-info { padding: 16px; }
.highlight-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.highlight-info p { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 6px; }
.highlight-meta { font-size: 0.72rem; color: var(--text-muted); }

/* ===== GOTM ===== */
.gotm-card {
  display: grid; grid-template-columns: 1.5fr 1fr; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-card);
}
.gotm-video { min-height: 280px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.gotm-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.gotm-badge {
  display: inline-block; padding: 4px 12px; background: var(--accent-secondary);
  color: #000; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; width: fit-content;
}
.gotm-info h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1px; }
.gotm-info p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== SERIES (Originals) ===== */
.series-featured-img {
  border-radius: var(--radius-lg); min-height: 480px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.series-featured-content {
  padding: 48px; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  width: 100%; position: absolute; bottom: 0;
}
.series-title { font-family: var(--font-display); font-size: 4rem; letter-spacing: 6px; margin-bottom: 12px; }
.series-desc { font-size: 1rem; color: var(--text-secondary); max-width: 550px; margin-bottom: 16px; }
.series-meta { display: flex; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.series-actions { display: flex; gap: 12px; }
.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.series-card { cursor: pointer; }
.series-card-img {
  height: 200px; border-radius: var(--radius); position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start;
  transition: transform 0.3s;
}
.series-card:hover .series-card-img { transform: translateY(-4px); }
.series-episodes {
  position: absolute; top: 12px; right: 12px; padding: 4px 10px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); border-radius: 4px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px;
}
.series-card h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 2px; margin: 14px 0 6px; }
.series-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; position: relative; transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--accent); box-shadow: 0 0 60px rgba(230,57,70,0.1);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); padding: 4px 16px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; white-space: nowrap;
}
.price-tier {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 3px;
  color: var(--text-muted); margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display); font-size: 3.5rem; letter-spacing: 1px; margin-bottom: 24px;
}
.price-amount .currency { font-size: 1.5rem; vertical-align: super; margin-right: 2px; }
.price-amount .period { font-size: 1rem; color: var(--text-muted); letter-spacing: 0; }
.price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 0.85rem; }
.price-features li.included { color: var(--text-secondary); }
.price-features li.excluded { color: var(--text-muted); opacity: 0.5; }

/* ===== VIP FEATURES ===== */
.vip-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vip-feature {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: border-color 0.3s;
}
.vip-feature:hover { border-color: rgba(230,57,70,0.3); }
.vip-icon { font-size: 2rem; margin-bottom: 14px; }
.vip-feature h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 8px; }
.vip-feature p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--bg-card); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; font-size: 0.95rem; transition: background 0.3s;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-toggle { font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 24px; font-size: 0.85rem;
  color: var(--text-secondary); line-height: 1.7; transition: all 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== FOOTER ===== */
.main-footer { border-top: 1px solid var(--border); margin-top: 48px; }
.footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 48px 32px;
  display: flex; justify-content: space-between; gap: 40px;
}
.footer-brand { max-width: 350px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding: 20px 32px;
  border-top: 1px solid var(--border); text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeInUp 0.8s ease-out backwards; }
.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-meta { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.5s; }
.hero-stats .stat { animation: fadeInUp 0.8s ease-out backwards; }
.hero-stats .stat:nth-child(1) { animation-delay: 0.6s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.7s; }
.hero-stats .stat:nth-child(3) { animation-delay: 0.8s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .card-row, .fixtures-row, .highlights-grid, .series-grid, .pricing-grid { grid-template-columns: 1fr; }
  .originals-grid { grid-template-columns: 1fr; }
  .vip-features { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
  .nav-links { display: none; }
  .live-match-inner { flex-direction: column; gap: 20px; }
  .match-item { flex-direction: column; text-align: center; }
  .match-teams-col { flex-direction: column; gap: 8px; }
  .match-team { min-width: unset; text-align: center !important; }
  .gotm-card { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}