*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050805;
    color:#fff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* TOP MARQUEE */

.top-marquee{
    background:#080d08;
    border-top:2px solid #7CFF00;
    border-bottom:2px solid #7CFF00;
    overflow:hidden;
    white-space:nowrap;
    padding:14px 0;
    box-shadow:0 0 20px rgba(124,255,0,.12);
}

.marquee-content{
    display:inline-block;
    padding-left:100%;
    font-size:18px;
    font-weight:700;
    color:#7CFF00;
    animation:marquee 18s linear infinite;
}

@keyframes marquee{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}

/* HERO */

.hero{
    position:relative;
    background:
        linear-gradient(rgba(5,8,5,.88),rgba(5,8,5,.96)),
        url("banner.jpg") center/cover no-repeat;
    padding:70px 20px;
    text-align:center;
}

.logo img{
    width:220px;
    max-width:90%;
    margin-bottom:25px;
    filter:drop-shadow(0 0 18px rgba(124,255,0,.35));
    border-radius: 20%;
}

.hero h1{
    font-size:60px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:20px;
    color:#fff;
}

.hero h1 span{
    display:block;
    color:#7CFF00;
    text-shadow:0 0 20px rgba(124,255,0,.35);
}

.hero p{
    font-size:20px;
    max-width:700px;
    margin:auto;
    line-height:1.7;
    color:#b8c2b8;
}

.trust{
    display:inline-block;
    margin-top:30px;
    padding:14px 35px;
    background:#0b110b;
    border:1px solid #7CFF00;
    border-radius:50px;
    font-weight:700;
    font-size:18px;
    color:#fff;
    box-shadow:0 5px 25px rgba(124,255,0,.12);
}

/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:45px;
}

.feature{
    background:#0a100a;
    padding:30px;
    border-radius:18px;
    transition:.35s;
    border:1px solid rgba(124,255,0,.20);
    box-shadow:0 8px 30px rgba(0,0,0,.35);
}

.feature:hover{
    transform:translateY(-8px);
    border-color:#7CFF00;
    box-shadow:
        0 15px 40px rgba(0,0,0,.45),
        0 0 25px rgba(124,255,0,.12);
}

.icon{
    font-size:40px;
    margin-bottom:12px;
}

.feature h3{
    font-size:18px;
    color:#fff;
}

/* STATS */

.stats{
    display:flex;
    justify-content:center;
    gap:35px;
    margin-top:55px;
    flex-wrap:wrap;
}

.stats div{
    background:#0a100a;
    padding:25px;
    width:180px;
    border-radius:16px;
    border:1px solid rgba(124,255,0,.20);
    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.stats h2{
    font-size:42px;
    color:#7CFF00;
    margin-bottom:10px;
    text-shadow:0 0 15px rgba(124,255,0,.25);
}

.stats p{
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#9ca89c;
}

/* BUTTONS */

.buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:18px 40px;
    border-radius:60px;
    font-size:18px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
}

/* MAIN GREEN BUTTON */

.red{
    background:linear-gradient(135deg,#7CFF00,#39B900);
    color:#071007;
    box-shadow:0 8px 25px rgba(124,255,0,.25);
}

.red:hover{
    background:linear-gradient(135deg,#9CFF33,#7CFF00);
    transform:translateY(-5px);
    box-shadow:0 12px 35px rgba(124,255,0,.35);
}

/* OUTLINE BUTTON */

.border{
    border:2px solid #7CFF00;
    color:#7CFF00;
    background:#080d08;
}

.border:hover{
    background:#7CFF00;
    color:#071007;
    box-shadow:0 8px 25px rgba(124,255,0,.25);
}

/* RATES / CARD */

.rates{
    padding:70px 20px;
    background:#050805;
}

.card{
    background:#0a100a;
    max-width:900px;
    margin:auto;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(124,255,0,.22);
    box-shadow:0 20px 45px rgba(0,0,0,.45);
}

.card h2{
    text-align:center;
    margin-bottom:30px;
    color:#7CFF00;
    font-size:34px;
    text-shadow:0 0 15px rgba(124,255,0,.25);
}

.rate{
    display:flex;
    justify-content:space-between;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:18px;
    color:#d5ddd5;
}

.rate strong{
    color:#7CFF00;
}

.rate:last-child{
    border:none;
}

/* WINNER */

.winner{
    margin:50px auto;
    width:90%;
    max-width:900px;
    padding:45px;
    border-radius:20px;
    background:linear-gradient(135deg,#183300,#0b1705);
    border:1px solid #7CFF00;
    text-align:center;
    color:#fff;
    box-shadow:
        0 15px 35px rgba(0,0,0,.45),
        0 0 30px rgba(124,255,0,.12);
}

.winner h2{
    font-size:38px;
    margin-bottom:15px;
    color:#7CFF00;
}

.winner p{
    font-size:20px;
    color:#d5ddd5;
}

/* WHY */

.why{
    padding:60px 20px;
    background:#050805;
}

.why ul{
    list-style:none;
}

.why li{
    padding:18px;
    font-size:20px;
    color:#d5ddd5;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.why li::before{
    content:"✓";
    color:#7CFF00;
    font-weight:bold;
    margin-right:12px;
}

/* FIXED DOWNLOAD */

.fixed-download{
    position:fixed;
    left:50%;
    transform:translateX(-50%);
    bottom:18px;
    width:92%;
    max-width:520px;
    background:#7CFF00;
    padding:18px;
    text-align:center;
    text-decoration:none;
    color:#071007;
    font-size:22px;
    font-weight:700;
    border-radius:50px;
    box-shadow:0 15px 35px rgba(124,255,0,.30);
    z-index:999;
    transition:.3s;
}

.fixed-download:hover{
    background:#9CFF33;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:100px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    color:#fff;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.40);
}

/* FOOTER */

footer{
    margin-top:80px;
    background:#080d08;
    padding:30px;
    text-align:center;
    font-size:16px;
    color:#7f897f;
    border-top:1px solid rgba(124,255,0,.20);
}

/* DOWNLOAD FIXED BUTTON */

.download-fixed-btn{
    position:fixed;
    left:50%;
    bottom:15px;
    transform:translateX(-50%);
    width:92%;
    max-width:500px;
    height:60px;
    background:linear-gradient(135deg,#7CFF00,#39B900);
    color:#071007;
    text-decoration:none;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-size:20px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 8px 30px rgba(124,255,0,.35);
    z-index:999999;
    transition:.3s ease;
    animation:pulse 2s infinite;
}

.download-fixed-btn:hover{
    transform:translateX(-50%) translateY(-3px);
    background:linear-gradient(135deg,#9CFF33,#7CFF00);
    box-shadow:0 12px 35px rgba(124,255,0,.45);
}

.download-fixed-btn span{
    font-size:24px;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(124,255,0,.55);
    }

    70%{
        box-shadow:0 0 0 18px rgba(124,255,0,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(124,255,0,0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        padding:50px 20px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

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

    .stats{
        flex-direction:column;
        align-items:center;
    }

    .stats div{
        width:100%;
        max-width:320px;
    }

    .buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        max-width:320px;
        margin:auto;
        text-align:center;
    }

    .card{
        padding:25px;
    }

    .rate{
        font-size:15px;
    }

    .winner h2{
        font-size:30px;
    }

    .winner p{
        font-size:17px;
    }

    .fixed-download{
        font-size:18px;
    }

    .download-fixed-btn{
        width:94%;
        height:58px;
        font-size:18px;
    }

    .download-fixed-btn span{
        font-size:22px;
    }
}