/* =========================================
   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;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,215,0,.15);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#FFD700;
}

nav{
    display:flex;
    gap:22px;
    align-items:center;
}

nav a{
    transition:.3s;
}

nav a:hover{
    color:#FFD700;
}

/* ================= 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{
    padding:35px 0;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#999;
}

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

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

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

::-webkit-scrollbar-track{
    background:#111;
}

/* ================= 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);
    }
}