:root{
    --gold:#FFD700;
    --gold-dark:#e6b800;
    --black:#050505;
    --card:#111111;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* LOADER */

#loader{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:.5s;
}

.spinner{
    width:60px;
    height:60px;
    border:5px solid rgba(255,215,0,.2);
    border-top:5px solid var(--gold);
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid var(--gold);
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--gold);
}

/* HAMBURGER */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:white;
}

/* MOBILE MENU */

.mobile-menu{
    position:fixed;
    top:95px;
    right:-100%;
    width:280px;
    background:#111;
    border:1px solid rgba(255,215,0,.25);
    border-radius:15px;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:20px;
    transition:.4s;
    z-index:999;
}

.mobile-menu.active{
    right:20px;
}

.mobile-menu a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:130px 20px 60px;
    position:relative;

    background:
    radial-gradient(circle at top,
    rgba(255,215,0,.18),
    transparent 35%),
    #000;
}

.hero-content{
    max-width:900px;
}

.hero-title{
    color:var(--gold);
    font-weight:800;
    letter-spacing:8px;
    margin-bottom:20px;
}

.hero-logo{
    width:190px;
    border-radius:50%;
    border:4px solid var(--gold);
    box-shadow:0 0 40px rgba(255,215,0,.5);
    animation:floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

.hero h1{
    font-size:4rem;
    margin-top:30px;
    line-height:1.1;
}

.hero-subtitle{
    font-size:1.5rem;
    color:#ddd;
    margin-top:15px;
}

.primary-btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    background:var(--gold);
    color:black;
    font-weight:700;
    transition:.3s;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

/* FLOATING ICONS */

.floating{
    position:absolute;
    font-size:2.5rem;
}

.smile{
    top:20%;
    left:10%;
    animation:float1 6s infinite ease-in-out;
}

.rocket{
    top:20%;
    right:10%;
    animation:float2 6s infinite ease-in-out;
}

.star{
    bottom:25%;
    left:18%;
    animation:float3 7s infinite ease-in-out;
}

.money{
    bottom:25%;
    right:18%;
    animation:float4 7s infinite ease-in-out;
}

@keyframes float1{
    50%{transform:translateY(-20px);}
}

@keyframes float2{
    50%{transform:translateY(20px);}
}

@keyframes float3{
    50%{transform:translateY(-15px);}
}

@keyframes float4{
    50%{transform:translateY(15px);}
}

/* SECTIONS */

.section{
    padding:100px 20px;
}

.container{
    max-width:1100px;
    margin:auto;
}

.section h2{
    text-align:center;
    color:var(--gold);
    margin-bottom:35px;
    font-size:2.5rem;
}

.glass-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,215,0,.2);
    border-radius:20px;
    padding:35px;
}

.glass-card p{
    text-align:center;
    line-height:1.9;
    margin-bottom:15px;
}

.motto{
    text-align:center;
    color:var(--gold);
    margin-top:20px;
}

/* TOKENOMICS */

.token-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.token-card{
    background:#111;
    border:1px solid rgba(255,215,0,.3);
    border-radius:20px;
    padding:40px;
    text-align:center;
    transition:.3s;
}

.token-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}

.token-card h3{
    margin-bottom:15px;
}

.token-card span{
    font-size:2rem;
    font-weight:800;
    color:var(--gold);
    display:block;
    margin-bottom:10px;
}

/* CONTRACT */

.contract-card{
    background:#111;
    border:1px solid rgba(255,215,0,.3);
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.contract-card code{
    display:block;
    font-size:1.1rem;
    color:var(--gold);
    word-break:break-all;
    margin-bottom:25px;
}

#copyBtn{
    border:none;
    background:var(--gold);
    color:black;
    font-weight:700;
    padding:14px 28px;
    border-radius:12px;
    cursor:pointer;
}

/* ROADMAP */

.roadmap-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.roadmap-card{
    background:#111;
    border:1px solid rgba(255,215,0,.25);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.roadmap-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 0 20px rgba(255,215,0,.15);
}

.phase-icon{
    font-size:2rem;
    margin-bottom:15px;
}

.roadmap-card h3{
    color:var(--gold);
    margin-bottom:15px;
}

.roadmap-card p{
    line-height:1.7;
}

/* COMMUNITY */

.community-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.community-card{
    background:#111;
    border:1px solid rgba(255,215,0,.25);
    border-radius:20px;
    padding:35px;
    text-align:center;
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
}

.community-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}

/* FOOTER */

footer{
    text-align:center;
    padding:30px;
    border-top:1px solid rgba(255,255,255,.08);
}

/* TOAST */

#toast{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    background:var(--gold);
    color:black;
    padding:14px 24px;
    border-radius:10px;
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:9999;
}

#toast.show{
    opacity:1;
}

/* REVEAL */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* MOBILE */

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero-logo{
        width:150px;
    }

    .hero-subtitle{
        font-size:1.2rem;
    }

    .floating{
        font-size:1.8rem;
    }

    .mobile-menu{
        width:220px;
    }
}