/* ============================================
   DESIGN TOKENS — Single source of truth
   All colors, overlays, surfaces, and semantic
   values used across the site.
   ============================================ */

:root {
  /* ── Brand ── */
  --brand-primary: #F18F01;
  --brand-primary-rgb: 241, 143, 1;
  --brand-hover: #e08500;
  --brand-dark: #2a1800;

  /* ── Backgrounds ── */
  --bg-primary: #000000;
  --bg-secondary: #0A0A0A;
  --bg-elevated: #1E1E1E;
  --bg-surface: #1a1a1a;
  --bg-surface-light: #2a2a2a;

  /* ── Text ── */
  --text-primary: #FFFFFF;
  --text-secondary: #ECEDEE;
  --text-tertiary: #9BA1A6;
  --text-muted: #687076;

  /* ── UI ── */
  --ui-border: #222222;

  /* ── Semantic colors ── */
  --color-error: #ef4444;
  --color-error-dark: #dc2626;
  --color-success: #22c55e;
  --color-live: #ef4444;
  --color-info: #3B82F6;
  --color-twitter: #1d9bf0;
  --color-gold: #FFD700;
  --color-neon-green: #39FF14;

  /* ── White overlays (most repeated across all CSS) ── */
  --overlay-white-3: rgba(255, 255, 255, 0.03);
  --overlay-white-4: rgba(255, 255, 255, 0.04);
  --overlay-white-5: rgba(255, 255, 255, 0.05);
  --overlay-white-6: rgba(255, 255, 255, 0.06);
  --overlay-white-7: rgba(255, 255, 255, 0.07);
  --overlay-white-8: rgba(255, 255, 255, 0.08);
  --overlay-white-10: rgba(255, 255, 255, 0.1);
  --overlay-white-12: rgba(255, 255, 255, 0.12);
  --overlay-white-20: rgba(255, 255, 255, 0.2);
  --overlay-white-30: rgba(255, 255, 255, 0.3);
  --overlay-white-60: rgba(255, 255, 255, 0.6);

  /* ── Brand overlays ── */
  --overlay-brand-5: rgba(241, 143, 1, 0.05);
  --overlay-brand-8: rgba(241, 143, 1, 0.08);
  --overlay-brand-10: rgba(241, 143, 1, 0.1);
  --overlay-brand-12: rgba(241, 143, 1, 0.12);
  --overlay-brand-20: rgba(241, 143, 1, 0.2);
  --overlay-brand-25: rgba(241, 143, 1, 0.25);
  --overlay-brand-30: rgba(241, 143, 1, 0.3);

  /* ── Black overlays ── */
  --overlay-black-20: rgba(0, 0, 0, 0.2);
  --overlay-black-40: rgba(0, 0, 0, 0.4);
  --overlay-black-95: rgba(0, 0, 0, 0.95);

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Typography ── */
  --font-primary: 'Roboto Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ── Transitions ── */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ============================================
   RESET & BASE
   (Design tokens are in tokens.css)
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Selection */
::-moz-selection {
  background-color: var(--brand-primary);
  color: #fff;
}
::selection {
  background-color: var(--brand-primary);
  color: #fff;
}

::-moz-selection {
  background-color: var(--brand-primary);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d97f01;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-primary) var(--bg-secondary);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Roboto Condensed', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Ensure main content clears the fixed navbar when FixturesBar is absent */
main {
  min-height: 100vh;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}


/* ============================================
   NAVBAR COMPONENT
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar--scrolled {
  background-color: var(--overlay-black-95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--overlay-white-5);
  padding: 12px 0;
}

.navbar--menu-open {
  background-color: #000;
  /* backdrop-filter (from --scrolled) makes the navbar the containing block
     for fixed descendants — the mobile menu then sizes against the 60px bar
     instead of the viewport and its content disappears. The menu paints a
     solid background anyway, so the blur is redundant while open. */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar__logo-text {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.navbar__logo-text span:first-child {
  color: var(--brand-primary);
}

.navbar__logo-text span:last-child {
  color: var(--brand-primary);
}

/* Desktop Nav Links - Hidden on mobile */
.navbar__links {
  display: none;
  align-items: center;
  gap: 28px;
}

.navbar__link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.navbar__link:hover,
.navbar__link--active {
  color: #fff;
}

/* Desktop CTA - Hidden on mobile */
.navbar__cta {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: var(--brand-primary);
  color: #000;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mobile Toggle - Visible on mobile */
.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
}

/* Mobile Menu */
.navbar__mobile-menu {
  position: fixed;
  inset: 0;
  top: 60px;
  background: var(--bg-primary);
  z-index: 49;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.navbar__mobile-link {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--overlay-white-10);
}

.navbar__mobile-link--active {
  color: var(--brand-primary);
}

.navbar__mobile-cta {
  margin-top: auto;
  background-color: var(--brand-primary);
  color: #000;
  padding: 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .navbar__logo-img {
    width: 32px;
    height: 32px;
  }

  .navbar__logo-text {
    font-size: 18px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }

  .navbar__cta {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}


/* ============================================
   FOOTER COMPONENT
   ============================================ */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--ui-border);
  padding: 48px 0 32px;
}

.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer__logo-img {
  width: 120px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}

/* Links Grid - Stack on mobile, grid on tablet+ */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__column {
  text-align: center;
}

.footer__column-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__column-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ui-border), transparent);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social-link {
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: #fff;
}

.footer__copyright {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .footer {
    padding: 64px 0 32px;
  }

  .footer__links {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }

  .footer__logo-img {
    width: 140px;
    height: 36px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .footer__links {
    gap: 64px;
  }
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 60px;
  text-align: center;
  position: relative;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--overlay-white-5);
  border: 1px solid var(--overlay-white-10);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__pill-label {
  color: var(--brand-primary);
}

.hero__pill-divider {
  width: 1px;
  height: 12px;
  background-color: var(--overlay-white-20);
}

.hero__pill-action {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.hero__logo {
  width: 160px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
}

.hero__title-highlight {
  color: var(--brand-primary);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 320px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: var(--brand-primary);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--overlay-brand-25);
}

.hero__learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: color 0.2s;
}

.hero__learn-more:hover {
  color: var(--text-primary);
}

.hero__tagline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .hero {
    padding: 120px 24px 80px;
  }

  .hero__logo {
    width: 200px;
    height: 52px;
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 56px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

.btn--primary {
  background-color: var(--brand-primary);
  color: #000;
  font-weight: 800;
}

.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px var(--overlay-brand-30);
}

.btn--ghost {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--overlay-white-20);
}

.btn--ghost:hover {
  background-color: var(--overlay-white-5);
  border-color: var(--overlay-white-30);
}

/* ============================================
   STORE BADGE
   ============================================ */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--brand-primary);
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--overlay-brand-30);
}

.store-badge:hover {
  background-color: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(241, 143, 1, 0.4);
}

.store-badge__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #000000;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-badge__label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1;
}

.store-badge__store {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: 40px 16px 60px;
}

.video-section__inner {
  max-width: 720px;
  margin: 0 auto;
  will-change: transform, opacity;
}

.video-section__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-elevated);
  border: 1px solid var(--overlay-white-5);
}

.video-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-section__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-section__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: transform 0.2s;
}

.video-section__play:hover {
  transform: scale(1.1);
}

.video-section__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--overlay-white-60);
}

.video-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .video-section {
    padding: 60px 24px 80px;
  }

  .video-section__play {
    width: 72px;
    height: 72px;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 48px 16px 64px;
}

.features__inner {
  max-width: 900px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features__title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.features__title-highlight {
  color: var(--brand-primary);
}

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

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .features {
    padding: 64px 24px 80px;
  }

  .features__title {
    font-size: 32px;
  }

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .features__title {
    font-size: 40px;
  }
}

/* ============================================
   FEATURE CARD
   ============================================ */
.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--overlay-brand-30);
  transform: translateY(-2px);
}

.feature-card__image {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
  background-color: var(--bg-elevated);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-card__image--has-img {
  height: 160px;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-card__icon {
  color: var(--brand-primary);
  opacity: 0.4;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature-card__description {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .feature-card__image {
    height: 140px;
  }

  .feature-card__title {
    font-size: 18px;
  }

  .feature-card__description {
    font-size: 14px;
  }
}

/* ============================================
   BENEFITS STRIP
   ============================================ */
.benefits {
  padding: 24px 16px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
  border-bottom: 1px solid var(--ui-border);
}

.benefits__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.benefit__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: var(--overlay-brand-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.benefit__text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .benefits {
    padding: 32px 24px;
  }

  .benefits__inner {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }

  .benefit__text {
    font-size: 12px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 64px 16px;
  text-align: center;
}

.cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
}

.cta-section__title-highlight {
  color: var(--brand-primary);
}

.cta-section__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-section__learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.cta-section__learn-more:hover {
  color: var(--text-primary);
}

.cta-section__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat__icon {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.stat__value {
  font-size: 24px;
  font-weight: 900;
}

.stat__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.stat__divider {
  width: 1px;
  background-color: var(--ui-border);
  align-self: stretch;
  display: none;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .cta-section {
    padding: 80px 24px;
  }

  .cta-section__title {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .cta-section__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-section__stats {
    gap: 40px;
  }

  .stat__divider {
    display: block;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .cta-section__title {
    font-size: 48px;
  }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 48px 16px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
}

.final-cta__inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.final-cta__text {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.final-cta__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.final-cta__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.final-cta__feature {
  display: flex;
  align-items: center;
  gap: 6px;
}

.final-cta__check {
  color: var(--brand-primary);
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .final-cta {
    padding: 64px 24px;
  }

  .final-cta__badges {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   DOWNLOAD CTA - Unified Premium Component
   ============================================ */
.download-cta {
  padding: 64px 16px;
  text-align: center;
}

.download-cta--compact {
  padding: 48px 16px;
}

.download-cta__inner {
  max-width: 560px;
  margin: 0 auto;
}

.download-cta__headline {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.download-cta--lg .download-cta__headline {
  font-size: 32px;
}

.download-cta__subtext {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.download-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Store Badges - Secondary trust indicators */
.download-cta__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.download-cta__badge {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-cta__badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.download-cta__badge-img {
  height: 44px;
  width: auto;
}

/* Google Play badge has built-in padding, so it needs to be larger to match */
.download-cta__badge-img--google {
  height: 66px;
  margin: -11px 0;
}

.download-cta--sm .download-cta__badge-img {
  height: 36px;
}

.download-cta--sm .download-cta__badge-img--google {
  height: 54px;
  margin: -9px 0;
}

.download-cta--lg .download-cta__badge-img {
  height: 48px;
}

.download-cta--lg .download-cta__badge-img--google {
  height: 72px;
  margin: -12px 0;
}

/* Trust indicator */
.download-cta__trust {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* Primary button (for minimal variant) */
.download-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: var(--brand-primary);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.download-cta__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--overlay-brand-25);
}

.download-cta__primary--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.download-cta__primary--lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .download-cta {
    padding: 80px 24px;
  }

  .download-cta--compact {
    padding: 56px 24px;
  }

  .download-cta__headline {
    font-size: 36px;
  }

  .download-cta--lg .download-cta__headline {
    font-size: 42px;
  }

  .download-cta__badges {
    flex-direction: row;
    gap: 16px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .download-cta {
    padding: 100px 24px;
  }

  .download-cta__headline {
    font-size: 42px;
  }

  .download-cta--lg .download-cta__headline {
    font-size: 48px;
  }
}

/* ============================================
   STICKY DOWNLOAD BAR (Mobile only)
   ============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--overlay-black-95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--ui-border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-bar__info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sticky-bar__logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--overlay-brand-10);
  flex-shrink: 0;
}

.sticky-bar__text {
  min-width: 0;
}

.sticky-bar__title {
  font-size: 14px;
  font-weight: 700;
}

.sticky-bar__subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.sticky-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-bar__btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: var(--overlay-white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sticky-bar__close {
  color: var(--text-muted);
}

/* Hide on tablet+ */
@media (min-width: 640px) {
  .sticky-bar {
    display: none;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

/* ============================================
   FIXTURES BAR
   ============================================ */

/* In-flow spacer — rendered by FixturesBar alongside the fixed bar.
   Height is set via inline style (44px × row count). */
.fixtures-bar__spacer {
  flex-shrink: 0;
}

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

@keyframes fixtures-bar-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
  50% { box-shadow: 0 0 0 4px rgba(220, 38, 38, 0); }
}

@keyframes fixtures-bar-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fixtures-bar {
  position: fixed;
  top: 60px; /* sits directly below Navbar */
  left: 0;
  right: 0;
  z-index: 48;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--overlay-white-6);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.25s ease;
}

/* Scroll-away: slides up behind the navbar */
.fixtures-bar--hidden {
  transform: translateY(-100%);
}

.fixtures-bar__row {
  height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--overlay-white-6);
}

.fixtures-bar__row:last-child {
  border-bottom: none;
}

.fixtures-bar--loaded {
  opacity: 1;
}

/* Show skeleton immediately (no fade delay) */
.fixtures-bar:not(.fixtures-bar--loaded) {
  opacity: 1;
}

.fixtures-bar__track {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 0 16px;
  height: 100%;
  width: 100%;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fixtures-bar__track::-webkit-scrollbar {
  display: none;
}

/* Fixture pill */
.fixtures-bar__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background-color: var(--overlay-white-5);
  border: 1px solid var(--overlay-white-8);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  line-height: 1;
}

.fixtures-bar__pill:hover {
  background-color: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.fixtures-bar__pill--live {
  border-color: rgba(220, 38, 38, 0.3);
}

.fixtures-bar__pill--completed {
  border-color: var(--overlay-white-12);
  opacity: 0.75;
}

.fixtures-bar__ft-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

/* Live indicator: dot + LIVE text */
.fixtures-bar__live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.fixtures-bar__live-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-error-dark);
}

/* Red pulsing live indicator dot */
.fixtures-bar__live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-error-dark);
  flex-shrink: 0;
  animation: fixtures-bar-dot-pulse 1.5s ease-in-out infinite;
}

.fixtures-bar__crest {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
}

.fixtures-bar__team {
  color: var(--text-primary);
}

.fixtures-bar__score {
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  text-align: center;
}

.fixtures-bar__score--result {
  color: var(--text-primary);
  font-weight: 700;
}

.fixtures-bar__fans {
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 700;
}

/* View all link */
.fixtures-bar__view-all {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  padding: 4px 8px;
  margin-left: 4px;
  white-space: nowrap;
  transition: -webkit-text-decoration 0.15s ease;
  transition: text-decoration 0.15s ease;
  transition: text-decoration 0.15s ease, -webkit-text-decoration 0.15s ease;
}

.fixtures-bar__view-all:hover {
  text-decoration: underline;
}

/* Skeleton pill */
.fixtures-bar__pill--skeleton {
  gap: 8px;
  pointer-events: none;
  border-color: var(--overlay-white-4);
}

.fixtures-bar__skeleton-block {
  height: 10px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    var(--overlay-white-6) 25%,
    var(--overlay-white-12) 50%,
    var(--overlay-white-6) 75%
  );
  background-size: 200% 100%;
  animation: fixtures-bar-shimmer 1.6s ease-in-out infinite;
}

.fixtures-bar__skeleton-block--team {
  width: 56px;
}

.fixtures-bar__skeleton-block--score {
  width: 28px;
}

/* ── Competition filter pills row ────────────────────────────────── */

.fixtures-bar__pills-row {
  min-height: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--overlay-white-10);
  background-color: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.fixtures-bar__pills-track {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 0 16px;
  height: 100%;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fixtures-bar__pills-track::-webkit-scrollbar {
  display: none;
}

.fixtures-bar__pill-group {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--overlay-white-10);
}

.fixtures-bar__pill-group:first-of-type {
  margin-left: 8px;
  padding-left: 8px;
  border-left: none;
}

.fixtures-bar__pill-divider {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  opacity: 0.6;
  flex-shrink: 0;
  margin-right: 2px;
  white-space: nowrap;
}

.fixtures-bar__pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background-color: transparent;
  border: 1px solid var(--overlay-white-8);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  line-height: 1;
}

.fixtures-bar__pill-btn:hover {
  color: var(--text-secondary);
  border-color: var(--overlay-white-20);
  background-color: var(--overlay-white-5);
}

.fixtures-bar__pill-btn--active {
  color: #000;
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.fixtures-bar__pill-btn--active:hover {
  color: #000;
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.fixtures-bar__pill-btn--skeleton {
  width: 40px;
  height: 22px;
  background: linear-gradient(
    90deg,
    var(--overlay-white-6) 25%,
    var(--overlay-white-12) 50%,
    var(--overlay-white-6) 75%
  );
  background-size: 200% 100%;
  animation: fixtures-bar-shimmer 1.6s ease-in-out infinite;
  border-color: transparent;
  pointer-events: none;
}

.fixtures-bar__empty {
  font-size: 11px;
  color: var(--text-tertiary);
  padding: 0 4px;
}

