:root {
    --primary: #E1B305;
    --primary-glow: rgba(225, 179, 5, 0.4);
    --secondary: #6366f1;
    --bg-dark: #050b1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
}

/* Header & Mobile Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(5, 11, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
}

.logo-img {
    height: 35px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.logo-text {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--glass-border);
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hamburger */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--white);
}

/* Sections Base */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.section-title p {
    color: var(--text-muted);
}

/* Hero Section (Mobile Default) */
.hero-section {
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    animation: float 6s ease-in-out infinite;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

/* About Overlaying grid for mobile */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tokenomics */
.tokenomics-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 0.9rem;
}

/* Roadmap (Mobile Timeline) */
.roadmap-timeline {
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--glass-border);
}

.roadmap-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.roadmap-dot {
    position: absolute;
    left: -2.35rem;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

/* CTA */
.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

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

/* ----------------------------------------------------
   Breakpoints (Tablet & Desktop Enhancements)
   ---------------------------------------------------- */

/* Tablet (768px+) */
@media (min-width: 768px) {
    body { font-size: 18px; }

    .container { padding: 0 2rem; }

    .hero-container {
        text-align: left;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-btns {
        flex-direction: row;
    }

    h1 { font-size: 3.5rem; }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-grid, .tokenomics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cta-btns {
        flex-direction: row;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    header { padding: 1.5rem 0; }
    
    .logo-text { font-size: 1.5rem; }
    .logo-img { height: 45px; }

    /* Show Navigation Desktop, Hide Hamburger */
    .mobile-menu-btn { display: none; }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-links a:hover {
        color: var(--primary);
    }

    section { padding: 8rem 0; }

    h1 { font-size: 4rem; }

    .roadmap-timeline {
        padding-left: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .roadmap-timeline::before {
        left: 50%;
    }

    .roadmap-item {
        width: 50%;
        margin-bottom: 4rem;
    }

    .roadmap-item:nth-child(odd) {
        margin-right: auto;
        padding-right: 3rem;
        text-align: right;
    }

    .roadmap-item:nth-child(even) {
        margin-left: auto;
        padding-left: 3rem;
    }

    .roadmap-dot {
        left: auto;
    }

    .roadmap-item:nth-child(odd) .roadmap-dot { right: -6px; }
    .roadmap-item:nth-child(even) .roadmap-dot { left: -6px; }

    .roadmap-item:nth-child(odd) li::before {
        display: none;
    }
}

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