* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    :root {

        --bg: #020617;
        --card: rgba(255, 255, 255, .05);
        --line: rgba(255, 255, 255, .08);

        --green: #00FFAA;
        --blue: #00C2FF;

        --text: #F8FAFC;
        --muted: #94A3B8;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background:
            radial-gradient(circle at top,
                #071B2B,
                #020617 65%);

        color: var(--text);
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }
    /*
    =====================================================
    BG
    =====================================================
    */

    .bg {

        position: fixed;

        inset: 0;

        z-index: 0;

        overflow: hidden;

        pointer-events: none;
    }

    .bg::before {

        content: '';

        position: absolute;

        width: 600px;
        height: 600px;

        border-radius: 50%;

        top: -200px;
        left: -200px;

        background:
            radial-gradient(circle,
                rgba(0, 255, 170, .14),
                transparent 70%);

        animation: float 8s ease-in-out infinite;
    }

    .bg::after {

        content: '';

        position: absolute;

        width: 600px;
        height: 600px;

        border-radius: 50%;

        bottom: -220px;
        right: -220px;

        background:
            radial-gradient(circle,
                rgba(0, 194, 255, .14),
                transparent 70%);

        animation: float2 9s ease-in-out infinite;
    }

    @keyframes float {

        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(40px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    @keyframes float2 {

        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-40px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /*
    =====================================================
    WRAPPER
    =====================================================
    */

    .wrapper {

        position: relative;

        z-index: 2;

        width: 100%;

        max-width: 1700px;

        margin: auto;

        padding: 24px;
    }

    /*
    =====================================================
    HERO
    =====================================================
    */

    .hero {

        position: relative;

        overflow: hidden;

        border-radius: 40px;

        padding: 80px;

        margin-bottom: 40px;

        background:
            linear-gradient(135deg,
                rgba(0, 255, 170, .10),
                rgba(0, 194, 255, .12));

        border: 1px solid var(--line);

        backdrop-filter: blur(30px);

        box-shadow:
            0 0 80px rgba(0, 0, 0, .35);
    }

    .hero::before {

        content: '';

        position: absolute;

        top: -120px;
        right: -120px;

        width: 400px;
        height: 400px;

        border-radius: 50%;

        background:
            radial-gradient(circle,
                rgba(255, 255, 255, .15),
                transparent 70%);
    }

    .hero-grid {

        display: grid;

        grid-template-columns: 1.3fr .7fr;

        gap: 40px;

        align-items: center;
    }

    .hero h1 {

        font-size: clamp(50px, 8vw, 110px);

        line-height: .95;

        font-weight: 900;

        margin-bottom: 24px;
    }

    .hero p {

        max-width: 720px;

        font-size: 19px;

        line-height: 1.9;

        color: #CBD5E1;
    }

    .hero-buttons {

        display: flex;

        flex-wrap: wrap;

        gap: 18px;

        margin-top: 35px;
    }

    .btn {

        height: 66px;

        border: none;

        cursor: pointer;

        padding: 0 38px;

        border-radius: 20px;

        font-weight: 900;

        font-size: 15px;

        transition: .3s;
    }

    .btn:hover {

        transform: translateY(-5px);
    }

    .btn-primary {

        color: #00140D;

        background:
            linear-gradient(135deg,
                var(--green),
                var(--blue));
    }

    .btn-secondary {

        color: #fff;

        background:
            rgba(255, 255, 255, .06);

        border: 1px solid var(--line);
    }

    .hero-card {

        padding: 34px;

        border-radius: 34px;

        background:
            rgba(255, 255, 255, .05);

        border: 1px solid rgba(255, 255, 255, .08);

        backdrop-filter: blur(20px);
    }

    .hero-card span {

        display: block;

        margin-bottom: 14px;

        letter-spacing: 3px;

        font-size: 12px;

        color: var(--muted);
    }

    .hero-card strong {

        display: block;

        font-size: 78px;

        color: var(--green);

        line-height: 1;

        margin-bottom: 14px;
    }

    /*
    =====================================================
    STATS
    =====================================================
    */

    .stats-grid {

        display: grid;

        grid-template-columns:
            repeat(auto-fit, minmax(240px, 1fr));

        gap: 22px;

        margin-bottom: 55px;
    }

    .stat-card {

        padding: 30px;

        border-radius: 30px;

        background:
            rgba(255, 255, 255, .04);

        border: 1px solid rgba(255, 255, 255, .08);

        backdrop-filter: blur(18px);

        transition: .3s;
    }

    .stat-card:hover {

        transform: translateY(-8px);

        box-shadow:
            0 0 40px rgba(0, 255, 170, .15);
    }

    .stat-card span {

        display: block;

        margin-bottom: 12px;

        color: var(--muted);

        letter-spacing: 2px;

        font-size: 12px;
    }

    .stat-card strong {

        font-size: 54px;

        font-weight: 900;
    }

    /*
    =====================================================
    SECTION
    =====================================================
    */

    .section {

        margin-bottom: 65px;
    }

    .section-header {

        margin-bottom: 28px;
    }

    .section-header h2 {

        font-size: 44px;

        margin-bottom: 12px;

        font-weight: 900;
    }

    .section-header p {

        color: var(--muted);

        line-height: 1.8;
    }

    /*
    =====================================================
    GAMES
    =====================================================
    */

    .games-grid {

        display: grid;

        grid-template-columns:
            repeat(auto-fit, minmax(340px, 1fr));

        gap: 26px;
    }

    .game-card {

        overflow: hidden;

        border-radius: 34px;

        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, .06),
                rgba(255, 255, 255, .03));

        border: 1px solid rgba(255, 255, 255, .08);

        transition: .35s;

        position: relative;
    }

    .game-card:hover {

        transform: translateY(-8px);

        box-shadow:
            0 0 50px rgba(0, 255, 170, .14);
    }

    .game-top {

        padding: 24px;
    }

    .game-badge {

        display: inline-flex;

        align-items: center;

        padding: 10px 18px;

        border-radius: 50px;

        background:
            rgba(0, 255, 170, .12);

        color: var(--green);

        font-size: 12px;

        font-weight: 900;

        margin-bottom: 22px;
    }

    .teams {

        display: grid;

        grid-template-columns: 1fr auto 1fr;

        align-items: center;

        gap: 16px;
    }

    .team {

        text-align: center;
    }

    .team-logo {

        width: 95px;
        height: 95px;

        margin: auto auto 14px;

        border-radius: 24px;

        overflow: hidden;

        background:
            rgba(255, 255, 255, .05);

        border: 1px solid rgba(255, 255, 255, .08);

        display: flex;

        align-items: center;

        justify-content: center;
    }

    .team-logo img {

        width: 100%;
        height: 100%;

        object-fit: contain;

        padding: 10px;
    }

    .team h3 {

        font-size: 19px;
    }

    .vs {

        font-size: 34px;

        opacity: .2;

        font-weight: 900;
    }

    /*
    =====================================================
    PRIZE
    =====================================================
    */

    .prize {

        position: relative;

        height: 240px;

        overflow: hidden;
    }

    .prize img {

        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .prize-overlay {

        position: absolute;

        inset: 0;

        background:
            linear-gradient(to top,
                rgba(2, 6, 23, .96),
                transparent);
    }

    .prize-info {

        position: absolute;

        left: 24px;
        bottom: 24px;

        z-index: 2;
    }

    .prize-info small {

        display: block;

        margin-bottom: 8px;

        color: #CBD5E1;

        letter-spacing: 2px;
    }

    .prize-info h4 {

        font-size: 32px;

        font-weight: 900;
    }

    /*
    =====================================================
    COUNTDOWN
    =====================================================
    */

    .countdown-box {

        margin: 24px;

        padding: 22px;

        border-radius: 24px;

        text-align: center;

        background:
            rgba(255, 255, 255, .04);

        border: 1px solid rgba(255, 255, 255, .08);
    }

    .countdown-box small {

        display: block;

        margin-bottom: 12px;

        color: #94A3B8;

        font-size: 12px;

        letter-spacing: 2px;

        text-transform: uppercase;
    }

    .countdown {

        font-size: 32px;

        font-weight: 900;

        color: var(--green);

        line-height: 1.3;
    }

    /*
    =====================================================
    CARROSSEL PALPITES
    =====================================================
    */

    .carousel {

        overflow: hidden;

        position: relative;
    }

    .carousel-track {

        display: flex;

        gap: 22px;

        width: max-content;

        animation: scroll 40s linear infinite;
    }

    .carousel:hover .carousel-track {

        animation-play-state: paused;
    }

    @keyframes scroll {

        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .guess-card {

        min-width: 320px;

        max-width: 320px;

        padding: 24px;

        border-radius: 30px;

        background:
            rgba(255, 255, 255, .04);

        border: 1px solid rgba(255, 255, 255, .08);
    }

    .guess-user {

        display: flex;

        align-items: center;

        gap: 15px;

        margin-bottom: 20px;
    }

    .guess-avatar {

        width: 60px;
        height: 60px;

        border-radius: 18px;

        background:
            linear-gradient(135deg,
                var(--green),
                var(--blue));

        color: #00140D;

        font-weight: 900;

        display: flex;

        align-items: center;

        justify-content: center;
    }

    .guess-score {

        margin-top: 18px;

        font-size: 48px;

        font-weight: 900;

        color: var(--green);
    }

    /*
    =====================================================
    STORES LOOP
    =====================================================
    */

    .stores-loop {

        overflow: hidden;

        position: relative;
    }

    .stores-track {

        display: flex;

        gap: 24px;

        width: max-content;

        animation: storesLoop 30s linear infinite;
    }

    .stores-loop:hover .stores-track {

        animation-play-state: paused;
    }

    @keyframes storesLoop {

        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .store-card {

        min-width: 260px;

        max-width: 260px;

        padding: 28px;

        border-radius: 28px;

        background:
            rgba(255, 255, 255, .04);

        border: 1px solid rgba(255, 255, 255, .08);

        text-align: center;
    }

    .store-logo {

        width: 100px;
        height: 100px;

        margin: auto auto 18px;

        border-radius: 24px;

        overflow: hidden;

        background:
            rgba(255, 255, 255, .06);

        display: flex;

        align-items: center;

        justify-content: center;
    }

    .store-logo img {

        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .store-card h3 {

        font-size: 22px;

        margin-bottom: 12px;
    }

    .store-card p {

        color: var(--muted);

        line-height: 1.7;
    }

    /*
    =====================================================
    CTA
    =====================================================
    */

    .cta {

        position: relative;

        overflow: hidden;

        padding: 80px 40px;

        border-radius: 40px;

        text-align: center;

        background:
            linear-gradient(135deg,
                rgba(0, 255, 170, .12),
                rgba(0, 194, 255, .12));

        border: 1px solid rgba(255, 255, 255, .08);

        margin-bottom: 120px;
    }

    .cta h2 {

        font-size: clamp(40px, 6vw, 80px);

        margin-bottom: 20px;

        font-weight: 900;
    }

    .cta p {

        max-width: 850px;

        margin: auto auto 34px;

        color: #CBD5E1;

        line-height: 1.9;

        font-size: 18px;
    }

    /*
    =====================================================
    FOOTER
    =====================================================
    */

    .footer {

        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 999;

        backdrop-filter: blur(18px);

        background:
            rgba(2, 6, 23, .92);

        border-top:
            1px solid rgba(255, 255, 255, .08);

        padding: 14px 20px;

        display: flex;

        align-items: center;

        justify-content: center;

        text-align: center;
    }

    .footer p {

        font-size: 14px;

        color: #CBD5E1;

        line-height: 1.7;
    }

    .footer strong {

        color: var(--green);
    }

    /*
    =====================================================
    RESPONSIVO
    =====================================================
    */

    @media(max-width:992px) {

        .hero-grid {
            grid-template-columns: 1fr;
        }
    }

    @media(max-width:768px) {

        .wrapper {
            padding: 18px;
        }

        .hero {
            padding: 34px 24px;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }

        .section-header h2 {
            font-size: 34px;
        }

        .teams {
            grid-template-columns: 1fr;
        }

        .vs {
            display: none;
        }

        .team-logo {
            width: 74px;
            height: 74px;
        }

        .prize {
            height: 190px;
        }

        .countdown {
            font-size: 24px;
        }

        .guess-card {
            min-width: 280px;
        }
    }
    
    .status{
    display:inline-block;
    margin-left:10px;
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:900;
}

.status.live{
    background:rgba(0,255,170,.2);
    color:#00FFAA;
}

.status.finished{
    background:rgba(255,80,80,.2);
    color:#ff5555;
}

.status.upcoming{
    background:rgba(255,255,255,.08);
    color:#94A3B8;
}

.live-pulse{
    box-shadow:0 0 40px rgba(0,255,170,.15);
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.01);}
    100%{transform:scale(1);}
}

.live-score{
    font-size:26px;
    font-weight:900;
    color:#00FFAA;
}