* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #544256;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #697d7d;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
}

.logo span {
    color: #f5c400;
    font-size: 22px;
    font-weight: bold;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
}

.nav-links a:hover {
    color: #f5c400;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.coin {
    width: 180px;
    animation: float 3s ease-in-out infinite;
}

/* SECTIONS */
.section {
    padding: 100px 30px;
    text-align: center;
}

.home {
    margin-top: 80px;
}

.home h1 {
    font-size: 48px;
    color: #f5c400;
}

.home span {
    color: #f5c400;
}

.cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.buy-btn {
    background: linear-gradient(135deg, #14f195, #00ffa3);
    border: none;
    padding: 14px 30px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
}

.community-btn {
    background: transparent;
    color: #f5c400;
    border: 2px solid #f5c400;
    padding: 14px 30px;
    border-radius: 30px;
    cursor: pointer;
}

/* SOCIAL */
.social-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-buttons a {
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 25px;
    color: white;
}

.twitter {
    background: #1da1f2;
}

.telegram {
    background: #0088cc;
}

/* DARK */
.dark {
    background: #151515;
}

.dark ul {
    list-style: none;
    margin-top: 20px;
}

.dark li {
    margin: 10px 0;
}

/* TOKENOMICS */
.tokenomics-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.token-card {
    border: 2px solid #f5c400;
    padding: 20px;
    width: 220px;
    border-radius: 12px;
}

/* WHITEPAPER */
.whitepaper-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.whitepaper-gallery img {
    width: 240px;
    border-radius: 10px;
    border: 2px solid #f5c400;
}

/* FOOTER */
footer {
    background: #111;
    padding: 20px;
    font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 15px;
    }

    .nav-links.active {
        display: flex;
    }
}