/* =============================================
   MR. PICKLEBALL — FIFA-inspired design system
   ============================================= */

:root {
  --navy:      #011133;
  --navy-mid:  #0d2255;
  --navy-light:#1a3a80;
  --gold:      #C9A84C;
  --gold-light:#e8c96a;
  --gold-dim:  #8a6e28;
  --white:     #ffffff;
  --off-white: #e8eaf0;
  --gray:      #8890a4;
  --gray-dark: #3a4060;
  --bg-dark:   #060e25;
  --red:       #d63030;
  --green:     #1a9e4a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-right: 20px;
  transition: color 0.2s;
}
.topbar-links a:hover { color: var(--gold); }
.topbar-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.topbar-cta:hover { color: var(--gold-light); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(1,17,51,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-mr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-search {
  color: var(--gray);
  padding: 8px;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.nav-search:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding: 8px 0;
  position: sticky;
  top: 64px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.05); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

/* Animated court pattern */
.hero-court {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: courtPan 30s linear infinite;
}
@keyframes courtPan {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(26,58,128,0.6) 0%, transparent 70%),
    linear-gradient(180deg, rgba(1,17,51,0.2) 0%, rgba(6,14,37,0.95) 100%);
}

/* Decorative circle */
.hero-bg::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  background: radial-gradient(circle, rgba(26,58,128,0.4) 0%, rgba(201,168,76,0.05) 50%, transparent 70%);
}

/* Large pickleball watermark */
.hero-bg::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,168,76,0.15) 0%, transparent 50%),
    conic-gradient(
      rgba(201,168,76,0.08) 0deg 30deg,
      transparent 30deg 60deg,
      rgba(201,168,76,0.08) 60deg 90deg,
      transparent 90deg 120deg,
      rgba(201,168,76,0.08) 120deg 150deg,
      transparent 150deg 180deg,
      rgba(201,168,76,0.08) 180deg 210deg,
      transparent 210deg 240deg,
      rgba(201,168,76,0.08) 240deg 270deg,
      transparent 270deg 300deg,
      rgba(201,168,76,0.08) 300deg 330deg,
      transparent 330deg 360deg
    );
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  max-width: 680px;
  align-self: flex-start;
  margin-left: max(24px, calc(50vw - 700px));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
}
.live-badge {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 3px;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--off-white);
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(1,17,51,0.7);
  border-top: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(12px);
  padding: 20px max(24px, calc(50vw - 700px));
  margin-top: auto;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* =============================================
   TICKER
   ============================================= */
.ticker {
  display: flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  overflow: hidden;
  height: 38px;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.ticker-inner strong { font-weight: 800; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.featured-section,
.news-section,
.competitions-section,
.video-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: var(--gold);
  border-radius: 2px;
}
.see-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s, color 0.2s;
}
.see-all:hover { color: var(--gold-light); gap: 10px; }

/* =============================================
   FEATURED GRID
   ============================================= */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
}

/* Large featured card */
.featured-card--large {
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  transition: transform 0.3s;
}
.featured-card--large:hover { transform: translateY(-4px); }

.card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card-court-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}
.court-lines {
  width: 70%;
  height: 60%;
  border: 2px solid var(--white);
  position: relative;
}
.court-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
}
.court-lines::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 50%;
  width: 2px;
  background: var(--white);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 3px;
  animation: pulseBadge 2s ease-in-out infinite;
}
.card-badge--sm {
  font-size: 9px;
  padding: 3px 8px;
  top: 10px;
  left: 10px;
}

.match-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(1,17,51,0.9));
}
.match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 6px;
}
.team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.team-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
}
.usa-flag { background: linear-gradient(180deg, #B22234 33%, #fff 33% 66%, #3C3B6E 66%); }
.esp-flag { background: linear-gradient(180deg, #c60b1e 25%, #ffc400 25% 75%, #c60b1e 75%); }

.match-score {
  display: flex;
  align-items: center;
  gap: 8px;
}
.score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
}
.score-divider {
  font-size: 28px;
  font-weight: 300;
  color: var(--gray);
}
.match-info {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.card-body {
  padding: 20px 24px 24px;
}
.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.featured-card--large .card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--white);
}
.featured-card--large .card-body p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}
.card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}
.card-link:hover { color: var(--gold-light); }

/* Side cards */
.side-cards { display: flex; flex-direction: column; gap: 20px; }
.match-card {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  transition: transform 0.3s;
}
.match-card:hover { transform: translateY(-3px); }
.match-card-img {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.mini-court {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.match-card-body { padding: 14px 16px 16px; }
.match-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--white);
}
.match-card-body p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
}

/* =============================================
   RANKINGS
   ============================================= */
.rankings-section {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.rankings-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
}
.rankings-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rankings-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 14px;
  position: relative;
}
.rankings-header h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: var(--gold);
  border-radius: 2px;
}

.rankings-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0;
}
.rank-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.rank-tab:hover { color: var(--off-white); }
.rank-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.rankings-list { display: flex; flex-direction: column; gap: 2px; }
.rank-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}
.rank-row:hover { background: rgba(201,168,76,0.06); }
.rank-pos {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gray);
  width: 28px;
  text-align: center;
}
.rank-row:first-child .rank-pos { color: var(--gold); }

.rank-player {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.player-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.player-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.player-nat {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.rank-pts {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--off-white);
}
.rank-change {
  font-size: 12px;
  font-weight: 600;
  width: 50px;
  text-align: right;
}
.rank-up { color: var(--green); }
.rank-down { color: var(--red); }

/* =============================================
   NEWS GRID
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-card {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.news-card:hover { transform: translateY(-4px); }
.news-img {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.news-img-art {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-size: cover;
}
.news-img-art--1 {
  background:
    radial-gradient(circle at 30% 50%, rgba(201,168,76,0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(100,150,255,0.4) 0%, transparent 50%);
}
.news-img-art--2 {
  background:
    radial-gradient(circle at 60% 40%, rgba(201,168,76,0.5) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(180,100,255,0.4) 0%, transparent 50%);
}
.news-img-art--3 {
  background:
    radial-gradient(circle at 40% 60%, rgba(26,200,100,0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.3) 0%, transparent 40%);
}
.news-img-art--4 {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,140,0,0.5) 0%, transparent 50%),
    radial-gradient(circle at 20% 30%, rgba(201,168,76,0.3) 0%, transparent 40%);
}
.news-body { padding: 16px; }
.news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.news-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
}
.news-date {
  font-size: 12px;
  color: var(--gray);
}

/* =============================================
   COMPETITIONS
   ============================================= */
.competitions-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}
.competitions-scroll::-webkit-scrollbar { height: 3px; }
.competitions-scroll::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

.comp-card {
  flex-shrink: 0;
  width: 220px;
  background: var(--navy);
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comp-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.comp-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.comp-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.comp-card span {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
}
.comp-btn {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 6px 16px;
  border-radius: 3px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.comp-btn:hover { background: var(--gold); color: var(--navy); }

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  grid-template-rows: auto auto;
  gap: 20px;
}
.video-card--large {
  grid-row: 1 / 3;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb--sm {
  aspect-ratio: 16/9;
}
.video-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(201,168,76,0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(26,58,128,0.3) 0%, transparent 60%);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(1,17,51,0.7);
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.play-btn:hover { background: var(--gold); transform: translate(-50%, -50%) scale(1.1); }
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }

.play-btn--sm {
  width: 40px;
  height: 40px;
}
.play-btn--sm svg { width: 16px; height: 16px; }

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
}
.video-info { padding: 12px 0 0; }
.video-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-top: 6px;
}

/* =============================================
   APP BANNER
   ============================================= */
.app-banner {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.app-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.app-banner-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.app-banner-text p {
  font-size: 16px;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 28px;
}
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.app-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); color: var(--gold); }

/* Phone mockup */
.phone-mockup {
  width: 200px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.1);
}
.phone-screen {
  background: var(--bg-dark);
  border-radius: 14px;
  padding: 16px 12px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(201,168,76,0.15);
}
.phone-header {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 10px;
}
.phone-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.phone-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--navy);
  border-radius: 10px;
  width: 100%;
  border: 1px solid rgba(201,168,76,0.1);
}
.phone-team {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--off-white);
  text-transform: uppercase;
}
.phone-score-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.phone-live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.phone-live-dot span {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseBadge 1.5s ease-in-out infinite;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #040c1f;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-links a:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.08); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--off-white); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray); transition: color 0.2s; }
.footer-legal a:hover { color: var(--off-white); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: 1fr; }
  .side-cards { flex-direction: row; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card--large { grid-row: auto; grid-column: 1 / 3; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 60px 24px 32px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 16px 24px; }
  .stat { padding: 0 20px; }
  .stat-divider { display: none; }

  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .app-banner-inner { grid-template-columns: 1fr; }
  .app-visual { display: none; }
  .side-cards { flex-direction: column; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card--large { grid-column: auto; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-title { font-size: 52px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
