*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050505;
    color:white;
    font-family:'Inter', sans-serif;
}

.hero{
    min-height:85vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding-top:120px;
}

.logo{
    font-size:18px;
    font-weight:700;
    color:white;
}

.logo span{
    color:#ff9800;
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-icon{
    width:34px;
    height:34px;

    border-radius:10px;

    background:#ff9800;

    color:black;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:700;
}

.badge {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;

    background:#111;
    border:1px solid #222;

    border-radius:50px;

    padding:10px 20px;

    color:#f5f4f4;
}

@keyframes ping{

    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:.8;
    }

    100%{
        transform:translate(-50%,-50%) scale(2.5);
        opacity:0;
    }

}

.live-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;

    position:relative;
}

.live-dot::after{
    content:"";

    position:absolute;

    top:50%;
    left:50%;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;

    transform:translate(-50%,-50%);

    animation:ping 1.8s infinite;
}

.badge svg{
    width:14px;
    height:14px;
}

.live-badge svg{
    color:#16c784;
    fill:#16c784;

    animation:pulse 1.5s infinite;
}

.buyer-badge svg{
    width:16px;
    height:16px;

    color:#05ff50;
}

.hero-badges{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;

    margin-bottom:35px;
}

.hero h1{
    font-size:60px;

    font-weight:800;

    max-width:1300px;

    line-height:.92;

    letter-spacing:-3px;
}

.hero h1 span{
    color:#ff9800;
}

.hero p{
    margin-top:25px;

    max-width:700px;

    color:#999;

    line-height:1.7;
}

.buttons{
    margin-top:40px;

    display:flex;

    gap:15px;
}

.buy-btn{
    background:linear-gradient(
        90deg,
        #ffb11f,
        #ff8c1a
    );

    color:black;

    border:none;

    padding:18px 38px;

    border-radius:18px;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.view-btn{
    background:#111;

    color:white;

    border:1px solid #222;

    padding:18px 38px;

    border-radius:18px;

    cursor:pointer;
}

.navbar{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 100px;

    background:rgba(5,5,5,.8);

    backdrop-filter:blur(20px);

    z-index:100;
}

.navbar a{
    color:#bbd0f5;

    text-decoration:none;

    transition:.3s;
}

.navbar a:hover{
    color:white;
}

.navbar ul li a{
    font-size:15px;
    font-weight:500;
}

.logo{
    font-weight:bold;
    color:white;
}

.navbar ul{
    display:flex;
    gap:30px;
    list-style:none;
    color:#999;
}

.start-btn{
    background:white;

    color:black;

    border:none;

    padding:14px 28px;

    border-radius:12px;

    font-weight:600;

    cursor:pointer;
}

.glow{
    position:fixed;

    width:700px;
    height:700px;

    background:#ff9900;

    border-radius:50%;

    filter:blur(250px);

    opacity:.15;

    top:-300px;

    left:50%;

    transform:translateX(-50%);

    pointer-events:none;

    z-index:-1;
}

.buy-btn{
    transition:.3s;
}

.buy-btn:hover{
    transform:translateY(-2px);
}

.trust{
    width:100%;
    max-width:1000px;

    margin:0 auto;

    padding:50px 20px 100px;
}

.trust-badges{
    display:flex;
    justify-content:center;
    gap:20px;

     font-size:14px;

    color:#7d8494;

    margin-bottom:60px;
}

.trust-badges span{
    display:flex;
    align-items:center;
    gap:8px;

    color:#7d8494;

    font-size:14px;
}

.trust-badges svg{
    width:16px;
    height:16px;
}

.trust-badges span:nth-child(1) svg{
    color:#f59e0b;
}

.trust-badges span:nth-child(2) svg{
    color:#3b82f6;
}

.trust-badges span:nth-child(3) svg{
    color:#22c55e;
}

.stats-grid{
    display:grid;

    grid-template-columns:
    repeat(4,220px);

    justify-content:center;

    gap:15px;
}

.stat-card{
    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    height:120px;

    padding:28px;

    position:relative;

    overflow:hidden;

    transition:.3s;
}

.stat-card h2{
    font-size:25px;
    font-weight:700;

    margin-bottom:14px;
}

.stat-card p{
    color:#6f7685;

    font-size:10px;

    letter-spacing:0.5px;

    text-transform:uppercase;
}

.stat-card:hover{
    border-color:#ff9900;

    transform:translateY(-3px);
}

.stat-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:#ff9900;

    border-radius:50%;

    filter:blur(70px);

    opacity:0;

    top:-80px;
    left:-80px;

    transition:.3s;
}

.stat-card:hover::before{
    opacity:.15;
}

.features{
    padding:115px 20px;

    text-align:center;
}

.features h2{
    font-size:48px;

    margin-bottom:15px;
}

.features p{
    color:#7d8494;
}

.features-grid{
    display:grid;

    grid-template-columns:
    repeat(4,250px);

    justify-content:center;

    gap:15px;

    margin-top:50px;
}

.feature-card{
    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    height:120px;

    padding:20px;

    text-align:left;

    position:relative;

    overflow:hidden;

    transition:.3s;
}

.feature-card:hover{
    border-color:#ff9900;

    transform:translateY(-3px);
}

.feature-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:#ff9900;

    border-radius:50%;

    filter:blur(70px);

    opacity:0;

    top:-80px;
    left:-80px;

    transition:.3s;
}

.feature-card:hover::before{
    opacity:.15;
}

.how-it-works{
    padding:100px 20px;
    text-align:center;
}

.how-it-works h2{
    font-size:50px;
    margin-bottom:10px;
}

.how-it-works p{
    color:#7d8494;
}

.steps{
    margin-top:50px;

    display:grid;

    grid-template-columns:
    repeat(4,220px);

    justify-content:center;

    gap:15px;
}

.step-card{
    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    padding:25px;

    text-align:left;

    position:relative;

    overflow:hidden;

    transition:.3s;
}

.step-card:hover{
    border-color:#ff9900;

    transform:translateY(-3px);
}

.step-number{
    width:40px;
    height:40px;

    background:#ff9900;

    color:black;

    font-weight:700;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.step-card h3{
    margin-bottom:10px;
}

.step-card p{
    color:#7d8494;
    line-height:1.5;
}

.pricing{
    padding:100px 20px;
    text-align:center;
}

.pricing h2{
    font-size:50px;
    margin-bottom:10px;
}

.pricing p{
    color:#7d8494;
    margin-bottom:40px;
}

.pricing-table{
    display:grid;

    grid-template-columns:
    repeat(4,220px);

    justify-content:center;

    gap:15px;
}

.price-item{
    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    height:120px;

    padding:15px;

    transition:.3s;

    position:relative;

    overflow:hidden;
}

.price-item span{
    display:block;
    color:#7d8494;
    margin-bottom:10px;
}

.price-item strong{
    font-size:24px;
    color:#fff;
}

.pricing-note{
    margin-top:20px;
    color:#7d8494;
}

.price-item:hover{
    border-color:#ff9900;

    transform:translateY(-3px);
}

.price-item::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:#ff9900;

    border-radius:50%;

    filter:blur(70px);

    opacity:0;

    top:-80px;
    left:-80px;

    transition:.3s;
}

.price-item:hover::before{
    opacity:.15;
}

.testimonials{
    padding:100px 0;

    overflow:hidden;
}

.testimonials h2{
    text-align:center;

    font-size:50px;

    margin-bottom:50px;
}

.testimonial-track{
    display:flex;

    gap:20px;

    width:max-content;

    animation:scrollLeft 25s linear infinite;
}

.testimonial-card{
    width:350px;

    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:25px;
}

.testimonial-card p{
    margin-top:15px;

    color:#c0c0c0;

    line-height:1.6;
}

.testimonial-subtitle{
    text-align:center;
    color:#7d8494;
    margin-top:15px;
    margin-bottom:40px;
}

.discord-join{
    display:flex;
    justify-content:center;

    margin-top:30px;
    margin-bottom:50px;
}

.discord-join a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 30px;

    background:rgba(88,101,242,.08);

    border:1px solid rgba(88,101,242,.35);

    border-radius:16px;

    color:#3c66ff;

    text-decoration:none;

    font-weight:600;
}

.discord-join a:hover{
    background:rgba(88,101,242,.15);

    transform:translateY(-2px);
}

.user{
    margin-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.verified{
    color:#00d084;
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

.faq{
    padding:100px 20px;
    text-align:center;
}

.faq h2{
    font-size:50px;
    margin-bottom:10px;
}

.faq p{
    color:#7d8494;
}

.faq-box{
    width:100%;
    max-width:900px;

    margin:50px auto 0;
}

.faq-box details{
    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:14px;

    margin-bottom:15px;

    overflow:hidden;
}

.faq-box summary{
    padding:22px 25px;

    cursor:pointer;

    text-align:left;

    font-weight:600;

    list-style:none;
}

.faq-box summary::-webkit-details-marker{
    display:none;
}

.faq-box details p{
    padding:0 25px 20px;

    text-align:left;

    color:#7d8494;
}

.footer{
    margin-top:100px;

    border-top:1px solid rgba(255,255,255,.05);

    padding:30px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#6f7685;

    font-size:13px;
}

.footer-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-logo{
    font-weight:700;
    color:white;
}

.footer-right{
    display:flex;
    gap:30px;
}

.footer-right a{
    color:#6f7685;
    text-decoration:none;

    transition:.3s;
}

.footer-right a:hover{
    color:white;
}

.terms-page{
    padding:120px 20px 60px;
}

.terms-card{
    max-width:900px;

    margin:auto;

    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:50px;
}

.terms-card h1{
    text-align:center;

    font-size:48px;

    margin-bottom:20px;
}

.terms-card h2{
    margin-top:35px;
    margin-bottom:15px;

    color:#ff9800;
}

.terms-card p,
.terms-card li{
    color:#a0a0a0;

    line-height:1.8;
}

.terms-card ol{
    padding-left:25px;
}

.terms-card ul{
    padding-left:20px;
}

.back-btn{
    color:white;
    text-decoration:none;
}

a{
    color:#f1f1f2;
    text-decoration:underline;
}


a:hover{
    color:#ff9800;
}

body{
    background:#050505;
    color:white;
    font-family:'Inter',sans-serif;
}

.policy-header{
    max-width:1200px;
    margin:auto;

    padding:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.back-btn{
    color:#999;
    text-decoration:none;
}

.policy-box{
    max-width:900px;

    margin:auto;

    background:#090909;

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:50px;
}

.policy-box h1{
    text-align:center;

    font-size:48px;

    margin-bottom:20px;
}

.subtitle{
    text-align:left;

    color:#7d8494;

    margin-bottom:50px;
}

.policy-box h2{
    margin-top:35px;
    margin-bottom:15px;

    color:#ff9800;
}

.policy-box p,
.policy-box li{
    color:#a0a0a0;

    line-height:1.8;
}

.policy-box ul{
    padding-left:25px;
}

.refund-warning{
    margin:30px 0;

    padding:25px;

    border:1px solid #ff5d5d;

    border-radius:15px;

    background:rgba(255,93,93,.08);
}

.refund-warning h3{
    color:#ff7b7b;

    margin-bottom:10px;
}

.refund-warning p{
    color:#d0d0d0;
}