/* ... existing code ... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --neon-purple: #8b5cf6;
    --neon-cyan: #06b6d4;
    --neon-pink: #ec4899;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: margin-left 0.3s ease-in-out;
}

body.menu-open {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

body.menu-open .overlay {
    opacity: 1;
    visibility: visible;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    z-index: 10;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.btn-primary {
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-purple);
    border-radius: 50px;
    color: var(--neon-purple);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--neon-purple);
    color: white;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none; 
    z-index: 1100; 
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;  
    height: 100vh;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    padding: 8rem 2rem 2rem 2rem; 
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
    overflow-y: auto; 
}

.mobile-nav.is-active {
    right: 0;
}

.mobile-nav-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: auto;
    padding-bottom: 2rem;
}

.mobile-nav .lang-switcher {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
    width: 200px;
}

.mobile-nav .lang-btn {
    text-align: center;
    padding: 0.8rem; 
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--neon-purple);
}

.mobile-nav-right {
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-content {
    z-index: 1;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    opacity: 0;
    animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.tagline {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-top: 1rem;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator svg {
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.neon-text {
    color: var(--neon-purple);
    text-shadow: 0 0 20px var(--neon-purple);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}

.about-card p {
    color: var(--text-secondary);
}

/* Tokenomics */
.tokenomics {
    background: var(--bg-secondary);
}

.token-info {
    text-align: center;
    margin-bottom: 3rem;
}

.supply-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.supply-label {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.token-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s;
}

.token-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.token-percent {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-purple);
}

.token-label {
    margin: 0.5rem 0;
    font-weight: 600;
}

.token-amount {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.tokenomics-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Roadmap */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-purple), var(--neon-cyan));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-purple);
}

.timeline-content {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 0 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Community */
.community {
    text-align: center;
}

.community-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn {
    padding: 1rem 2.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--neon-purple);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.3));
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Language Switcher */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.lang-btn:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.lang-btn.active {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: white;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .nav-links, .nav-right {
        display: none;
    }

    .navbar {
        padding: 1rem 5%;
    }

    .hamburger {
        display: block;
    }

    .hamburger.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .glitch {
        font-size: 6rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 11px;
        transform: translateX(0);
    }

    .timeline-content {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 80%;
    }

    .supply-number {
        font-size: 2.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 80%;
        text-align: center;
    }
}
