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

        body{
            background:#0f172a;
            color:white;
            overflow-x:hidden;
        }

        a{
            text-decoration:none;
        }

        section{
            padding:100px 0;
            border-bottom:1px solid rgba(255,255,255,0.05);
        }

        .section-placeholder{
            min-height:300px;
            border:2px dashed rgba(255,255,255,0.1);
            border-radius:24px;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#64748b;
            font-size:28px;
            font-weight:600;
        }

        footer{
            padding:80px 0;
        }
        /* =========================
    HERO SECTION
========================= */

.hero-section{
    position:relative;
    overflow:hidden;
    padding:80px 0;
}

/* Badge */

.hero-badge{
    background:rgba(34,197,94,0.12);
    color:#4ade80;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
    border:1px solid rgba(74,222,128,0.2);
}

/* Title */

.hero-title{
    font-size:64px;
    font-weight:700;
    line-height:1.15;
    max-width:700px;
}

/* Subtitle */

.hero-subtitle{
    font-size:18px;
    line-height:1.8;
    color:#94a3b8;
    max-width:620px;
}

/* Buttons */

.hero-btn-primary{
    background:#4ade80;
    color:#04130a;
    padding:15px 30px;
    border-radius:16px;
    font-weight:600;
    border:none;
}

.hero-btn-primary:hover{
    background:#22c55e;
    color:#04130a;
}

.hero-btn-secondary{
    border:1px solid rgba(255,255,255,0.1);
    color:white;
    padding:15px 30px;
    border-radius:16px;
    font-weight:500;
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,0.05);
    color:white;
}

/* Stats */

.hero-stats{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.hero-stat-item h4{
    font-size:32px;
    font-weight:700;
    color:#4ade80;
}

.hero-stat-item p{
    color:#94a3b8;
    margin-top:5px;
}

/* Image */

.hero-image-wrapper{
    position:relative;
    display:inline-block;
}

.hero-phone{
    max-width:380px;
    position:relative;
    z-index:2;
}

/* Floating Cards */

.floating-card{
    position:absolute;
    background:#111827;
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 20px;
    border-radius:18px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    z-index:3;
}

.floating-card-1{
    top:15%;
    left:-40px;
}

.floating-card-2{
    bottom:25%;
    right:-30px;
}

.floating-card-3{
    bottom:5%;
    left:-20px;
}

/* Mobile */

@media(max-width:991px){

    .hero-section{
        text-align:center;
        padding-top:40px;
    }

    .hero-title{
        font-size:42px;
        margin:auto;
    }

    .hero-subtitle{
        margin:auto;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .hero-btn-secondary{
        margin-left:0 !important;
    }

    .hero-stats{
        justify-content:center;
        gap:30px;
    }

    .hero-phone{
        max-width:280px;
    }

    .floating-card{
        font-size:14px;
        padding:10px 14px;
    }

    .floating-card-1{
        left:-10px;
    }

    .floating-card-2{
        right:-10px;
    }

}
/* =========================
    PARTNERS SECTION
========================= */

.partners-section{
    position:relative;
}

/* Tag */

.section-tag{
    background:rgba(255,255,255,0.05);
    color:#4ade80;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

/* Common Heading */

.section-title{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
}

.section-subtitle{
    color:#94a3b8;
    font-size:17px;
    line-height:1.8;
    max-width:760px;
    margin:auto;
}

/* Partner Wrapper */

.partners-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* Partner Card */

.partner-card{
    background:#111827;
    border-radius:24px;
    padding:40px 30px;
    min-height:150px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,0.05);

    transition:0.3s ease;
}

.partner-card:hover{
    transform:translateY(-6px);
    border-color:rgba(74,222,128,0.35);
}

/* Logo */

.partner-card img{
    max-width:160px;
    max-height:50px;
    object-fit:contain;
    opacity:0.85;
    transition:0.3s ease;
}

.partner-card:hover img{
    opacity:1;
}

/* Mobile */

@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .partners-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .partners-wrapper{
        grid-template-columns:1fr;
    }

}
/* =========================
    HOW IT WORKS
========================= */

.how-section{
    position:relative;
}

.step-card{

    height:100%;
    background:#111827;

    padding:35px 30px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,0.05);

    transition:0.3s ease;
}

.step-card:hover{

    transform:translateY(-6px);

    border-color:rgba(74,222,128,0.35);
}

.step-number{

    width:60px;
    height:60px;

    border-radius:18px;

    background:rgba(74,222,128,0.12);

    color:#4ade80;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:20px;

    margin-bottom:25px;
}

.step-card h4{

    font-size:24px;
    font-weight:600;

    margin-bottom:15px;
}

.step-card p{

    color:#94a3b8;
    line-height:1.8;
    margin:0;
}
/* =========================
    WAYS TO EARN
========================= */

.earn-section{
    position:relative;
}

.earn-card{

    background:#111827;

    height:100%;

    padding:35px 30px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,0.05);

    transition:0.3s ease;
}

.earn-card:hover{

    transform:translateY(-6px);

    border-color:rgba(74,222,128,0.35);
}

.earn-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:rgba(74,222,128,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:25px;
}

.earn-card h4{

    font-size:24px;
    font-weight:600;

    margin-bottom:15px;
}

.earn-card p{

    color:#94a3b8;
    line-height:1.8;
    margin:0;
}
/* =========================
    GAMES SECTION
========================= */

.games-section{
    position:relative;
}

.game-card{

    background:#111827;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.05);

    transition:0.3s ease;

    height:100%;
}

.game-card:hover{

    transform:translateY(-8px);

    border-color:rgba(74,222,128,0.35);
}

.game-image{

    width:100%;
    height:240px;

    object-fit:cover;
}

.game-content{

    padding:30px;
}

.game-content h4{

    font-size:24px;
    font-weight:600;

    margin-bottom:15px;
}

.game-content p{

    color:#94a3b8;
    line-height:1.8;
    margin:0;
}
/* =========================
    REWARDS SECTION
========================= */

.reward-card{

    background:#111827;

    border-radius:24px;

    padding:35px 20px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.05);

    transition:0.3s ease;

    height:100%;
}

.reward-card:hover{

    transform:translateY(-6px);

    border-color:rgba(74,222,128,0.35);
}

.reward-icon{

    font-size:42px;

    margin-bottom:20px;
}

.reward-card h5{

    font-size:20px;

    font-weight:600;

    margin:0;
}
/* =========================
    REFER & EARN
========================= */

.refer-section{
    position:relative;
}

.refer-benefits{

    margin-top:30px;

    padding-left:20px;
}

.refer-benefits li{

    color:#cbd5e1;

    margin-bottom:15px;

    line-height:1.8;
}

.refer-image{

    max-width:500px;
}
/* =========================
    TESTIMONIALS
========================= */

.testimonials-section{
    position:relative;
}

.testimonial-card{

    background:#111827;

    padding:35px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,0.05);

    height:100%;

    transition:0.3s ease;
}

.testimonial-card:hover{

    transform:translateY(-6px);

    border-color:rgba(74,222,128,0.35);
}

.testimonial-rating{

    font-size:20px;

    margin-bottom:20px;
}

.testimonial-text{

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:30px;
}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;
}

.user-avatar{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#4ade80;

    color:#04130a;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;
}

.testimonial-user h6{

    margin:0;

    font-size:16px;

    font-weight:600;
}

.testimonial-user span{

    color:#94a3b8;

    font-size:14px;
}
/* FAQ */

.accordion-item{
    background:#111827;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:18px !important;
    overflow:hidden;
}

.accordion-button{
    background:#111827;
    color:white;
    padding:22px;
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#111827;
    color:#4ade80;
    box-shadow:none;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    color:#94a3b8;
    background:#111827;
    line-height:1.8;
}

/* CTA */

.cta-box{

    background:#111827;

    border-radius:32px;

    padding:80px 40px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.05);
}

.cta-box h2{

    font-size:52px;

    font-weight:700;

    margin-bottom:20px;
}

.cta-box p{

    color:#94a3b8;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

/* FOOTER */

.footer-section{

    background:#0b1220;

    padding:80px 0 30px;
}

.footer-logo{

    font-size:32px;

    font-weight:700;
}

.footer-about{

    color:#94a3b8;

    line-height:1.8;

    margin-top:20px;
}

.footer-section h5{

    margin-bottom:20px;

    font-weight:600;
}

.footer-section a{

    display:block;

    color:#94a3b8;

    margin-bottom:12px;

    transition:0.3s;
}

.footer-section a:hover{

    color:#4ade80;
}

.footer-bottom{

    text-align:center;

    color:#64748b;

    padding-top:10px;
}