body{
    margin:0;
    font-family:Arial;
    background:#0f172a;
    color:white;
    text-align:center;
}

/* CONTAINER */
.container{
    padding:20px;
    max-width:400px;
    margin:auto;
}

/* LOGO */
.logo{
    width:100px;
    border-radius:50%;
    margin-top:10px;
}

/* HEADING */
h1{
    color:#22c55e;
}

/* CONTENT */
.content{
    font-size:14px;
    margin-bottom:15px;
}

/* RESULT BOX */
.result-box{
    background:#111827;
    padding:12px;
    border-radius:8px;
    margin-top:10px;
    font-size:14px;
    animation: fade 0.5s;
}

/* MAIN BUTTON */
.main-btn{
    background:#22c55e;
    border:none;
    padding:14px;
    width:90%;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
    margin:20px 0;
}

/* SLIDER */
.slider{
    width:100%;
    max-width:300px;
    margin:auto;
}

.slide{
    width:100%;
    height:auto;
    border-radius:10px;
    display:none;
}

/* TRUST TEXT */
.trust{
    font-size:13px;
    color:#facc15;
    margin-top:10px;
}

/* STICKY BUTTON */
.sticky{
    position:fixed;
    bottom:0;
    width:100%;
    background:#111827;
    padding:10px;
}

.sticky button{
    width:90%;
    padding:12px;
    background:#22c55e;
    border:none;
    border-radius:8px;
    font-size:16px;
}

/* HIGHLIGHT TEXT (FINAL CLEAN VERSION) */
.highlight{
    font-size:16px;
    font-weight:bold;
    color:white;
    background:#ff3b3b;
    padding:10px;
    border-radius:8px;
    margin:15px 0;
    animation:pulse 1s infinite;
}

/* ANIMATIONS */
@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.05);}
    100%{transform:scale(1);}
}

@keyframes fade{
    from{opacity:0;}
    to{opacity:1;}
}
.counter{
    font-size:14px;
    color:#22c55e;
    margin-bottom:10px;
}
.popup{
    position:fixed;
    bottom:80px;
    left:10px;
    background:#111827;
    padding:10px;
    border-radius:8px;
    font-size:12px;
    display:none;
}