/* ═══════════════════════════════════════════
   TRUE LINE — Styles
   ═══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
 --gold: #C9A84C;
 --gold-lt: #E8CC7A;
 --gold-dk: #8B6914;
 --black: #080808;
 --bg: #0D0D0D;
 --bg2: #111111;
 --bg3: #161616;
 --surface: #1A1A1A;
 --border: rgba(201,168,76,0.15);
 --text: #E8E0D0;
 --text-muted: #7A7060;
 --white: #F5F0E8;
 --red: #C0392B;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
 font-family: 'Jost', sans-serif;
 background: var(--black);
 color: var(--text);
 line-height: 1.7;
}

main { display: block; width: 100%; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
.gold { color: var(--gold); }
em { font-style: italic; color: var(--gold-lt); }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ── BUTTONS ── */
.btn {
 display: inline-flex; align-items: center; gap: 0.5rem;
 padding: 0.85rem 2rem; border-radius: 3px;
 font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.9rem;
 letter-spacing: 0.08em; text-transform: uppercase;
 cursor: pointer; border: none; transition: all 0.3s ease;
 white-space: nowrap;
}
.btn-gold {
 background: var(--gold);
 color: var(--black);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-outline {
 background: transparent;
 color: var(--gold);
 border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(201,168,76,0.08); transform: translateY(-2px); }
.btn-ghost {
 background: transparent;
 color: var(--text-muted);
 border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

.tg-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* ── HEADER ── */
#header {
 position: fixed; top: 0; left: 0; right: 0; z-index: 100;
 padding: 1.2rem 2.5rem;
 display: flex; align-items: center; justify-content: space-between;
 transition: all 0.4s ease;
}
#header.scrolled {
 background: rgba(8,8,8,0.95);
 backdrop-filter: blur(20px);
 border-bottom: 1px solid var(--border);
 padding: 0.8rem 2.5rem;
}

/* ── LOGO (with avatar) ── */
.logo {
 font-family: 'Playfair Display', serif;
 font-size: 1.4rem; font-weight: 700;
 letter-spacing: 0.12em;
 color: var(--white);
 display: inline-flex; align-items: center; gap: 0.55rem;
 white-space: nowrap;
}
.logo-text { color: var(--white); }
.logo-text span { color: var(--gold); }
.logo-pro {
 font-family: 'Jost', sans-serif;
 font-size: 0.58rem; font-weight: 600;
 letter-spacing: 0.15em; text-transform: uppercase;
 color: var(--black);
 background: var(--gold);
 padding: 0.18em 0.5em;
 border-radius: 2px;
 display: inline-block;
 line-height: 1.6;
 flex-shrink: 0;
}
.logo-avatar {
 width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
 border: 1.5px solid rgba(201,168,76,0.45);
 flex-shrink: 0;
 transition: border-color 0.3s;
}
.logo-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo:hover .logo-avatar { border-color: var(--gold); }

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
 font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
 color: var(--text-muted); transition: color 0.2s;
}
nav a:hover { color: var(--gold); }
nav .nav-cta { color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 0.45rem 1.2rem; border-radius: 2px; }
nav .nav-cta:hover { background: rgba(201,168,76,0.1); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }

.mobile-nav {
 display: none; position: fixed; top: 0; right: -100%; bottom: 0; width: 280px; z-index: 99;
 background: var(--bg2); border-left: 1px solid var(--border);
 flex-direction: column; padding: 5rem 2rem 2rem;
 gap: 1.5rem; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { right: 0; }
.mobile-nav a { font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.mobile-nav a:hover { color: var(--gold); }

@media (max-width: 900px) {
 nav { display: none; }
 .hamburger { display: flex; }
 .mobile-nav { display: flex; }
}

/* ── HERO ── */
#hero {
 position: relative; min-height: 100vh;
 display: flex; align-items: center; justify-content: center;
 overflow: hidden;
 padding-top: 80px;
}
.hero-bg {
 position: absolute; inset: 0;
 background: var(--black);
 overflow: hidden;
}
.hero-img {
 position: absolute; inset: 0;
 display: flex; align-items: center; justify-content: center;
}
.hero-img img {
 width: 100%; height: 100%; object-fit: cover; object-position: center;
 opacity: 0.18;
 filter: sepia(40%) saturate(80%);
}
.hero-vignette {
 position: absolute; inset: 0;
 background: radial-gradient(ellipse at center, transparent 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,0.95) 100%);
}
.hero-vignette-top {
 position: absolute; top: 0; left: 0; right: 0; height: 200px;
 background: linear-gradient(to bottom, var(--black), transparent);
}
.hero-vignette-bottom {
 position: absolute; bottom: 0; left: 0; right: 0; height: 300px;
 background: linear-gradient(to top, var(--black), transparent);
}
.hero-lines {
 position: absolute; inset: 0; opacity: 0.3;
 background-image:
 linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
 linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
 background-size: 80px 80px;
 animation: gridShift 20s linear infinite;
}
@keyframes gridShift { to { background-position: 80px 80px; } }

.hero-orb-1 {
 position: absolute; top: 20%; left: 15%; width: 400px; height: 400px; border-radius: 50%;
 background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
 filter: blur(60px); animation: pulse1 6s ease-in-out infinite;
}
.hero-orb-2 {
 position: absolute; bottom: 20%; right: 15%; width: 300px; height: 300px; border-radius: 50%;
 background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
 filter: blur(40px); animation: pulse1 8s ease-in-out infinite reverse;
}
@keyframes pulse1 { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.2); opacity: 1; } }

.hero-content {
 position: relative; z-index: 2;
 text-align: center; max-width: 860px; padding: 2rem;
}

.hero-eyebrow {
 display: inline-flex; align-items: center; gap: 1rem;
 font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
 color: var(--gold); margin-bottom: 1.5rem;
 opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
 content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}

#hero h1 {
 font-size: clamp(2.8rem, 6vw, 5.5rem);
 font-weight: 900; line-height: 1.08;
 color: var(--white);
 margin-bottom: 1.2rem;
 opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
}
#hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
 font-size: 1.05rem; color: var(--text-muted);
 max-width: 560px; margin: 0 auto 2.5rem;
 font-weight: 300; line-height: 1.8;
 opacity: 0; animation: fadeUp 0.9s 0.45s forwards;
}

.hero-ctas {
 display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
 margin-bottom: 3rem;
 opacity: 0; animation: fadeUp 0.9s 0.55s forwards;
}

.hero-stats {
 display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
 opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.stat-item { text-align: center; }
.stat-num {
 font-family: 'Playfair Display', serif;
 font-size: 1.8rem; font-weight: 700;
 color: var(--gold); display: block;
}
.stat-label {
 font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
 color: var(--text-muted);
}
.stat-div { width: 1px; height: 40px; background: var(--border); }

.scroll-hint {
 position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
 display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
 opacity: 0; animation: fadeUp 1s 1.2s forwards;
 font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
 color: var(--text-muted);
}
.scroll-arrow {
 width: 1px; height: 50px;
 background: linear-gradient(to bottom, var(--gold), transparent);
 animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(1.3); opacity: 1; } }

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

/* ── UNSUB WARNING ── */
.unsub-strip {
 background: rgba(192,57,43,0.08);
 border-top: 1px solid rgba(192,57,43,0.2);
 border-bottom: 1px solid rgba(192,57,43,0.2);
 padding: 0.75rem 2rem;
 text-align: center;
}
.unsub-strip p { font-size: 0.8rem; color: rgba(200,100,90,0.9); }
.unsub-strip strong { color: #E8786B; }

/* ── SECTION BASE ── */
section { padding: 6rem 0; }
.section-label {
 display: inline-flex; align-items: center; gap: 0.8rem;
 font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
 color: var(--gold); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }

/* ── DIVIDER ── */
.divider {
 height: 1px;
 background: linear-gradient(to right, transparent, var(--border), transparent);
 margin: 0;
}

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════ PICKS SECTION ══════════════ */
#picks {
 background: var(--bg);
 padding: 6rem 0;
}
.picks-header {
 display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end;
 margin-bottom: 3rem;
}
.picks-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.picks-header-right {
 text-align: right;
}
.picks-header-right p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
 .picks-header { grid-template-columns: 1fr; }
 .picks-header-right { text-align: left; }
}

/* Pick card */
.pick-card {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: 4px;
 overflow: hidden;
 position: relative;
}
.pick-card::before {
 content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
 background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pick-card-header {
 display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
 padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border);
 background: rgba(201,168,76,0.03);
}
.pick-badge {
 font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
 padding: 0.25em 0.7em; border-radius: 2px;
}
.pick-badge-live { background: rgba(192,57,43,0.2); color: #E8786B; border: 1px solid rgba(192,57,43,0.3); }
.pick-badge-pre { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid rgba(201,168,76,0.25); }
.pick-badge-sport { background: rgba(255,255,255,0.04); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.08); }
.pick-time { margin-left: auto; font-size: 0.78rem; color: var(--text-muted); }

.pick-body { padding: 1.5rem; }

.pick-match-name {
 font-family: 'Playfair Display', serif;
 font-size: 1.4rem; font-weight: 700;
 color: var(--white); margin-bottom: 0.3rem;
}
.pick-league-info { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.pick-players {
 display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center;
 margin-bottom: 1.5rem;
}
.pick-player { text-align: center; padding: 1rem; border-radius: 3px; border: 1px solid transparent; transition: all 0.3s; }
.pick-player.winner {
 background: rgba(201,168,76,0.07);
 border-color: rgba(201,168,76,0.25);
}
.pick-player-name { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.4rem; font-weight: 500; }
.pick-player.winner .pick-player-name { color: var(--gold); }
.pick-player-odds {
 font-family: 'Playfair Display', serif;
 font-size: 2rem; font-weight: 700; color: var(--white);
 line-height: 1;
}
.pick-player.winner .pick-player-odds { color: var(--gold-lt); }
.pick-player-prob { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.4rem; }
.pick-vs {
 font-family: 'Playfair Display', serif;
 font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
 color: var(--text-muted); text-align: center;
}

.pick-rec {
 display: flex; align-items: flex-start; gap: 1rem;
 background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2);
 border-radius: 3px; padding: 1rem 1.2rem; margin-bottom: 1.2rem;
}
.pick-rec-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.pick-rec-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.pick-rec-text { font-size: 0.9rem; color: var(--white); margin-bottom: 0.3rem; }
.pick-value { font-size: 0.8rem; color: var(--gold-lt); font-weight: 500; }

.pick-stats {
 display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.8rem;
 margin-bottom: 1.2rem;
}
.pick-stat {
 background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
 border-radius: 3px; padding: 0.8rem;
}
.pick-stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.pick-stat-val { font-size: 0.95rem; font-weight: 600; color: var(--white); }

.pick-footer {
 display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
 padding-top: 1rem; border-top: 1px solid var(--border);
}
.pick-footer-note { font-size: 0.73rem; color: var(--text-muted); }
.pick-conf {
 display: flex; align-items: center; gap: 0.4rem;
 font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.pick-conf-dot { width: 6px; height: 6px; border-radius: 50%; }
.conf-high .pick-conf-dot { background: #4CAF50; box-shadow: 0 0 6px #4CAF50; }
.conf-mid .pick-conf-dot { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.conf-high { color: #6FCF7A; }
.conf-mid { color: var(--gold); }

/* Pick state */
.pick-state {
 padding: 4rem 2rem; text-align: center;
}
.pick-state-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.pick-state h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--white); }
.pick-state p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.pick-state p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.pick-state p a:hover { color: var(--gold-lt); }

/* ── Player details (NEW promo format) ── */
.pick-player-details {
 display: grid;
 grid-template-columns: 1fr auto 1fr;
 gap: 0.8rem;
 align-items: start;
 background: rgba(255,255,255,0.02);
 border: 1px solid rgba(255,255,255,0.06);
 border-radius: 4px;
 padding: 1rem;
 margin-bottom: 1.2rem;
}

.ppd-player {
 display: flex;
 flex-direction: column;
 gap: 0.6rem;
}

.ppd-player.ppd-winner {
 background: rgba(201,168,76,0.08);
 border: 1px solid rgba(201,168,76,0.25);
 border-radius: 3px;
 padding: 0.8rem;
 margin: -0.8rem;
}

.ppd-player-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.5rem;
 flex-wrap: wrap;
}

.ppd-player-name {
 font-size: 0.88rem;
 font-weight: 600;
 color: var(--white);
}

.ppd-winner .ppd-player-name {
 color: var(--gold);
}

.ppd-health {
 font-size: 0.68rem;
 padding: 0.2em 0.5em;
 border-radius: 2px;
}
.ppd-healthy {
 color: #4CAF50;
 background: rgba(76,175,80,0.12);
}
.ppd-injured {
 color: #E57373;
 background: rgba(229,115,115,0.12);
}

.ppd-stats-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 0.4rem;
}

.ppd-stat {
 display: flex;
 flex-direction: column;
 gap: 0.1rem;
}

.ppd-stat-label {
 font-size: 0.6rem;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--text-muted);
}

.ppd-stat-val {
 font-size: 0.75rem;
 color: var(--text);
 font-weight: 500;
}

.ppd-form-block {
 display: flex;
 flex-direction: column;
 gap: 0.3rem;
 padding-top: 0.5rem;
 border-top: 1px solid rgba(255,255,255,0.05);
}

.ppd-form-row {
 display: flex;
 justify-content: space-between;
 gap: 0.5rem;
 font-size: 0.72rem;
}

.ppd-form-label {
 color: var(--text-muted);
}

.ppd-form-val {
 color: var(--text);
 font-weight: 500;
}

.ppd-game-stats {
 display: flex;
 gap: 1rem;
 padding-top: 0.5rem;
 border-top: 1px solid rgba(255,255,255,0.05);
}

.ppd-game-stat {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.15rem;
}

.ppd-game-label {
 font-size: 0.58rem;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--text-muted);
}

.ppd-game-val {
 font-size: 0.85rem;
 color: var(--gold-lt);
 font-weight: 600;
}

.ppd-divider {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0 0.5rem;
}

.ppd-divider span {
 font-size: 1.2rem;
 opacity: 0.4;
}

.ppd-weather {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 font-size: 0.75rem;
 color: var(--text-muted);
 background: rgba(255,255,255,0.02);
 border: 1px solid rgba(255,255,255,0.05);
 border-radius: 3px;
 padding: 0.6rem 0.8rem;
 margin-bottom: 1rem;
}

.ppd-model {
 background: rgba(201,168,76,0.04);
 border: 1px solid rgba(201,168,76,0.15);
 border-radius: 3px;
 padding: 0.8rem 1rem;
 margin-bottom: 1rem;
}

.ppd-model-header {
 font-size: 0.68rem;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 0.6rem;
}

.ppd-model-probs {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 2rem;
 margin-bottom: 0.5rem;
}

.ppd-model-p {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.15rem;
 padding: 0.4rem 0.8rem;
 border-radius: 3px;
}

.ppd-model-p.ppd-model-winner {
 background: rgba(201,168,76,0.12);
}

.ppd-model-name {
 font-size: 0.72rem;
 color: var(--text-muted);
}

.ppd-model-prob {
 font-family: 'Playfair Display', serif;
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text);
}

.ppd-model-winner .ppd-model-prob {
 color: var(--gold-lt);
}

.ppd-model-vs {
 font-size: 0.7rem;
 color: var(--text-muted);
}

.ppd-model-conf {
 font-size: 0.68rem;
 letter-spacing: 0.08em;
 text-align: center;
}

@media (max-width: 600px) {
 .pick-player-details {
   grid-template-columns: 1fr;
 }
 .ppd-divider {
   padding: 0.5rem 0;
   transform: rotate(90deg);
 }
 .ppd-stats-grid { grid-template-columns: 1fr; }
 .ppd-model-probs { gap: 1rem; }
 .ppd-model-p { padding: 0.3rem 0.5rem; }
 .ppd-model-prob { font-size: 1.2rem; }
}

/* How it works */
.picks-how {
 display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
 background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
 margin-top: 2rem;
}
.picks-how-item {
 background: var(--surface); padding: 1.5rem;
 display: flex; flex-direction: column; gap: 0.7rem;
}
.picks-how-num {
 font-family: 'Playfair Display', serif;
 font-size: 2.5rem; font-weight: 900; color: rgba(201,168,76,0.15);
 line-height: 1;
}
.picks-how-item strong { font-size: 0.82rem; color: var(--white); display: block; }
.picks-how-item span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) { .picks-how { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .picks-how { grid-template-columns: 1fr; } }

/* Upsell */
.picks-upsell {
 display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
 background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
 border: 1px solid rgba(201,168,76,0.2);
 border-radius: 4px; padding: 2rem 2.5rem;
 margin-top: 2rem; position: relative; overflow: hidden;
}
.picks-upsell::before {
 content: '🔒'; position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
 font-size: 5rem; opacity: 0.04;
}
.picks-upsell-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.picks-upsell-desc { font-size: 0.85rem; color: var(--text-muted); max-width: 500px; line-height: 1.7; }

/* ══════════════ WHY TENNIS ══════════════ */
#advantages { background: var(--bg2); }

.adv-grid {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
 background: var(--border); border-radius: 4px; overflow: hidden;
 margin-top: 3rem;
}
.adv-card {
 background: var(--bg); padding: 2.5rem 2rem;
 transition: background 0.3s;
}
.adv-card:hover { background: var(--surface); }
.adv-num {
 font-family: 'Playfair Display', serif;
 font-size: 3rem; font-weight: 900; color: rgba(201,168,76,0.12);
 line-height: 1; margin-bottom: 1rem;
}
.adv-card h3 { font-size: 1rem; margin-bottom: 0.8rem; color: var(--white); }
.adv-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) { .adv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .adv-grid { grid-template-columns: 1fr; } }

/* ══════════════ GUIDE (SEO) ══════════════ */
#guide { background: var(--bg); }
.guide-intro { max-width: 680px; margin-bottom: 4rem; }
.guide-intro p { font-size: 1rem; color: var(--text-muted); margin-top: 1rem; }

.guide-toc {
 display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.toc-tag {
 font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
 padding: 0.35em 0.9em; border: 1px solid var(--border); border-radius: 2px;
 color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.toc-tag:hover, .toc-tag.active { border-color: var(--gold); color: var(--gold); }

.guide-section {
 border-top: 1px solid var(--border);
 padding: 3rem 0;
 display: grid; grid-template-columns: 100px 1fr; gap: 3rem;
}
.guide-section:first-child { border-top: none; }
.guide-num-large {
 font-family: 'Playfair Display', serif;
 font-size: 4rem; font-weight: 900;
 color: rgba(201,168,76,0.12); line-height: 1; padding-top: 0.2rem;
}
.guide-content h2 {
 font-size: 1.5rem; margin-bottom: 1rem; color: var(--white);
}
.guide-content h2 span { color: var(--gold); }
.guide-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.guide-content p:last-child { margin-bottom: 0; }

.guide-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 1rem 0; }
.guide-list li {
 display: flex; gap: 0.8rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}
.guide-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 600; }
.guide-list li strong { color: var(--white); }

/* Guide table */
.guide-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.83rem; }
.guide-table th {
 text-align: left; padding: 0.75rem 1rem;
 background: rgba(201,168,76,0.06); border-bottom: 1px solid var(--border);
 font-weight: 500; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
 color: var(--gold);
}
.guide-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text-muted); vertical-align: top; }
.guide-table td strong { color: var(--white); }
.guide-table tr:hover td { background: rgba(255,255,255,0.01); }

/* Bankroll visual */
.bankroll-viz { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.5rem 0; }
.bk-row { display: flex; flex-direction: column; gap: 0.35rem; }
.bk-label { display: flex; justify-content: space-between; font-size: 0.78rem; }
.bk-name { color: var(--text-muted); }
.bk-pct { color: var(--white); font-weight: 600; }
.bk-bar-bg { height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.bk-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-dk), var(--gold)); transition: width 1s ease; }
.bk-note { font-size: 0.7rem; color: var(--text-muted); }

/* Warning box */
.warn-box {
 border-left: 2px solid var(--gold); padding: 1rem 1.2rem;
 background: rgba(201,168,76,0.04);
 margin: 1.2rem 0;
}
.warn-box-title { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.warn-box p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* Mistake list */
.mistake-grid { display: flex; flex-direction: column; gap: 0; margin: 1.2rem 0; }
.mistake-item {
 display: grid; grid-template-columns: 50px 1fr;
 gap: 1rem; align-items: start; padding: 1rem 0;
 border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mistake-n {
 font-family: 'Playfair Display', serif;
 font-size: 1.4rem; font-weight: 700; color: rgba(201,168,76,0.25); line-height: 1; padding-top: 2px;
}
.mistake-body strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 0.2rem; }
.mistake-body p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Strategy grid */
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 4px; overflow: hidden; margin: 1.2rem 0; }
.strategy-card { background: var(--surface); padding: 1.5rem; transition: background 0.3s; }
.strategy-card:hover { background: var(--bg3); }
.strategy-tag { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.strategy-card h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.5rem; }
.strategy-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Sources grid */
.sources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin: 1.2rem 0; }
.source-item {
 background: rgba(255,255,255,0.02); border: 1px solid var(--border);
 border-radius: 3px; padding: 1rem; text-align: center;
}
.source-icon { font-size: 1.2rem; display: block; margin-bottom: 0.4rem; }
.source-name { display: block; font-size: 0.82rem; color: var(--white); font-weight: 500; margin-bottom: 0.1rem; }
.source-type { display: block; font-size: 0.68rem; color: var(--text-muted); }

@media (max-width: 768px) {
 .guide-section { grid-template-columns: 1fr; gap: 1rem; }
 .guide-num-large { font-size: 2.5rem; }
 .strategy-grid { grid-template-columns: 1fr; }
 .sources-grid { grid-template-columns: 1fr 1fr; }
}

/* Mid CTA */
.mid-cta {
 text-align: center; padding: 3rem;
 background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
 border: 1px solid var(--border); border-radius: 4px;
 margin: 3rem 0;
}
.mid-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.mid-cta p em { color: var(--gold-lt); }

/* ══════════════ FAQ ══════════════ */
#faq { background: var(--bg2); }
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
 display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
 padding: 1.4rem 0; cursor: pointer; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-text { font-size: 0.95rem; font-weight: 400; flex: 1; }
.faq-icon {
 width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border);
 display: flex; align-items: center; justify-content: center; flex-shrink: 0;
 transition: all 0.3s; font-size: 1rem; color: var(--text-muted);
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 1.4rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.faq-answer-inner strong { color: var(--white); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ══════════════ SUBSCRIBE ══════════════ */
#subscribe {
 display: block;
 width: 100%;
 background: var(--black);
 padding: 8rem 0; position: relative; overflow: hidden;
 text-align: center;
}
.subscribe-bg-logo {
 position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
 width: 600px; height: 600px; border-radius: 50%;
 background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
 filter: blur(60px); pointer-events: none;
}
#subscribe .container { position: relative; z-index: 2; }

#subscribe h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 600px; margin: 0 auto 1.2rem; }
#subscribe p { font-size: 0.95rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; line-height: 1.8; }

.subscribe-perks {
 display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem;
 margin-bottom: 2.5rem;
}
.perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }
.perk-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.subscribe-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.subscribe-note { font-size: 0.75rem; color: var(--text-muted); }

.subscribe-unsub {
 margin-top: 1.5rem;
 display: inline-flex; align-items: flex-start; gap: 0.6rem;
 background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.15);
 border-radius: 3px; padding: 0.8rem 1.2rem;
 max-width: 480px; text-align: left;
}
.subscribe-unsub-icon { font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.subscribe-unsub p { font-size: 0.77rem; color: rgba(200,100,90,0.8); margin: 0; line-height: 1.6; }
.subscribe-unsub strong { color: #E8786B; }

/* ══════════════ FOOTER ══════════════ */
footer {
 display: block;
 width: 100%;
 background: var(--bg2);
 border-top: 1px solid var(--border);
 padding: 3rem 0;
}
.footer-inner {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 3rem;
 flex-wrap: wrap;
}
.footer-left { max-width: 400px; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); margin: 0.8rem 0; }
.footer-disclaimer { font-size: 0.72rem; color: rgba(122,112,96,0.6); line-height: 1.7; }

.footer-links {
 display: flex;
 flex-direction: column;
 gap: 0.8rem;
 align-items: flex-start;
}
.footer-links a {
 font-size: 0.78rem;
 color: var(--text-muted);
 letter-spacing: 0.06em;
 transition: color 0.2s;
 display: block;
}
.footer-links a:hover { color: var(--gold); }

@media (max-width: 640px) {
 .footer-inner { flex-direction: column; gap: 2rem; }
 .footer-left { max-width: 100%; }
 .footer-links { width: 100%; }
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 600px) {
 section { padding: 4rem 0; }
 .hero-stats { gap: 1.5rem; }
 .stat-div { display: none; }
 .pick-players { grid-template-columns: 1fr; gap: 0.5rem; }
 .pick-vs { display: none; }
}
 
html, body { height: 100%; }
body { display: flex; flex-direction: column; }
main { flex: 1 0 auto; }
