/* =========================================
   LOTUS TOKEN - Premium Style
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0a0a0a;
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
    color:#fff;
}

img{
    max-width:100%;
    display:block;
}

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

/* ================= HEADER ================= */

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

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#FFD700;
    font-size:28px;
    font-weight:700;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

#navbar{
    display:flex;
    align-items:center;
    gap:25px;
}

#navbar a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

#navbar a:hover,
#navbar a.active{
    color:#FFD700;
}

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.wallet-btn{
    background:#FFD700;
    color:#000;
    border:none;
    padding:12px 22px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.wallet-btn:hover{
    transform:translateY(-2px);
    background:#fff;
}

.mobile-btn{
    display:none;
    background:none;
    border:none;
    color:#FFD700;
    font-size:32px;
    cursor:pointer;
}

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

.btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-primary{
    background:#FFD700;
    color:#000;
}

.btn-primary:hover{
    background:#fff;
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #FFD700;
    color:#FFD700;
}

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

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

.hero{
    padding:170px 0 100px;
}

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

.hero-left h1{
    font-size:62px;
    line-height:1.1;
    margin:20px 0;
}

.hero-left h1 span{
    color:#FFD700;
}

.hero-left p{
    color:#bbb;
    margin-bottom:35px;
}

.badge{
    display:inline-block;
    background:#1c1c1c;
    color:#FFD700;
    border:1px solid #FFD700;
    padding:8px 18px;
    border-radius:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.hero-right img{
    animation:float 4s infinite ease-in-out;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-18px);}
    100%{transform:translateY(0);}
}

/* ================= CONTRACT ================= */

.contract-box{
    margin-top:30px;
}

.copy-box{
    display:flex;
    margin-top:10px;
}

.copy-box input{
    flex:1;
    background:#151515;
    border:none;
    color:#fff;
    padding:15px;
    border-radius:8px 0 0 8px;
}

.copy-box button{
    background:#FFD700;
    color:#000;
    border:none;
    padding:15px 24px;
    cursor:pointer;
    border-radius:0 8px 8px 0;
}

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

.stats{
    padding:80px 0;
}

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

.stat-card{
    background:#141414;
    border:1px solid rgba(255,215,0,.2);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#FFD700;
}

.stat-card h2{
    color:#FFD700;
    font-size:40px;
    margin-bottom:12px;
}

/* ================= SECTIONS ================= */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
    color:#FFD700;
}

/* ================= FEATURES ================= */

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

.feature-card{
    background:#141414;
    padding:30px;
    border-radius:18px;
    transition:.3s;
    border:1px solid transparent;
}

.feature-card:hover{
    border-color:#FFD700;
    transform:translateY(-8px);
}

.feature-card h3{
    color:#FFD700;
    margin-bottom:15px;
}

/* ================= TOKENOMICS ================= */

table{
    width:100%;
    border-collapse:collapse;
}

table td{
    padding:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

table tr:hover{
    background:#141414;
}

/* ================= ROADMAP ================= */

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

.timeline div{
    background:#141414;
    padding:30px;
    border-radius:18px;
    border-top:4px solid #FFD700;
}

.timeline h3{
    color:#FFD700;
    margin-bottom:15px;
}

/* ================= CTA ================= */

.cta{
    text-align:center;
    background:linear-gradient(90deg,#111,#1a1a1a);
}

.cta h2{
    margin-bottom:35px;
}

/* ===== Footer ===== */

.footer{
    background:#0b0b0b;
    padding:70px 0 25px;
    border-top:1px solid rgba(255,215,0,.15);
}

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

.footer-logo{
    width:70px;
    margin-bottom:15px;
}

.footer h3,
.footer h4{
    color:#FFD700;
    margin-bottom:15px;
}

.footer ul{
    list-style:none;
}

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

.footer ul li a{
    color:#ccc;
}

.footer ul li a:hover{
    color:#FFD700;
}

.contract-footer{
    display:flex;
    gap:10px;
}

.contract-footer input{
    flex:1;
    background:#111;
    color:#fff;
    border:1px solid #333;
    padding:10px;
    border-radius:8px;
}

.contract-footer button{
    background:#FFD700;
    color:#000;
    border:none;
    padding:10px 16px;
    border-radius:8px;
    cursor:pointer;
}

.footer-bottom{
    margin-top:30px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    color:#ccc;
}

.social-links a:hover{
    color:#FFD700;
}

#scrollTop{
    position:fixed;
    right:20px;
    bottom:20px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#FFD700;
    color:#000;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:9999;
}

@media(max-width:768px){

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

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

.contract-footer{
    flex-direction:column;
}

.social-links{
    justify-content:center;
    flex-wrap:wrap;
}

}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#FFD700;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#111;
}
/* ===== Contact Form ===== */

.contact-form{

    max-width:700px;
    margin:40px auto;

    display:flex;
    flex-direction:column;
    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:16px;

    background:#141414;
    border:1px solid rgba(255,215,0,.2);

    color:#fff;

    border-radius:12px;

    font-family:Poppins,sans-serif;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#FFD700;

}

.contact-form button{

    align-self:flex-start;

}
/* ================= ANIMATION ================= */

.hero-left,
.hero-right,
.stat-card,
.feature-card,
.timeline div{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}