:root {
    --gold: #d6a800;
    --dark: #07070a;
    --light: #ffffff;
    --muted: rgba(255,255,255,0.8);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, Arial, sans-serif;
    background: linear-gradient(180deg,#05060a,#0b0b0f);
    color: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.site-header {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--gold);
}

.brand-text h1 {
    margin: 0;
    color: var(--gold);
    font-size: 1.05rem;
}

.slogan {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.nav {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .nav a {
        color: var(--muted);
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 8px;
        font-weight: 500;
    }

        .nav a.cta {
            background: linear-gradient(90deg,var(--gold), #f3d86b);
            color: #0b0b0b;
            padding: 8px 12px;
            font-weight: 600;
        }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--light);
    font-size: 20px;
}

.hero {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
}

.hero-left {
    max-width: 520px;
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
}

.tokenomics-line {
    margin: 12px 0 20px;
    color: var(--muted);
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--light);
}

    .btn.primary {
        background: linear-gradient(90deg,var(--gold), #f3d86b);
        color: #0b0b0b;
        border: none;
        font-weight: 700;
    }

.rotating-wrap {
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rotating-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 6px solid rgba(214,168,0,0.12);
    animation: spin 12s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.quick-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin: 30px 0;
}

    .quick-features article {
        background: rgba(255,255,255,0.02);
        padding: 18px;
        border-radius: 12px;
    }

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .page main {
        flex-grow: 1;
    }

.page-section {
    padding: 30px 0;
}

.token-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

    .token-table th, .token-table td {
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }

.cards {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255,255,255,0.02);
    padding: 16px;
    border-radius: 10px;
    width: 260px;
    text-align: center;
}

.card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
    margin: 0 auto 8px;
}

.partners img {
    height: 48px;
    margin-right: 14px;
    opacity: 0.95;
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 18px 0;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    color: var(--light);
}

.notification {
    margin-top: 12px;
    padding: 12px;
    background: rgba(214,168,0,0.12);
    color: var(--light);
    border-radius: 8px;
}

.small {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 10px;
}

/* === PARTICLE BACKGROUND LAYER === */
#molecule-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* keep it behind everything but still visible */
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04), transparent 70%), radial-gradient(circle at 80% 70%, rgba(0,255,255,0.03), transparent 70%), #05060a;
    overflow: hidden;
    opacity: 0; /* starts transparent */
    transition: opacity 2s ease-in-out;
}

    /* subtle overlay glow & smooth gradient lighting */
    #molecule-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 60%), radial-gradient(circle at bottom right, rgba(0,255,204,0.06), transparent 70%);
        pointer-events: none;
        mix-blend-mode: lighten;
    }

    /* make sure particles fill the full screen */
    #molecule-bg canvas {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none !important;
    }

/* === SITE CONTENT ABOVE PARTICLES === */
.page, main, header, footer {
    position: relative;
    z-index: 1; /* content always above particles */
    background: transparent;
}

@media (max-width:900px) {
    .hero {
        flex-direction: column;
    }

    .quick-features {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .rotating-wrap {
        width: 220px;
        height: 220px;
    }

    .rotating-image {
        width: 180px;
        height: 180px;
    }
}

/*
 * 1. Centering the Content and Single Column Layout
 */
.features-stack {
    /* Ensures the container stays centered and doesn't get too wide */
    max-width: 900px; /* Adjust this value to control the width */
    margin: 40px auto; /* Centers the div horizontally and adds vertical spacing */
    padding: 20px;
}

.content-group {
    /* To stack the articles vertically if you want a single long block */
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between each feature article */
    padding: 20px 0; /* Vertical padding inside the group */
}

    /* Style for the individual feature boxes/articles */
    .content-group article {
        /* Makes each feature block take the full width of the container */
        width: 100%;
        /* Remove any grid/flex properties that forced them into columns */
        /* Add padding/styling to make them look like the content in the target image */
        padding: 20px;
        background-color: #1a1a1a; /* Dark background matching your original image */
        border-radius: 8px; /* Optional: smooth the corners */
    }

/*
 * 2. Creating the Separating Rectangle Lines
 */
.section-separator {
    border: none; /* Remove default line styling */
    height: 1px; /* Set the thickness of the line */
    background-color: #333333; /* Dark color for the line to contrast with the background */
    margin: 40px 0; /* Add space above and below the line to make it stand out */
}