/* ============================================================
   VAYCASINO — Kinetic Precision
   ============================================================ */

:root {
    --bg: #0a0e1a;
    --bg-light: #0f1428;
    --bg-card: #141a2e;
    --red: #e63946;
    --red-dark: #c1242f;
    --white: #ffffff;
    --gray-100: #e8eaf0;
    --gray-300: #9ba2b8;
    --gray-500: #5a6380;
    --gray-700: #2a3150;
    --gray-800: #1a2040;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(230, 57, 70, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), border-color 0.2s, opacity 0.3s;
}

.cursor-ring.hovering {
    width: 52px;
    height: 52px;
    border-color: var(--red);
}

body.cursor-active { cursor: none; }
body.cursor-active a,
body.cursor-active button,
body.cursor-active input { cursor: none; }

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body.cursor-active { cursor: auto; }
    body.cursor-active a,
    body.cursor-active button,
    body.cursor-active input { cursor: auto; }
}

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-700) var(--bg);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--gray-100);
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; color: inherit; font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 clamp(16px, 4vw, 48px);
    height: 72px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0) 100%);
    transition: background 0.4s;
}

.header.scrolled {
    background: rgba(10,14,26,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-img {
    height: 32px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-email {
    font-size: 13px;
    color: var(--gray-300);
    transition: color 0.25s;
}
.header-email:hover { color: var(--white); }

.header-cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    background: var(--red);
    padding: 10px 24px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.header-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.header-cta:hover { background: var(--red-dark); }
.header-cta:hover::after { transform: scaleX(1); }

/* ============ SECTIONS (shared) ============ */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section-label {
    font-family: var(--font-display);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    text-align: center;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    text-align: center;
    line-height: 1.1;
    margin-bottom: clamp(32px, 4vw, 56px);
}

/* Section subtext */
.section-sub {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--gray-300);
    text-align: center;
    max-width: 520px;
    margin: clamp(24px, 3vw, 40px) auto 0;
    padding: 0 24px;
    line-height: 1.6;
}

.section-sub--wins {
    margin-top: clamp(28px, 3vw, 44px);
}

/* ============ REVEAL ANIMATION ============ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SECTION 1: HERO ============ */
.section-hero {
    background: var(--bg);
    align-items: center;
    padding-top: 72px;
}

/* Animated diagonal grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(230,57,70,0.04) 60px,
            rgba(230,57,70,0.04) 61px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(230,57,70,0.04) 60px,
            rgba(230,57,70,0.04) 61px
        );
    background-size: 85px 85px;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 85px 85px, -85px 85px; }
}

/* Stadium background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/hero-bg.webp') center center / cover no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

/* Odds tickers */
.hero-ticker {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0.15;
    font-family: var(--font-display);
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 0.1em;
    color: var(--white);
    white-space: nowrap;
    pointer-events: none;
}

.ticker-track {
    display: inline-flex;
    gap: 16px;
    will-change: transform;
}

.ticker-sep { color: var(--red); }
.ticker-item--red { 
    color: var(--red);
    font-weight: bold;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: letterReveal 0.6s var(--ease-out) forwards;
    animation-delay: calc(var(--i) * 0.05s + 0.3s);
}

.hero-letter--accent {
    color: var(--red);
}

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    font-size: clamp(14px, 2vw, 20px);
    color: var(--gray-300);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

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

/* CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--red);
    padding: 16px 48px;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
    transition: background 0.3s;
}

.btn-primary:hover { background: var(--red-dark); }

.btn-text { position: relative; z-index: 1; }

.btn-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover .btn-line {
    transform: scaleX(1);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 48px;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 2s forwards;
}

.scroll-line {
    width: 100%;
    height: 100%;
    background: var(--red);
    animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* ============ SECTION 2: SPORTS ============ */
.section-sports {
    background: var(--bg-light);
    padding: clamp(60px, 8vh, 100px) 0;
    gap: clamp(24px, 3vw, 40px);
}

.marquee-wrap {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track--reverse {
    animation: marqueeScrollReverse 50s linear infinite;
}

.marquee-wrap--reverse:hover .marquee-track--reverse {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Sport card */
.sport-card {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.sport-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

/* Animated border trace */
.sport-card-border {
    position: absolute;
    inset: -1px;
    pointer-events: none;
    overflow: hidden;
}

.sport-card-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 70%,
        var(--red) 80%,
        transparent 100%
    );
    animation: borderTrace 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.sport-card:hover .sport-card-border::before {
    opacity: 0.6;
}

@keyframes borderTrace {
    to { transform: rotate(360deg); }
}

.sport-card-icon {
    width: 40px;
    height: 40px;
    color: var(--gray-300);
    transition: color 0.3s;
}
.sport-card:hover .sport-card-icon { color: var(--red); }

.sport-card-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color 0.3s;
}
.sport-card:hover .sport-card-name { color: var(--white); }

.sport-card--game { border-color: rgba(230,57,70,0.15); }
.sport-card--game .sport-card-icon { color: var(--red); opacity: 0.7; }
.sport-card--game:hover .sport-card-icon { opacity: 1; }

/* ============ SECTION 3: LIVE WINS ============ */
.section-wins {
    background: var(--bg);
    padding: clamp(60px, 8vh, 100px) 0;
}

.section-wins::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/wins-bg.webp') center center / cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.wins-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(230,57,70,0.02) 40px,
        rgba(230,57,70,0.02) 41px
    );
    background-size: 56px 56px;
    animation: stripeShift 12s linear infinite;
}

@keyframes stripeShift {
    0% { background-position: 0 0; }
    100% { background-position: 56px 56px; }
}

.wins-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.wins-header {
    text-align: center;
    margin-bottom: 40px;
}

.wins-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(230,57,70,0.12);
    border: 1px solid rgba(230,57,70,0.25);
    position: relative;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: livePulse 1.5s ease-in-out infinite;
}

.live-ring {
    position: absolute;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--red);
    animation: ringExpand 1.5s ease-out infinite;
}

.live-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--red);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes ringExpand {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.wins-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.wins-counter-label {
    font-size: 13px;
    color: var(--gray-500);
}

.wins-counter-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.02em;
}

/* Wins feed */
.wins-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 50vh;
    overflow: hidden;
}

.win-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    opacity: 0;
    transition: opacity 0.4s, transform 0.5s var(--ease-out);
}

.win-entry--left {
    transform: translateX(-60px);
}
.win-entry--right {
    transform: translateX(60px);
}
.win-entry.visible {
    opacity: 1;
    transform: translateX(0);
}

.win-entry-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    min-width: 100px;
}

.win-entry-game {
    font-size: 13px;
    color: var(--gray-300);
    flex: 1;
    text-align: center;
}

.win-entry-amount {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    min-width: 100px;
    text-align: right;
}

/* ============ SECTION 4: FEATURES ============ */
.section-features {
    background: var(--bg-light);
    padding: clamp(60px, 8vh, 100px) 24px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    padding: clamp(24px, 3vw, 40px);
    transition: border-color 0.3s, transform 0.3s var(--ease-out);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

.feature-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.feature-svg {
    width: 100%;
    height: 100%;
    color: var(--red);
}

/* Shield draw animation */
.shield-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawPath 2s var(--ease-out) forwards;
    animation-play-state: paused;
}
.feature-card:hover .shield-path,
.feature-card.visible .shield-path {
    animation-play-state: running;
}
.check-path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawPath 1s var(--ease-out) 1s forwards;
    animation-play-state: paused;
}
.feature-card:hover .check-path,
.feature-card.visible .check-path {
    animation-play-state: running;
}

/* Chat bubble animation */
.chat-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawPath 2s var(--ease-out) forwards;
    animation-play-state: paused;
}
.feature-card:hover .chat-path,
.feature-card.visible .chat-path {
    animation-play-state: running;
}
.chat-line {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}
.chat-line--1 {
    animation: drawPath 0.8s var(--ease-out) 1.2s forwards;
    animation-play-state: paused;
}
.chat-line--2 {
    animation: drawPath 0.8s var(--ease-out) 1.5s forwards;
    animation-play-state: paused;
}
.feature-card:hover .chat-line,
.feature-card.visible .chat-line {
    animation-play-state: running;
}

/* Lightning animation */
.lightning-path {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: drawPath 1.5s var(--ease-out) forwards;
    animation-play-state: paused;
}
.feature-card:hover .lightning-path,
.feature-card.visible .lightning-path {
    animation-play-state: running;
}

/* Cards animation */
.card-path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
}
.card-path--1 {
    animation: drawPath 1.5s var(--ease-out) forwards;
    animation-play-state: paused;
}
.card-path--2 {
    animation: drawPath 1.5s var(--ease-out) 0.3s forwards;
    animation-play-state: paused;
}
.feature-card:hover .card-path,
.feature-card.visible .card-path {
    animation-play-state: running;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.feature-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

.features-cta {
    text-align: center;
    margin-top: clamp(28px, 3vw, 40px);
}

/* ============ SECTION 5: FAQ ============ */
.section-faq {
    background: var(--bg);
    padding: clamp(60px, 8vh, 100px) 24px;
    min-height: auto;
}

.section-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/sss-bg.webp') center center / cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.faq-search-wrap {
    position: relative;
    margin-bottom: 32px;
}

.faq-search {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}
.faq-search::placeholder { color: var(--gray-500); }
.faq-search:focus { border-color: var(--red); }

.faq-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--gray-500);
    pointer-events: none;
}

.faq-not-found {
    text-align: center;
    color: var(--gray-500);
    padding: 24px;
    display: none;
}
.faq-not-found.show { display: block; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border: 1px solid var(--gray-700);
    background: var(--bg-card);
    transition: border-color 0.3s;
}
.faq-item.hidden { display: none; }
.faq-item.active { border-color: rgba(230,57,70,0.3); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-100);
    transition: color 0.25s;
}
.faq-q:hover { color: var(--white); }

.faq-toggle {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--gray-300);
    transition: transform 0.35s var(--ease-out);
}
.faq-toggle::before {
    width: 16px;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.faq-toggle::after {
    width: 1.5px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.faq-item.active .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* FAQ contact + CTA */
.faq-contact {
    text-align: center;
    margin-top: clamp(36px, 4vw, 56px);
}

.faq-contact-sub {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--gray-300);
    margin-bottom: 12px;
}

.faq-contact-email {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
    transition: color 0.25s;
}
.faq-contact-email:hover { color: var(--red); }

.faq-cta {
    text-align: center;
    margin-top: clamp(28px, 3vw, 40px);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--gray-700);
    padding: 48px 24px;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-badge {
    height: 32px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(0.5);
    transition: opacity 0.3s, filter 0.3s;
}
.footer-badge:hover {
    opacity: 1;
    filter: grayscale(0);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-demo {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.footer-demo strong { color: var(--red); }

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-legal-link {
    font-size: 13px;
    color: var(--gray-300);
    transition: color 0.25s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-legal-link:hover { color: var(--white); }

.footer-sep { color: var(--gray-700); font-size: 12px; }

.footer-copyright {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* ============ MODALS ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10,14,26,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-700);
    flex-shrink: 0;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
}

.modal-close {
    font-size: 28px;
    line-height: 1;
    color: var(--gray-300);
    transition: color 0.25s;
    padding: 4px;
}
.modal-close:hover { color: var(--white); }

.modal-body {
    padding: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-top: 24px;
    margin-bottom: 8px;
}
.modal-body h3:first-of-type { margin-top: 12px; }

.modal-body p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .header-email { display: none; }

    .hero-title {
        font-size: clamp(40px, 12vw, 80px);
    }

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

    .sport-card {
        width: 130px;
        height: 130px;
    }

    .win-entry {
        flex-wrap: wrap;
        gap: 4px;
    }

    .win-entry-name { min-width: auto; }
    .win-entry-amount { min-width: auto; }
    .win-entry-game {
        flex: none;
        width: 100%;
        text-align: left;
        order: 3;
    }
}

@media (max-width: 480px) {
    .header-cta {
        font-size: 12px;
        padding: 8px 16px;
    }

    .sport-card {
        width: 110px;
        height: 110px;
    }

    .feature-card {
        padding: 20px;
    }

    .faq-q {
        font-size: 13px;
        padding: 14px 16px;
    }

    .faq-a p {
        padding: 0 16px 14px;
        font-size: 13px;
    }
}

/* Duplicate marquee tracks for seamless loop */
.marquee-track::after {
    content: '';
}
