
/* ==========================
RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

/* ==========================
CONTAINER
========================== */

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

/* ==========================
BACKGROUND GLOW
========================== */

.bg-glow{
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
}

.glow-1{
    width:350px;
    height:350px;
    background:#ffb300;
    top:-120px;
    left:-100px;
    opacity:.18;
}

.glow-2{
    width:450px;
    height:450px;
    background:#ffd700;
    bottom:-150px;
    right:-100px;
    opacity:.12;
}

/* ==========================
NAVBAR
========================== */

.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(0,0,0,.55);
    border-bottom:1px solid rgba(255,215,0,.15);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:32px;
    font-weight:800;
}

.logo span{
    color:#ffd700;
}

.nav-menu{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-menu a{
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.nav-menu a:hover{
    color:#ffd700;
}

/* ==========================
BUTTONS
========================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-gold{
    background:linear-gradient(
    135deg,
    #ffd700,
    #ffb300
    );
    color:#000;
    box-shadow:
    0 0 25px rgba(255,215,0,.35);
}

.btn-gold:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:1px solid #ffd700;
    color:#ffd700;
}

.btn-outline:hover{
    background:#ffd700;
    color:#000;
}

/* ==========================
HERO
========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border:1px solid rgba(255,215,0,.3);
    background:rgba(255,215,0,.08);
    border-radius:50px;
    margin-bottom:25px;
    color:#ffd700;
}

.hero h1{
    font-size:80px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.hero h1 span{
    color:#ffd700;
}

.hero p{
    font-size:18px;
    color:#bdbdbd;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.hero-features{
    display:flex;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#ddd;
}

.feature-item i{
    color:#ffd700;
}

/* ==========================
COIN
========================== */

.coin-wrapper{
    position:relative;
    width:420px;
    height:420px;
    margin:auto;
}

.coin-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:3px solid rgba(255,215,0,.3);
}

.coin{
    position:absolute;
    inset:50px;
    border-radius:50%;
    background:
    linear-gradient(
    135deg,
    #ffd700,
    #ffb300
    );
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
    0 0 80px rgba(255,215,0,.5);
}

.coin span{
    font-size:100px;
    color:#000;
    font-weight:800;
}

/* ==========================
SECTION TITLE
========================== */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#ffd700;
    letter-spacing:3px;
}

.section-title h2{
    font-size:52px;
    margin-top:15px;
}

/* ==========================
STATS
========================== */

.stats{
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    padding:35px;
    text-align:center;
    border-radius:24px;
    background:
    rgba(255,255,255,.03);
    border:
    1px solid rgba(255,215,0,.15);
}

.stat-card h2{
    font-size:42px;
    color:#ffd700;
}

.stat-card p{
    margin-top:10px;
    color:#aaa;
}

/* ==========================
ABOUT
========================== */

.about{
    padding:120px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.about-card{
    padding:35px;
    border-radius:24px;
    background:
    rgba(255,255,255,.03);
    border:
    1px solid rgba(255,215,0,.12);
    transition:.35s;
}

.about-card:hover{
    transform:translateY(-10px);
    border-color:#ffd700;
}

.about-card i{
    font-size:45px;
    color:#ffd700;
    margin-bottom:20px;
}

.about-card h3{
    margin-bottom:15px;
}

.about-card p{
    color:#bdbdbd;
    line-height:1.8;
}

/* ==========================
EARNING
========================== */

.earning{
    padding:120px 0;
}

.earning-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.earning-card{
    padding:35px;
    border-radius:24px;
    background:
    rgba(255,255,255,.03);
    border:
    1px solid rgba(255,215,0,.15);
    transition:.35s;
}

.earning-card:hover{
    transform:translateY(-10px);
}

.earning-card .icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:
    linear-gradient(
    135deg,
    #ffd700,
    #ffb300
    );
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.earning-card .icon i{
    font-size:32px;
    color:#000;
}

.earning-card h3{
    margin-bottom:15px;
}

.earning-card p{
    color:#bdbdbd;
    line-height:1.8;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

    .hero-wrapper,
    .about-grid,
    .earning-grid,
    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

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

}

@media(max-width:768px){

    .nav-menu{
        display:none;
    }

    .hero-wrapper,
    .about-grid,
    .earning-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

    .coin-wrapper{
        width:300px;
        height:300px;
    }

    .coin span{
        font-size:70px;
    }

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

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

}









.mouse-glow{
    position:fixed;
    width:300px;
    height:300px;
    background:radial-gradient(
        rgba(255,215,0,.12),
        transparent 70%
    );
    border-radius:50%;
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:-1;
}



/* ==========================
FOOTER
========================== */

.footer{
    padding:80px 0 30px;
    border-top:1px solid rgba(255,215,0,.15);
    background:rgba(255,255,255,.02);
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    margin-bottom:50px;
}

.footer-logo{
    font-size:36px;
    font-weight:800;
    margin-bottom:20px;
}

.footer-logo span{
    color:#ffd700;
}

.footer-about p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-links h3,
.footer-contact h3{
    margin-bottom:20px;
    color:#ffd700;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffd700;
}

.footer-contact p{
    color:#bdbdbd;
    margin-bottom:15px;
}

.footer-contact i{
    color:#ffd700;
    margin-right:10px;
}

.social-links{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#ffd700;
    border:1px solid rgba(255,215,0,.25);
    transition:.3s;
}

.social-links a:hover{
    background:#ffd700;
    color:#000;
}

.footer-bottom{
    border-top:1px solid rgba(255,215,0,.1);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#999;
}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}