/* ═══════════════════════════════════════════════
   SPORTSHUNTTV — Premium Landing Page v2
   ═══════════════════════════════════════════════ */

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

:root {
  --bg-primary: #050812;
  --bg-secondary: #0a0f1e;
  --bg-card: #111827;
  --bg-card-hover: #1a2335;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --accent-1: #22d3ee;
  --accent-2: #6366f1;
  --accent-grad: linear-gradient(135deg, #22d3ee, #6366f1);
  --accent-grad-2: linear-gradient(135deg, #6366f1, #a855f7);
  --green: #10b981;
  --green-dark: #059669;
  --yellow: #f59e0b;
  --red: #ef4444;
  --border: rgba(148, 163, 184, 0.07);
  --border-active: rgba(34, 211, 238, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 60px rgba(0,0,0,0.5);
  --glow: 0 0 40px rgba(34, 211, 238, 0.07);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

::selection { background: rgba(34, 211, 238, 0.2); color: var(--text-primary); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

a { text-decoration: none; color: inherit; }
.text-center { text-align: center; }

/* ─── Gradient Text ─── */
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Background Noise ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  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");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 8, 18, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 8, 18, 0.92);
  border-color: rgba(148, 163, 184, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo-svg {
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.25));
  transition: filter var(--transition);
}

.logo:hover .logo-svg {
  filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.4));
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-main {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #f0f4f8, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tv {
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-grad);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.btn-join-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-grad);
  color: #050812;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.83rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-join-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}

.btn-join-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  padding-top: 72px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.05), transparent 70%);
  border-radius: 50%;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-1);
  border-radius: 50%;
  opacity: 0;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.35; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.12);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.6s ease 0.15s both;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.25s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.35s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.45s both;
}

/* ─── Hero Predictions ─── */
.hero-predictions {
  margin-top: 52px;
  animation: fadeInUp 0.6s ease 0.55s both;
}

.pred-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pred-cards {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  min-height: 64px;
  width: 100%;
  max-width: 100%;
}

.pred-skeleton {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.sk-pulse {
  width: 170px;
  height: 64px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  animation: skPulse 1.5s ease infinite;
  flex-shrink: 0;
}

@keyframes skPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.12; }
}

.pred-mini-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: all var(--transition);
  min-width: 165px;
  max-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.pred-mini-card:hover {
  border-color: rgba(34, 211, 238, 0.18);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.pmc-live-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.pred-mini-card .pmc-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}

.pred-mini-card .pmc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.pred-mini-card .pmc-teams {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pred-mini-card .pmc-result {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pred-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  padding: 4px 0;
}

.pred-more:hover { color: var(--accent-1); }

.pred-more svg { transition: transform var(--transition); }
.pred-more:hover svg { transform: translateX(4px); }

.tap-hint {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.5s forwards;
}

.tap-hint.fade-out {
  animation: fadeOut 0.6s ease forwards;
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateY(4px); }
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-grad);
  color: #050812;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 48px rgba(34, 211, 238, 0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.03);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.15rem;
  gap: 12px;
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */

.section {
  padding: 110px 0;
  position: relative;
}

.section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.section-tag svg { opacity: 0.7; }

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-desc {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   LIVE SECTION
   ═══════════════════════════════════════════════ */

.live-section {
  background: var(--bg-secondary);
  position: relative;
}

.live-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.08), transparent);
}

.live-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.live-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 70px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--accent-1);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.live-match-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInUp 0.5s ease calc(var(--i) * 0.08s + 0.1s) both;
  position: relative;
  overflow: hidden;
}

.live-match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity var(--transition);
}

.live-match-card:hover::before { opacity: 1; }

.live-match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.12);
  box-shadow: var(--shadow-lg);
}

.live-match-card .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.live-match-card .card-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  width: 100%;
}

.live-match-card .card-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.live-match-card .card-team .team-name {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: var(--text-primary);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-match-card .card-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.live-match-card .card-team .team-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform var(--transition);
}

.live-match-card:hover .card-team .team-logo {
  transform: scale(1.08);
}

.live-match-card .card-team .team-name {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: var(--text-primary);
}

.live-match-card .card-vs {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.live-match-card .card-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.live-match-card .card-title svg { opacity: 0.4; flex-shrink: 0; }

.live-matches-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  color: var(--text-muted);
}

.live-matches-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

.live-matches-empty h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.live-matches-empty p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════ */

.features-section {
  background: var(--bg-secondary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.06), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease calc(var(--i) * 0.08s + 0.2s) both;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover::after { opacity: 1; }

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.1);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 211, 238, 0.08);
  transition: border-color var(--transition), background var(--transition);
}

.feature-card:hover .feature-icon {
  border-color: rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.08);
}

.feature-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-card svg {
  width: 26px;
  height: 26px;
}

/* ═══════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════ */

.cta-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 64px 44px;
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.08);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.04), transparent 60%);
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.04), transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.18);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */

.faq-section {
  background: var(--bg-secondary);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.06), transparent);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active { border-color: rgba(34, 211, 238, 0.18); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(34, 211, 238, 0.02); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.footer {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand .logo-text .logo-main { font-size: 1.2rem; }

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color var(--transition);
  font-weight: 500;
}

.footer-links a:hover { color: var(--accent-1); }

.footer-copy p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(0.85); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .container { padding: 0 14px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 8, 18, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .btn-join-nav { display: none; }

  .hamburger { display: flex; }

  .hero-content { padding: 40px 0 20px; }

  .hero-badge { font-size: 0.72rem; padding: 6px 16px; margin-bottom: 20px; }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); letter-spacing: -0.5px; }

  .hero-desc { font-size: 0.9rem; margin-bottom: 28px; }

  .hero-stats {
    gap: 12px;
    flex-wrap: wrap;
  }

  .stat-item { gap: 1px; }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 1px; }
  .stat-divider { height: 30px; }

  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.95rem; }

  .hero-predictions { margin-top: 36px; }

  .pred-label { font-size: 0.65rem; letter-spacing: 1.5px; margin-bottom: 12px; }

  .pred-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    min-height: 52px;
  }

  .pred-cards::-webkit-scrollbar { display: none; }

  .pred-mini-card {
    flex-shrink: 0;
    min-width: 145px;
    padding: 8px 10px;
    gap: 6px;
  }

  .pred-mini-card .pmc-logo { width: 22px; height: 22px; }
  .pred-mini-card .pmc-teams { font-size: 0.68rem; }
  .pred-mini-card .pmc-result { font-size: 0.6rem; }

  .sk-pulse { width: 145px; height: 52px; }

  .pred-more { font-size: 0.75rem; }

  .section { padding: 56px 0; }
  .section-tag { font-size: 0.7rem; letter-spacing: 2px; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section-desc { font-size: 0.9rem; margin-bottom: 30px; }

  .live-loading { padding: 50px 16px; font-size: 0.85rem; }
  .spinner { width: 30px; height: 30px; }

  .live-match-card { padding: 18px 14px; }
  .live-match-card .card-team .team-logo { width: 34px; height: 34px; }
  .live-match-card .card-team .team-name { font-size: 0.75rem; }
  .live-match-card .card-title { font-size: 0.7rem; padding-top: 10px; }
  .live-match-card .live-badge { font-size: 0.62rem; padding: 3px 10px; margin-bottom: 12px; }

  .live-matches-empty { padding: 50px 16px; }
  .live-matches-empty .empty-icon { font-size: 2.2rem; }
  .live-matches-empty h3 { font-size: 1rem; }
  .live-matches-empty p { font-size: 0.82rem; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 28px 24px; }
  .feature-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: 0.85rem; }

  .live-matches-grid { grid-template-columns: 1fr; gap: 14px; }

  .cta-card { padding: 40px 20px; border-radius: 18px; }
  .cta-badge { font-size: 0.72rem; padding: 6px 16px; margin-bottom: 16px; }
  .cta-desc { font-size: 0.9rem; margin-bottom: 24px; }
  .btn-large { padding: 16px 32px; font-size: 1rem; }
  .cta-note { font-size: 0.75rem; }

  .faq-question { padding: 16px 20px; font-size: 0.88rem; }
  .faq-item.active .faq-answer { padding: 0 20px 16px; }
  .faq-answer p { font-size: 0.85rem; }

  .footer { padding: 40px 0; }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 0.8rem; }
  .footer-tagline { font-size: 0.8rem; }
  .footer-copy p { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero-title { letter-spacing: -0.3px; }
  .hero-content { padding: 30px 0 10px; }
  .hero-stats { gap: 8px; }
  .pred-mini-card { min-width: 130px; padding: 6px 8px; }
  .sk-pulse { width: 130px; height: 46px; }
  .section { padding: 44px 0; }
  .live-match-card { padding: 16px 12px; }
  .feature-card { padding: 24px 18px; }
  .cta-card { padding: 32px 16px; border-radius: 14px; }
}
