/* ============================================
   RoboFighters Landing Page - WOW Styles v2
   ============================================ */

:root {
    --primary: #ffd700;
    --primary-rgb: 255, 215, 0;
    --primary-glow: rgba(255, 215, 0, 0.4);
    --secondary: #00d4ff;
    --secondary-rgb: 0, 212, 255;
    --accent: #ff6b35;
    --accent-rgb: 255, 107, 53;
    --purple: #a855f7;
    --green: #22c55e;
    --background: #0a0a12;
    --surface: rgba(255,255,255,0.03);
    --surface-hover: rgba(255,255,255,0.08);
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --border: rgba(255,255,255,0.08);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--purple));
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader span {
    color: var(--text-muted);
    font-size: 0.9rem;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ PARTICLES CANVAS ============ */
#particles {
    position: fixed;
    inset: 0;
    max-width: 100vw;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ============ GLASS EFFECTS ============ */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.glass-dark {
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
}

/* ============ NEW HEADER ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.site-header.scrolled {
    background: rgba(10, 10, 18, 0.98);
    border-bottom-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 36px;
    width: 36px;
}

.site-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: #ffd700;
}

.desktop-nav .nav-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000 !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.lang-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.lang-dropdown option {
    background: #0a0a1a;
    color: #fff;
}

/* Mobile Controls */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    max-width: 100%;
}

.menu-btn {
    flex-shrink: 0;
}

.lang-dropdown-sm {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    max-width: 120px;
}

.lang-dropdown-sm option {
    background: #0a0a1a;
    color: #fff;
}

/* Menu button styles */
.menu-btn {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid #ffd700;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 18, 0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    padding: 80px 1rem 2.5rem;
    gap: 0.75rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open .mobile-nav {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.2s;
    width: 100%;
    max-width: 320px;
    margin: 0 auto !important;
    text-align: center;
}

.mobile-nav a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.mobile-nav .mobile-nav-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000 !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .site-header {
        height: auto;
        padding: 0.5rem 0.75rem;
    }

    .site-logo {
        position: static;
    }

    .desktop-nav {
        display: none !important;
    }
    
    .mobile-controls {
        display: flex !important;
        position: static;
        z-index: 1002;
    }
    
    .site-logo span {
        display: none;
    }
}

@media (max-width: 420px) {
    .mobile-controls {
        gap: 0.5rem;
    }

    .lang-dropdown-sm {
        max-width: 90px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.4rem 0.5rem;
    }

    .mobile-controls {
        gap: 0.4rem;
    }

    .lang-dropdown-sm {
        width: 64px;
        padding: 0.3rem 0.35rem;
        font-size: 0.7rem;
    }

    .menu-btn {
        width: 40px;
        height: 40px;
    }

    .menu-btn span {
        width: 20px;
    }
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient);
    color: #000;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2em;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4); }
    50% { box-shadow: 0 4px 40px rgba(var(--primary-rgb), 0.6), 0 0 60px rgba(var(--primary-rgb), 0.3); }
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('bg.webp') center/cover;
    opacity: 0.2;
    filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10,10,18,0.3) 0%, 
        rgba(10,10,18,0.5) 50%, 
        var(--background) 100%);
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, 
        rgba(var(--primary-rgb), 0.15) 0%, 
        transparent 50%);
    animation: glowPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #fff 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    line-height: 1.1;
    text-shadow: 0 0 80px rgba(var(--primary-rgb), 0.5);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.3)); }
    to { filter: drop-shadow(0 0 50px rgba(var(--primary-rgb), 0.5)); }
}

.hero h2 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

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

/* ============ SECTIONS COMMON ============ */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

main,
footer,
.site-header {
    max-width: 100%;
    overflow-x: clip;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.title-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ============ FEATURES SECTION ============ */
.features {
    background: linear-gradient(180deg, transparent 0%, rgba(var(--primary-rgb), 0.02) 50%, transparent 100%);
}

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

.feature-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(var(--primary-rgb), 0.1);
}

.feature-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(var(--primary-rgb), 0.1) 50%,
        transparent 60%
    );
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.feature-card:hover .feature-shine {
    transform: rotate(45deg) translateY(-100%);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.8s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ LIVE STATS SECTION ============ */
.live-stats {
    padding: 3rem 0;
}

.stats-card {
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.stats-header h3 {
    font-size: 1.4rem;
    color: var(--text);
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-item .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.stat-item .stat-value.glow {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

/* ============ TOKENOMICS SECTION ============ */
.tokenomics {
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(var(--secondary-rgb), 0.02) 30%,
        rgba(var(--primary-rgb), 0.02) 70%,
        transparent 100%);
}

.token-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.token-chart {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.chart-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    z-index: 0;
    animation: chartGlow 4s ease-in-out infinite;
}

@keyframes chartGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.token-chart canvas {
    position: relative;
    z-index: 1;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.token-card.highlight {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
}

.token-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.token-icon {
    font-size: 2rem;
}

.token-header h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.token-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.token-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.token-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--surface);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.token-item:hover {
    background: var(--surface-hover);
    transform: translateX(5px);
}

.token-bar {
    width: var(--width);
    height: 8px;
    background: var(--color);
    border-radius: 4px;
    min-width: 30px;
    box-shadow: 0 0 10px var(--color);
}

.token-label {
    font-size: 0.95rem;
    color: var(--text);
}

.token-value {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Burn Mechanics */
.burn-mechanics {
    text-align: center;
}

.burn-mechanics h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.burn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.burn-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.burn-item:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--accent-rgb), 0.5);
}

.burn-icon {
    font-size: 1.5rem;
}

/* ============ ROADMAP SECTION ============ */
.roadmap {
    background: linear-gradient(180deg, transparent 0%, rgba(var(--purple), 0.02) 50%, transparent 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary), var(--purple));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 3rem 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 4rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 4rem;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--background);
    border: 3px solid var(--text-muted);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-marker.active {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 0 15px var(--green);
}

.timeline-marker.current {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 15px var(--primary); }
    50% { box-shadow: 0 0 30px var(--primary), 0 0 50px rgba(var(--primary-rgb), 0.3); }
}

.timeline-content {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.02);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.timeline-date {
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    margin: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.timeline-content li.done {
    color: var(--green);
}

/* ============ CTA SECTION ============ */
.cta {
    padding: 4rem 0 6rem;
}

.cta-content {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.08) 0%, 
        rgba(var(--secondary-rgb), 0.05) 100%);
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============ FOOTER ============ */
footer {
    background: rgba(0,0,0,0.3);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 250px;
}

.footer-links h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .token-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .token-chart {
        max-width: 350px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1rem 1.5rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }
    
    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .cta-content {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 1rem;
        padding-top: 80px;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .burn-grid {
        flex-direction: column;
    }
    
    .burn-item {
        justify-content: center;
    }
}

/* ============ WHITELIST PAGE ============ */
.whitelist-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.whitelist-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-3px);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-btn, .community-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-btn:hover, .community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.telegram { background: linear-gradient(135deg, #0088cc, #00a8e8); }
.discord { background: linear-gradient(135deg, #5865F2, #7289da); }
.youtube { background: linear-gradient(135deg, #FF0000, #ff5252); }
.community-btn { background: var(--gradient); }

.social-btn.subscribed, .community-btn.subscribed {
    background: var(--green) !important;
    pointer-events: none;
}

.referral-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.referral-box input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
    font-size: 1rem;
}

.email-box input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
    margin-bottom: 20px;
}

.generate-btn, .verify-btn {
    padding: 12px 24px;
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.generate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.generate-btn.active {
    opacity: 1;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    width: 0;
    transition: width 0.3s ease;
}

.status-text {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 10px;
    text-align: center;
}

.whitelist-benefits {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.whitelist-benefits h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.whitelist-benefits ul {
    list-style: none;
}

.whitelist-benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.whitelist-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
}

/* ============ MODAL ============ */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--background);
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--border);
    text-align: center;
}

.close-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gradient);
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.05);
}

/* ============ WHITEPAPER PAGE ============ */
.whitepaper-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.whitepaper-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.whitepaper-content section {
    margin-bottom: 2rem;
}

.whitepaper-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.whitepaper-content p {
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .whitelist-container {
        padding: 25px;
    }
    
    .referral-box {
        flex-direction: column;
    }
    
    .generate-btn {
        width: 100%;
    }
}
