* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: radial-gradient(circle at top, #0a0f1f, #000);
    color: #fff;
}

.header {
    width: 100%;
    background-color: #111;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* Left container */
.left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Circular Logo */
.logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid gold;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Golden Text */
.brand-text {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
            #FFD700,
            #FFF3B0,
            #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero h1 {
    font-size: 4rem;
    color: gold;
}

.hero p {
    margin: 10px 0 20px;
    opacity: 0.85;
}

/* BUTTONS */
.btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    margin: 5px;
    font-weight: bold;
}

.primary {
    background: gold;
    color: black;
}

.secondary {
    border: 1px solid gold;
    color: gold;
}

/* SECTIONS */
section {
    padding: 80px 12%;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    background: #0b1228;
}




.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.whitepaper {
    text-align: center;
}

.whitepaper-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.whitepaper-image {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.25);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whitepaper-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.35);
}

.whitepaper-image img {
    width: 100%;
    display: block;
}

.whitepaper-cta {
    margin-top: 50px;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .nav-links .mobile-logo {
        display: block;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
}

/* FOOTER */
footer {
    padding: 20px;
    background: black;
    opacity: 0.7;
    font-size: 14px;
}
