/* ===================================
   SUPER MEME MEGACYCLE - Landing Page
   Premium Memecoin Design System
   =================================== */

/* === CSS Variables & Design Tokens === */
:root {
    /* Primary Colors - Neon Cyber Meme Theme */
    --neon-green: #39ff14;
    --neon-green-dim: #1a8a0a;
    --neon-yellow: #f5e642;
    --neon-orange: #ff6b2b;
    --neon-pink: #ff2d95;
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.7);
    --bg-card-hover: rgba(25, 25, 45, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-border: rgba(255, 255, 255, 0.08);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b82;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #39ff14, #f5e642);
    --gradient-secondary: linear-gradient(135deg, #ff6b2b, #ff2d95);
    --gradient-accent: linear-gradient(135deg, #00d4ff, #a855f7);
    --gradient-bg: linear-gradient(180deg, #0a0a0f 0%, #0d0d1a 50%, #0a0a0f 100%);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Matrix Canvas === */
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
}

/* === Floating Coins === */
.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.coin {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: floatCoin 8s linear infinite;
    filter: drop-shadow(0 0 6px rgba(245, 230, 66, 0.4));
}

@keyframes floatCoin {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Glass Card === */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(57, 255, 20, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.08);
}

/* === Section Header === */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 16px auto 0;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 1.6rem;
    animation: rocketBounce 2s ease-in-out infinite;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.neon-line {
    position: absolute;
    width: 2px;
    height: 100%;
    opacity: 0.15;
}

.neon-line-1 {
    left: 15%;
    background: linear-gradient(180deg, transparent, var(--neon-green), transparent);
    animation: neonPulse 3s ease-in-out infinite;
}

.neon-line-2 {
    left: 50%;
    background: linear-gradient(180deg, transparent, var(--neon-yellow), transparent);
    animation: neonPulse 3s ease-in-out infinite 1s;
}

.neon-line-3 {
    right: 15%;
    background: linear-gradient(180deg, transparent, var(--neon-blue), transparent);
    animation: neonPulse 3s ease-in-out infinite 2s;
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.2; }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid;
}

.badge-green {
    color: var(--neon-green);
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.08);
}

.badge-yellow {
    color: var(--neon-yellow);
    border-color: rgba(245, 230, 66, 0.3);
    background: rgba(245, 230, 66, 0.08);
}

.badge-blue {
    color: var(--neon-blue);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.08);
}

.pulse-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

.pulse-badge:nth-child(2) { animation-delay: 0.3s; }
.pulse-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-title {
    font-family: 'Bangers', cursive;
    line-height: 0.95;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    letter-spacing: 6px;
}

.title-line-1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.4));
    animation: titleGlow 3s ease-in-out infinite;
}

.title-line-2 {
    font-size: clamp(4rem, 12vw, 9rem);
    background: linear-gradient(135deg, #f5e642, #ff6b2b, #ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(255, 107, 43, 0.4));
    animation: titleGlow2 3s ease-in-out infinite 0.5s;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(57, 255, 20, 0.7)); }
}

@keyframes titleGlow2 {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 107, 43, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 107, 43, 0.7)); }
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    margin: 32px auto;
    max-width: 900px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 60px rgba(57, 255, 20, 0.15), 0 0 120px rgba(57, 255, 20, 0.05);
    transition: all var(--transition-slow);
}

.hero-image:hover {
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 0 80px rgba(57, 255, 20, 0.25), 0 0 160px rgba(57, 255, 20, 0.1);
    transform: scale(1.01);
}

.hero-image-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), transparent, rgba(245, 230, 66, 0.1));
    pointer-events: none;
    z-index: 1;
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.6s;
}

.btn-glow:hover::before {
    transform: rotate(45deg) translateX(100%);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 8px auto 0;
    border-right: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
    transform: rotate(45deg);
    opacity: 0.5;
}

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

/* ===================================
   TICKER TAPE
   =================================== */
.ticker-tape {
    background: rgba(57, 255, 20, 0.05);
    border-top: 1px solid rgba(57, 255, 20, 0.15);
    border-bottom: 1px solid rgba(57, 255, 20, 0.15);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: tickerScroll 30s linear infinite;
    width: fit-content;
}

.ticker-content span {
    white-space: nowrap;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
    letter-spacing: 1px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: var(--gradient-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.3));
}

.about-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* ===================================
   TOKENOMICS SECTION
   =================================== */
.tokenomics {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.tokenomics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.donut-chart {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.2));
}

.donut-segment {
    fill: none;
    stroke-width: 30;
    transition: all var(--transition-slow);
    cursor: pointer;
}

.donut-segment:hover {
    stroke-width: 35;
    filter: brightness(1.2);
}

.segment-1 { stroke: var(--neon-green); }
.segment-2 { stroke: var(--neon-yellow); }
.segment-3 { stroke: var(--neon-blue); }
.segment-4 { stroke: var(--neon-purple); }

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-total {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    letter-spacing: 3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donut-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.token-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

[data-color="1"] .token-color { background: var(--neon-green); box-shadow: 0 0 10px rgba(57, 255, 20, 0.5); }
[data-color="2"] .token-color { background: var(--neon-yellow); box-shadow: 0 0 10px rgba(245, 230, 66, 0.5); }
[data-color="3"] .token-color { background: var(--neon-blue); box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
[data-color="4"] .token-color { background: var(--neon-purple); box-shadow: 0 0 10px rgba(168, 85, 247, 0.5); }

.token-info {
    display: flex;
    justify-content: space-between;
    flex: 1;
    min-width: 200px;
}

.token-name {
    font-weight: 600;
    color: var(--text-primary);
}

.token-pct {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: var(--neon-green);
}

.token-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-top: -8px;
}

.token-bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-out;
}

[data-color="1"] .token-bar-fill { background: var(--gradient-primary); }
[data-color="2"] .token-bar-fill { background: linear-gradient(90deg, var(--neon-yellow), #ffa500); }
[data-color="3"] .token-bar-fill { background: linear-gradient(90deg, var(--neon-blue), #0088ff); }
[data-color="4"] .token-bar-fill { background: linear-gradient(90deg, var(--neon-purple), #ff44cc); }

.token-bar-fill.animated {
    width: var(--fill-width);
}

.token-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.feature-tag {
    padding: 8px 16px;
    background: rgba(57, 255, 20, 0.06);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-green);
}

/* ===================================
   HOW TO BUY SECTION
   =================================== */
.how-to-buy {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: var(--gradient-bg);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    padding: 40px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    position: relative;
}

.step-number {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 12px;
    right: 20px;
    letter-spacing: 2px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.step-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.4;
    flex-shrink: 0;
    padding: 0 4px;
}

/* Contract Address */
.contract-address {
    max-width: 700px;
    margin: 48px auto 0;
    padding: 24px 32px;
    text-align: center;
}

.ca-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ca-box {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ca-box code {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: var(--neon-green);
    word-break: break-all;
    letter-spacing: 1px;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    color: var(--neon-green);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    background: rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.copy-btn.copied {
    background: rgba(57, 255, 20, 0.3);
    border-color: var(--neon-green);
}

/* ===================================
   ROADMAP SECTION
   =================================== */
.roadmap {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--neon-green), var(--neon-yellow), var(--neon-orange), var(--neon-pink));
    border-radius: 3px;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 14px;
    top: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid rgba(57, 255, 20, 0.3);
    z-index: 1;
}

.timeline-marker.active {
    border-color: var(--neon-green);
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.timeline-marker.active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(57, 255, 20, 0.3);
    animation: markerPing 2s ease-out infinite;
}

@keyframes markerPing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.timeline-content {
    padding: 28px 32px;
}

.phase-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.timeline-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-content li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

/* ===================================
   COMMUNITY SECTION
   =================================== */
.community {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: var(--gradient-bg);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.social-card {
    padding: 36px 28px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

[data-platform="twitter"]::before { background: radial-gradient(circle at center, rgba(29, 155, 240, 0.08), transparent 70%); }
[data-platform="telegram"]::before { background: radial-gradient(circle at center, rgba(0, 136, 204, 0.08), transparent 70%); }
[data-platform="discord"]::before { background: radial-gradient(circle at center, rgba(88, 101, 242, 0.08), transparent 70%); }
[data-platform="dextools"]::before { background: radial-gradient(circle at center, rgba(57, 255, 20, 0.08), transparent 70%); }

.social-card:hover::before {
    opacity: 1;
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
}

[data-platform="twitter"] .social-icon { color: #1d9bf0; background: rgba(29, 155, 240, 0.1); }
[data-platform="telegram"] .social-icon { color: #0088cc; background: rgba(0, 136, 204, 0.1); }
[data-platform="discord"] .social-icon { color: #5865f2; background: rgba(88, 101, 242, 0.1); }
[data-platform="dextools"] .social-icon { color: var(--neon-green); background: rgba(57, 255, 20, 0.1); }

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.social-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.social-count {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 1px;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.cta-card {
    position: relative;
    padding: 80px 40px;
    text-align: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(245, 230, 66, 0.03));
    border: 1px solid rgba(57, 255, 20, 0.1);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    top: -100px;
    left: -50px;
    animation: orbFloat 6s ease-in-out infinite;
}

.cta-orb-2 {
    width: 200px;
    height: 200px;
    background: var(--neon-yellow);
    bottom: -50px;
    right: -30px;
    animation: orbFloat 6s ease-in-out infinite 2s;
}

.cta-orb-3 {
    width: 150px;
    height: 150px;
    background: var(--neon-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 6s ease-in-out infinite 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.cta-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 24px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===================================
   ANIMATIONS & SCROLL REVEAL
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .tokenomics-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-badges {
        gap: 8px;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline::before {
        left: 16px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 6px;
    }
    
    .cta-card {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .footer-links {
        gap: 16px;
    }
}

/* ===================================
   CUSTOM CURSOR TRAIL (optional glow)
   =================================== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}
