/* ============================================================
   THE SHAM REPORT — styles.css
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --color-bg:           #0A0A0A;
  --color-surface:      #111111;
  --color-surface-alt:  #1A1A1A;
  --color-gold:         #D4AF37;
  --color-gold-muted:   #B8962E;
  --color-red:          #8B0000;
  --color-red-bright:   #CC0000;
  --color-white:        #FFFFFF;
  --color-white-muted:  #CCCCCC;
  --color-border:       #2A2A2A;

  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body:     'Inter', 'Helvetica Neue', sans-serif;
  --font-label:    'Inter', sans-serif;

  --text-hero:  clamp(48px, 6vw, 80px);
  --text-h1:    clamp(36px, 4vw, 56px);
  --text-h2:    clamp(28px, 3vw, 40px);
  --text-h3:    clamp(20px, 2vw, 28px);
  --text-body:  16px;
  --text-small: 14px;
  --text-label: 11px;

  --max-width:    1240px;
  --card-radius:  4px;
  --grid-gap:     24px;
}

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.label-tag {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   1. UTILITY BAR
───────────────────────────────────────────────────────────── */
.utility-bar {
  background: var(--color-surface);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 7px 0;
}

.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.util-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.util-icons a {
  display: flex;
  align-items: center;
  color: var(--color-white-muted);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.util-icons a:hover { opacity: 1; }

.util-icons svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-util-subscribe {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red-bright);
  padding: 5px 14px;
  border-radius: var(--card-radius);
  transition: background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-util-subscribe:hover { background: #aa0000; }

/* ─────────────────────────────────────────────────────────────
   2. PRIMARY NAV
───────────────────────────────────────────────────────────── */
.primary-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}

.primary-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
}

/* Wordmark */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 3px 6px;
  line-height: 1;
}

.logo-wordmark {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.2s ease;
}

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

.nav-links a.active {
  color: var(--color-gold);
}
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.btn-nav-subscribe {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red-bright);
  padding: 10px 22px;
  border-radius: var(--card-radius);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.btn-nav-subscribe:hover { background: #aa0000; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-white);
  transition: all 0.2s ease;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-overlay.open { display: flex; }

.nav-overlay a {
  font-family: var(--font-headline);
  font-size: clamp(28px, 6vw, 44px);
  color: var(--color-white-muted);
  transition: color 0.2s ease;
}
.nav-overlay a:hover,
.nav-overlay a.active { color: var(--color-gold); }

.nav-overlay-close {
  position: absolute;
  top: 22px; right: 28px;
  font-size: 28px;
  color: var(--color-white-muted);
  line-height: 1;
  background: none; border: none; cursor: pointer;
}

/* ─────────────────────────────────────────────────────────────
   3. BREAKING NEWS TICKER
───────────────────────────────────────────────────────────── */
.ticker-bar {
  background: #0d0d0d;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 20px 0 32px;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-white);
  border-right: 1px solid var(--color-border);
  margin-right: 0;
  white-space: nowrap;
}

.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  padding: 0 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 55s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: #e05c5c;
  letter-spacing: 0.02em;
}

.ticker-sep {
  display: inline-block;
  color: var(--color-gold);
  font-size: 9px;
  margin: 0 20px;
}

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

/* ─────────────────────────────────────────────────────────────
   4. HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

/* Mosaic background — faint wireframe grid */
.hero-mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  opacity: 0.22;
  pointer-events: none;
}

.mosaic-tile {
  background: #1C1C1C;
  border-radius: 2px;
  border: 1px solid #2A2A2A;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 8px;
  overflow: hidden;
}

.mosaic-tile-img {
  background: #252525;
  height: 56px;
  border-radius: 2px;
  flex-shrink: 0;
}

.mosaic-tile-line {
  background: #303030;
  height: 5px;
  border-radius: 1px;
  width: 90%;
}
.mosaic-tile-line.short  { width: 65%; background: #2a2a2a; }
.mosaic-tile-line.xshort { width: 42%; background: #242424; }

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.45) 40%,
    rgba(8,8,8,0.88) 72%,
    #0A0A0A 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.hero-inner {
  max-width: 660px;
}

.hero-rule {
  width: 52px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 24px;
}

.hero-category {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-headline);
  font-size: var(--text-hero);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-deck {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--color-white-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 15px 28px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-hero:hover {
  background: var(--color-gold);
  color: #0A0A0A;
}

/* ─────────────────────────────────────────────────────────────
   5. LATEST REPORTS
───────────────────────────────────────────────────────────── */
.latest-reports {
  padding: 80px 0;
  background: var(--color-bg);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-headline);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.section-link {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color 0.2s ease;
}
.section-link:hover { color: var(--color-gold-muted); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.article-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.article-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* Image placeholder — solid dark block, NO real images */
.card-img {
  aspect-ratio: 16/9;
  background: var(--color-surface-alt);
  position: relative;
  overflow: hidden;
}

/* Subtle texture variation per card */
.card-img.tone-1 { background: #141414; }
.card-img.tone-2 { background: #161210; }
.card-img.tone-3 { background: #101414; }

.card-img-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

.card-body {
  padding: 20px 20px 18px;
}

.card-tags {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red-bright);
  margin-bottom: 12px;
}

.card-headline {
  font-family: var(--font-headline);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.card-divider {
  height: 1px;
  background: var(--color-gold);
  opacity: 0.35;
  margin-bottom: 14px;
}

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

.card-date {
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.card-arrow {
  color: var(--color-gold);
  font-size: 18px;
  transition: transform 0.2s ease;
  line-height: 1;
}
.article-card:hover .card-arrow { transform: translate(3px, -3px); }

/* ─────────────────────────────────────────────────────────────
   6. TOURNAMENT RESULTS + PLAYER SPOTLIGHT
───────────────────────────────────────────────────────────── */
.tournament-section {
  padding: 80px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.tournament-layout {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 52px;
  align-items: start;
}

/* Left column */
.results-tracker-label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.results-header {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 36px;
}

.results-header-bar {
  width: 3px;
  background: var(--color-gold);
  flex-shrink: 0;
  margin-right: 18px;
  border-radius: 2px;
}

.results-title {
  font-family: var(--font-headline);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

/* Result entries */
.result-entry {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.result-entry:first-child { border-top: 1px solid var(--color-border); }

.result-num {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.45;
  line-height: 1;
}

.result-player {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 3px;
}

.result-detail {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white-muted);
}

.result-prize {
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.results-footer {
  margin-top: 28px;
}

.results-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color 0.2s ease;
}
.results-footer a:hover { color: var(--color-gold-muted); }

/* Right column — Spotlight */
.spotlight-card {
  border: 1px solid var(--color-gold);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--color-bg);
  position: relative;
}

.spotlight-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--color-gold);
  padding: 4px 12px;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
}

/* Photo — solid dark placeholder, no images */
.spotlight-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.spotlight-photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #1c1c1c 0%, #0a0a0a 100%);
}

.spotlight-photo-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  z-index: 1;
}

.spotlight-name-overlay {
  position: relative;
  z-index: 2;
  padding: 20px;
  font-family: var(--font-headline);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.spotlight-body {
  padding: 20px;
}

.spotlight-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-small);
  color: var(--color-white-muted);
  line-height: 1.65;
  border-left: 2px solid var(--color-gold);
  padding-left: 14px;
  margin-bottom: 20px;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.stat-item {
  padding: 14px 16px;
  background: var(--color-surface);
  text-align: center;
}
.stat-item + .stat-item { border-left: 1px solid var(--color-border); }

.stat-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.stat-value {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────────
   7. EMAIL CAPTURE
───────────────────────────────────────────────────────────── */
.email-capture {
  padding: 80px 0;
  background: var(--color-bg);
  text-align: center;
}

.email-icon {
  margin: 0 auto 24px;
  width: 48px;
  height: 48px;
  color: var(--color-gold);
}

.email-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-capture-title {
  font-family: var(--font-headline);
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
}

.email-capture-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--color-white-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.email-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 14px;
}

.email-input {
  flex: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-gold);
  border-right: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-body);
  padding: 14px 18px;
  outline: none;
  border-radius: var(--card-radius) 0 0 var(--card-radius);
}
.email-input::placeholder { color: var(--color-white-muted); opacity: 0.45; }
.email-input:focus { border-color: var(--color-gold); }

.btn-email-submit {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 14px 22px;
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  transition: background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-email-submit:hover { background: var(--color-gold-muted); border-color: var(--color-gold-muted); }

.email-disclaimer {
  font-family: var(--font-label);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  opacity: 0.4;
}

/* ─────────────────────────────────────────────────────────────
   8. FOOTER
───────────────────────────────────────────────────────────── */
.site-footer {
  background: #050505;
  padding: 60px 0 36px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-logo-mark {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.footer-wordmark {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  opacity: 0.5;
  margin-bottom: 36px;
}

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

.footer-nav a {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-nav a:hover { opacity: 1; color: var(--color-gold); }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover { opacity: 1; transform: translateY(-2px); }
.footer-socials img { width: 18px; height: 18px; }

.footer-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 24px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-white-muted);
  opacity: 0.35;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   SUBSCRIBE MODAL
───────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 600;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--color-surface);
  border: 1px solid var(--color-gold);
  border-radius: var(--card-radius);
  padding: 52px 44px;
  max-width: 440px;
  width: 90%;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 22px;
  color: var(--color-white-muted);
  line-height: 1;
  background: none; border: none; cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close:hover { color: var(--color-white); }

.modal-title {
  font-family: var(--font-headline);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.modal-sub {
  font-size: var(--text-small);
  color: var(--color-white-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-input {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-body);
  padding: 14px 16px;
  outline: none;
  border-radius: var(--card-radius);
  transition: border-color 0.2s ease;
  text-align: left;
}
.modal-input:focus { border-color: var(--color-gold); }
.modal-input::placeholder { color: var(--color-white-muted); opacity: 0.4; }

.btn-modal-submit {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--color-gold);
  border: none;
  padding: 14px;
  border-radius: var(--card-radius);
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-modal-submit:hover { background: var(--color-gold-muted); }

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.modal-success.show { display: flex; }

.modal-success-icon { font-size: 38px; color: var(--color-gold); }

.modal-success p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-white-muted);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .tournament-layout { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-card { max-width: 460px; }
  .nav-links { gap: 20px; }
}

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

  .nav-links,
  .btn-nav-subscribe { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 78vh; }
  .hero-content { padding-bottom: 52px; }

  .card-grid { grid-template-columns: 1fr; }

  .section-header { flex-direction: column; gap: 8px; align-items: flex-start; }

  .email-form { flex-direction: column; }
  .email-input {
    border-right: 1px solid var(--color-gold);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    border-bottom: none;
  }
  .btn-email-submit {
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    padding: 14px;
  }

  .tournament-layout { grid-template-columns: 1fr; }
  .footer-nav { gap: 16px; }

  .ticker-label { padding-left: 16px; }
}
