/* ============================================================
   AI's Top Sports Picks – Landing Page CSS
   Theme: Black & Gold Premium
   ============================================================ */

:root {
    --gold: #d4af37;
    --gold-light: #f1d592;
    --gold-dark: #aa8a2e;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f1d592 50%, #aa8a2e 100%);
    --gold-glow: 0 10px 40px rgba(212, 175, 55, 0.25);
    
    --black: #050505;
    --dark: #0a0a0a;
    --dark2: #121212;
    --dark3: #1a1a1a;
    --black-glass: rgba(5, 5, 5, 0.8);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --border: rgba(212, 175, 55, 0.2);
    --radius: 20px;
    --radius-sm: 10px;
    --glow: 0 0 40px rgba(212, 160, 23, 0.15);
    --glow-strong: 0 0 60px rgba(212, 160, 23, 0.3);
    --shadow: 0 20px 60px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

body.coming-soon-mode > :not(.coming-soon-page) {
    display: none !important;
}

.coming-soon-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 38%),
        linear-gradient(180deg, #050505 0%, #101010 100%);
}

.coming-soon-shell {
    width: min(100%, 620px);
    text-align: center;
    padding: 44px 24px;
}

.coming-soon-logo {
    width: min(280px, 72vw);
    height: auto;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.34));
    mix-blend-mode: screen;
}

.coming-soon-kicker {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.coming-soon-shell h1 {
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

.coming-soon-copy {
    color: var(--text-muted);
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    max-width: 520px;
    margin: 0 auto 28px;
}

.coming-soon-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f0f0f;
    background: var(--gold-gradient);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    box-shadow: var(--gold-glow);
}

.coming-soon-status span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0f0f0f;
}

.coming-soon-link {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
}

/* ---- UTILITY ---- */
.gold { color: var(--gold-light); }
.white-gold-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    display: inline-block;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
    border: 1px solid rgba(212,160,23,0.3);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

section { padding: 100px 24px; }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::after {
    left: 100%;
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 100px;
    border: 1px solid rgba(212,160,23,0.4);
    text-decoration: none;
    transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(212,160,23,0.1); border-color: var(--gold-light); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    background: transparent;
}

#navbar.scrolled {
    background: var(--black-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 24px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.nav-logo-img { 
    height: 80px; 
    mix-blend-mode: screen;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.btn-nav {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 16px 0;
}
.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.btn-mobile {
    margin: 12px 24px 4px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000 !important;
    font-weight: 700;
    border-radius: 100px;
    border: none !important;
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    position: relative;
    overflow: visible;
}

.hero-bg-glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-content { flex: 1; max-width: 600px; text-align: center; }

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05));
    border: 1px solid rgba(212,160,23,0.4);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.6s ease both;
}

.hero-logo {
    height: 120px;
    margin-bottom: 24px;
    display: block;
    animation: fadeSlideUp 0.7s ease 0.1s both;
    filter: drop-shadow(0 0 30px rgba(212,160,23,0.4));
    mix-blend-mode: screen;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.65rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.7s ease 0.3s both;
}

.scale-svg {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-image: url("assets/scale-gold-transparent.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    filter: drop-shadow(0 0 15px rgba(212, 160, 23, 0.6)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    animation: scalePulse 3s ease-in-out infinite;
}

@keyframes scalePulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(212,160,23,0.5)); opacity: 0.9; }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 25px rgba(212,160,23,0.8)); opacity: 1; }
}
.hero-subtitle strong { color: var(--text); }

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.7s ease 0.4s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    animation: fadeSlideUp 0.7s ease 0.5s both;
}

.stat { text-align: center; }
.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.phone-mockup {
    position: relative;
    width: 280px;
}

.phone-screen {
    width: 280px;
    height: 560px;
    background: var(--dark2);
    border-radius: 36px;
    border: 2px solid rgba(212,160,23,0.3);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 8px rgba(255,255,255,0.03);
    position: relative;
    z-index: 2;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(212,160,23,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker span, .tick-item {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    padding: 0 32px;
    border-right: 2px solid rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.tick-item img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
}

/* No special blending needed for transparent logos */

/* No special blending needed for transparent CDN logos (NFL, NBA, etc.) */


/* ============================================================
   FEATURES GRID
   ============================================================ */
#features {
    background: var(--dark);
    max-width: 100%;
}
#features .section-header { max-width: 700px; }

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

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

.feature-card.featured {
    border-color: rgba(212,160,23,0.4);
    background: linear-gradient(135deg, rgba(212,160,23,0.08), var(--dark2));
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

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

.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

.feature-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.08em;
}

/* ============================================================
   AI PANEL
   ============================================================ */
#ai-panel { background: var(--black); padding: 100px 24px; }

.panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
    flex-wrap: wrap;
}

.panel-text { flex: 1; min-width: 300px; }
.panel-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.panel-text p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; line-height: 1.7; }

.panel-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.panel-list li { color: var(--text); font-size: 1rem; font-weight: 500; }

.panel-visual { flex: 0 0 auto; }

.picks-card {
    background: var(--dark2);
    border: 1px solid rgba(212,160,23,0.35);
    border-radius: var(--radius);
    width: 320px;
    overflow: hidden;
    box-shadow: var(--glow-strong);
}

.picks-header {
    background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05));
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.picks-live {
    background: #ff4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    animation: blink 1.4s ease-in-out infinite;
}

.pick-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pick-teams { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.pick-rec { font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }
.pick-conf { font-size: 0.8rem; color: var(--text-muted); }

.picks-footer {
    padding: 12px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   SCREENSHOTS
   ============================================================ */
#app-preview { background: var(--dark); }

.screenshots-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

.screenshot-frame {
    text-align: center;
    animation: fadeSlideUp 0.6s ease var(--delay) both;
}

.screenshot-frame img {
    width: 170px;
    height: 340px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.screenshot-frame:hover img { transform: translateY(-8px); }
.featured-frame img { width: 195px; height: 390px; border-color: rgba(212,160,23,0.4); box-shadow: var(--glow-strong); }

.screenshot-frame p { margin-top: 12px; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   SPORTS / LEAGUES
   ============================================================ */
#sports { background: var(--black); }

/* Legacy pill (kept in case still referenced elsewhere) */
.sports-grid {
    max-width: 900px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.sport-pill {
    background: var(--dark2); border: 1px solid var(--border); color: var(--text);
    font-weight: 600; font-size: 1rem; padding: 12px 24px; border-radius: 100px;
    transition: all 0.3s; cursor: default;
}
.sport-pill.coming {
    background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
    border-color: var(--gold); color: var(--gold-light);
}

/* League logo grid */
.leagues-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.league-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: default;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.league-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212,160,23,0.5);
    box-shadow: var(--glow);
}

.league-card .logo-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.league-card img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* No special blending needed for transparent logos */

/* No special blending needed for transparent CDN logos */

.league-card span {
    color: var(--text);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.league-coming {
    border-color: rgba(212,160,23,0.25);
    background: linear-gradient(135deg, rgba(212,160,23,0.07), var(--dark2));
}

.league-coming-icon {
    font-size: 2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.league-more {
    border-color: var(--gold);
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.league-more span { color: var(--gold-light); }

.league-coming {
    border-color: rgba(212,160,23,0.25);
    background: linear-gradient(135deg, rgba(212,160,23,0.07), var(--dark2));
}

.league-coming-icon {
    font-size: 2.4rem;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.league-more {
    border-color: var(--gold);
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.league-more span { color: var(--gold-light); }

/* ============================================================
   PRICING
   ============================================================ */
#pricing { 
    background: #0d0d0d; 
    padding: 80px 20px 60px;
}

.pricing-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    align-items: stretch;
    min-width: 0;
}

.pricing-layout.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-layout.three-cols {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

/* Responsive adjustments for pricing grids */
@media (max-width: 1024px) {
    .pricing-layout.four-cols, .pricing-layout.three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-layout.four-cols, .pricing-layout.three-cols {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    min-width: 0;
}

.price-card:hover {
    border-color: #333;
    transform: translateY(-4px);
}

.price-tier {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Rajdhani', sans-serif;
}
.price-amount span:not(.price-original) {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin-left: 2px;
}

.price-desc {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-separator {
    height: 1px;
    background: #222;
    width: 100%;
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.price-features li {
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.price-features li.yes { color: #eee; }
.price-features li.yes::before {
    content: "\2713";
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.price-features li.no { color: #333; }
.price-features li.no::before {
    content: "\2717";
    color: #ef4444;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 16px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s;
}

.price-btn-outline {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #888;
}
.price-btn-outline:hover {
    border-color: #444;
    color: #eee;
    background: #222;
}

/* Featured (Yearly) */
.price-card.yearly-main {
    border-color: #d4a017;
    background: #181510;
}

.price-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a017;
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
    text-transform: uppercase;
}

.price-btn-gold {
    background: #d4a017;
    color: #000;
}
.price-btn-gold:hover {
    background: #e5b120;
    box-shadow: 0 4px 20px rgba(212,160,23,0.3);
}

/* Super variant - Gold Elite */
.price-super {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.1), #111);
    box-shadow: 0 0 40px rgba(212,175,55,0.15);
    position: relative;
    overflow: hidden;
}

.price-super::after {
    content: 'BEST VALUE';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.price-super:hover {
    box-shadow: 0 0 60px rgba(212,175,55,0.3);
    border-color: var(--gold-light);
}

.super-title { color: var(--gold-light) !important; font-weight: 900; }

.price-btn-super {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.price-btn-super:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(212,175,55,0.6);
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 24px;
}
.pricing-note strong { color: var(--gold-light); }


/* Responsive pricing */
@media (max-width: 1240px) {
    .pricing-layout { grid-template-columns: repeat(2, 1fr); max-width: 900px; gap: 24px; }
    .price-featured { transform: scale(1.02); }
}
@media (max-width: 768px) {
    .pricing-layout { grid-template-columns: 1fr; max-width: 480px; }
    .price-featured { transform: scale(1); }
    .price-featured:hover { transform: translateY(-6px); }
}
/* More billing options */
.more-options-wrap {
    text-align: center;
    margin-top: 24px;
}

.more-options-btn {
    background: transparent;
    border: 1px solid rgba(212,160,23,0.4);
    color: var(--gold-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.04em;
}
.more-options-btn:hover {
    background: rgba(212,160,23,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,160,23,0.2);
}

.more-pricing-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
    margin-top: 0;
}
.more-pricing-panel.open {
    max-height: 600px;
    opacity: 1;
    margin-top: 36px;
}

.more-pricing-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.more-pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.more-price-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s, transform 0.3s;
}
.more-price-card:hover {
    border-color: rgba(212,160,23,0.4);
    transform: translateY(-4px);
}
.more-featured {
    border-color: rgba(212,160,23,0.5);
    background: linear-gradient(160deg, rgba(212,160,23,0.1), var(--dark2));
}

.more-badge {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    padding: 3px 8px;
    border-radius: 100px;
}
.gold-badge { background: rgba(212,160,23,0.15); color: var(--gold-light); }
.best-badge { background: rgba(83,208,0,0.12); color: #53d000; }

.more-tier {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.more-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}
.more-amount span { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; display: block; }
.gold-amount { color: var(--gold-light); }

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
    opacity: 0.5;
    font-weight: 500;
    display: block;
}

.offer-btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: transparent;
    color: #000;
    font-weight: 700;
}
.offer-btn-gold:hover { box-shadow: 0 4px 20px rgba(212,160,23,0.5); color: #000; }

@media (max-width: 900px) {
    .more-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .more-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   FEATURED OFFERS
   ============================================================ */
#offers {
    background: linear-gradient(160deg, var(--dark2) 0%, var(--dark) 100%);
    border-top: 1px solid var(--border);
}

.offers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* State Filter Styling */
.filter-wrap {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.filter-wrap label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.select-container {
    position: relative;
    width: 100%;
    max-width: 280px;
}
.state-select {
    width: 100%;
    padding: 12px 24px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: all 0.3s;
    text-align: center;
}
.state-select:hover, .state-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,160,23,0.15);
    background: #1e1e1e;
}
.select-container::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.6rem;
    pointer-events: none;
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.offer-card.hidden-offer {
    display: none !important;
}

.hidden-offer-state {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

/* Brand logos — styled text */
.offer-logo {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    line-height: 1.1;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
}

/* DraftKings */
.dk-logo { background: #000; color: #53d000; border: 1px solid rgba(83,208,0,0.3); font-size: 1.3rem; box-shadow: 0 0 20px rgba(83,208,0,0.1); }
/* FanDuel */
.fd-logo { background: #000; color: #1493ff; border: 1px solid rgba(20,147,255,0.3); box-shadow: 0 0 20px rgba(20,147,255,0.1); }
/* BetMGM */
.mgm-logo { background: #000; color: var(--gold-light); border: 1px solid rgba(212,175,55,0.3); box-shadow: 0 0 20px rgba(212,175,55,0.1); }
/* Caesars */
.cae-logo { background: #1a1a1a; color: #9b6dff; border: 1px solid rgba(155,109,255,0.25); font-size: 1.1rem; letter-spacing: 0.1em; }
/* Underdog */
.ud-logo { background: #1a1a1a; color: #f7c52e; border: 1px solid rgba(247,197,46,0.25); font-size: 1.15rem; }
/* PointsBet */
.pb-logo { background: #1a1a1a; color: #ff3c3c; border: 1px solid rgba(255,60,60,0.25); font-style: italic; }
/* Hard Rock Bet */
.hr-logo {
    background: #1a1a1a;
    color: #e8c97a;
    border: 1px solid rgba(232,201,122,0.3);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
}
.hr-logo span { color: #fff; font-size: 1.1rem; display: block; }
/* ESPN Bet */
.espn-logo {
    background: #1a1a1a;
    color: #ff3030;
    border: 1px solid rgba(255,48,48,0.3);
    font-size: 1.6rem;
}
.espn-logo span { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.1em; display: block; }

.offer-body { flex: 1; }

.offer-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.offer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.offer-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    background: transparent;
}
.offer-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: transparent;
    color: #000;
    box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}

.offers-note {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    margin-top: 36px;
}

/* Responsive offers */
@media (max-width: 1000px) {
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .offers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--dark); }


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

.faq-item {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(212,160,23,0.35); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q.open { color: var(--gold-light); }
.faq-arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--gold); }
.faq-q.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a.open {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-a p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
#download {
    background: linear-gradient(160deg, var(--dark2) 0%, var(--black) 100%);
    text-align: center;
    border-top: 1px solid var(--border);
}

.download-inner { max-width: 700px; margin: 0 auto; }

.download-logo {
    width: 280px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(212,160,23,0.3));
    animation: float 4s ease-in-out infinite;
    mix-blend-mode: screen;
}

#download h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
#download p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; }

.download-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.store-btn img { height: 52px; opacity: 0.6; filter: grayscale(1); border-radius: 8px; transition: all 0.3s; }
.store-btn:hover img { opacity: 1; filter: none; }

.coming-soon-note { color: var(--gold); font-weight: 600; font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 80px 20px 40px;
    color: #888;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.5fr 0.7fr;
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

/* Responsible Gaming Column */
.responsible-text {
    font-size: 0.82rem;
    line-height: 1.6;
}

.responsible-text p {
    margin-bottom: 16px;
}

.disclaimer {
    font-style: italic;
    color: #999;
}

.gambling-help {
    font-weight: 700;
    color: #bbb;
}

.state-info {
    font-size: 0.78rem;
    color: #555;
    margin-top: 20px;
}

.state-licenses {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.4;
}

.state-licenses p {
    margin-bottom: 4px;
    color: #666;
    font-weight: 700;
}

/* Social List */
.social-list li {
    display: flex;
    align-items: center;
}

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

.soc-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.tiktok .soc-icon { color: #fe2c55; }
.discord .soc-icon { color: #5865f2; }
.instagram .soc-icon { color: #e1306c; }
.facebook .soc-icon { color: #1877f2; }
.twitter .soc-icon { color: #1da1f2; }
.linkedin .soc-icon { color: #0077b5; }
.youtube .soc-icon { color: #ff0000; }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-mini-logo {
    height: 44px;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #444;
}

/* Responsive Footer */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
    }
    .soc-link { justify-content: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212,160,23,0.2); }
    50% { box-shadow: 0 0 40px rgba(212,160,23,0.5); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 64px;
    }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-logo { margin: 0 auto 24px; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 220px; }
    .phone-screen { width: 220px; height: 440px; border-radius: 28px; }

    .panel-inner { flex-direction: column; gap: 48px; }
    .picks-card { width: 100%; max-width: 360px; }

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

@media (max-width: 600px) {
    section { padding: 80px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .screenshot-frame img { width: 160px; height: 320px; }
    .featured-frame img { width: 180px; height: 360px; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.6rem; }
}

/* ============================================================
   PROMO BOX IN OFFERS
   ============================================================ */
.promo-box {
    background: rgba(212, 160, 23, 0.1);
    border: 1px dashed var(--gold);
    color: var(--gold-light);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}
.promo-box:hover {
    background: rgba(212, 160, 23, 0.2);
    transform: translateY(-2px);
}
.promo-box strong {
    font-weight: 800;
    letter-spacing: 0.05em;
}
.promo-box .copy-icon {
    font-size: 1.1rem;
}
.promo-box.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
    justify-content: center;
    font-weight: bold;
}

/* ============================================================
   PICK THE NEXT SPORT SECTION
   ============================================================ */
.next-sport-section {
    background: linear-gradient(to bottom, var(--dark) 0%, var(--black) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 24px;
}

.next-sport-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.next-sport-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 768px) {
    .next-sport-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.vote-box, .tally-box {
    background: var(--dark2);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.vote-box {
    border-color: rgba(212, 160, 23, 0.3);
}

.vote-box label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.vote-input-combo {
    display: flex;
    gap: 12px;
}
@media (max-width: 480px) {
    .vote-input-combo {
        flex-direction: column;
    }
}

.sport-select-input {
    flex: 1;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--dark3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.sport-select-input:focus {
    outline: none;
    border-color: var(--gold);
}

.vote-btn {
    padding: 14px 24px;
}

.vote-feedback {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.3s;
}
.vote-feedback.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.tally-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.tally-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tally-item {
    display: grid;
    grid-template-columns: 32px 100px 1fr;
    align-items: center;
    gap: 12px;
}

.tally-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
}
.tally-rank.gold { background: linear-gradient(135deg, #f5c842, #d4a017); }
.tally-rank.silver { background: linear-gradient(135deg, #e8e8e8, #a0a0a0); }
.tally-rank.bronze { background: linear-gradient(135deg, #cd7f32, #8b5a2b); }

.tally-name {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.tally-bar-wrap {
    height: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    overflow: hidden;
}

.tally-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(212,160,23,0.5);
    animation: barGrow 1.5s ease-out both;
}

@keyframes barGrow {
    0% { transform: scaleX(0); transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 120px 24px;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-container h2 {
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
}

.newsletter-container p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 12px;
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glow);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--gold-light);
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
    background: var(--dark3);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 24px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form .btn-primary {
    padding: 12px 32px;
    white-space: nowrap;
}

.privacy-note {
    margin-top: 20px;
    font-size: 0.85rem !important;
    color: var(--text-muted);
    opacity: 0.7;
}

.newsletter-success {
    margin-top: 30px;
    padding: 24px;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    animation: newsletterFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-success h3 {
    color: var(--gold-light);
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 800;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    color: var(--gold-light);
    filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.4));
}

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

@media (max-width: 768px) {
    #newsletter {
        padding: 80px 24px;
    }
}

@media (max-width: 600px) {
    .newsletter-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        gap: 16px;
    }
    
    .newsletter-form .input-group:focus-within {
        transform: none;
    }
    
    .newsletter-form input {
        background: var(--dark2);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
    }
    
    .newsletter-form .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}

/* ============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: var(--glow-strong);
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content h3 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    margin-left: 4px;
}

.cookie-link:hover {
    color: var(--gold-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--text);
}

/* Modal Overlay */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s;
}

.cookie-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-modal {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: translateY(0);
    transition: transform 0.3s;
}

.cookie-modal-overlay.hidden .cookie-modal {
    transform: translateY(50px);
}

.cookie-modal-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    font-size: 1.25rem;
    color: var(--gold-light);
}

.cookie-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.cookie-close-btn:hover {
    color: var(--text);
}

.cookie-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    background: rgba(0,0,0,0.2);
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.02);
}

.cookie-option-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.cookie-option-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Custom Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--gold);
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.btn-cookie-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 600px) {
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .btn-cookie {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
}

/* ── VOTE MODAL ── */
#voteOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000; /* Above checkout */
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: overlayFadeIn 0.3s ease;
}

#voteOverlay.open {
    display: flex;
}

.vote-modal {
    max-width: 480px !important;
}

.vote-summary {
    background: rgba(212, 175, 55, 0.12) !important;
    border: 1px dashed rgba(212, 175, 55, 0.4) !important;
    padding: 20px 24px !important;
}

.vote-icon-box {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}

.vote-disclaimer {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.5;
    margin-top: 15px;
    text-align: center;
}

#vote-success {
    padding: 50px 30px;
}

.gold {
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 480px) {
    .vote-modal {
        margin: 0 10px;
    }
}

/* ============================================================
   PURCHASE PICKS SECTION
   ============================================================ */
#purchase-picks {
    background: #0a0a0a;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

#purchase-picks::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
}

#purchase-picks .section-header {
    position: relative;
    z-index: 1;
}

#purchase-picks .pricing-layout {
    position: relative;
    z-index: 1;
}

.field-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}
