/* ==========================================
   FUTURISTIC HALLOWEEN - CYBERPUNK SPOOKY STYLE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Futuristic Halloween Color Palette */
    --neon-orange: #ff6b35;
    --cyber-orange: #ff4500;
    --toxic-green: #00ff87;
    --acid-green: #39ff14;
    --electric-purple: #9d4edd;
    --cyber-purple: #bf00ff;
    --neon-pink: #ff006e;
    --cyber-blue: #00d9ff;
    --dark-void: #0a0a0a;
    --void-gray: #0f0f0f;
    --slate-gray: #1a1a1a;
    --ghost-white: #f4f4f4;
    --chrome-silver: #c0c0c0;
    
    /* Typography */
    --font-pixel: 'Press Start 2P', cursive;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Effects */
    --neon-glow: 0 0 20px;
    --cyber-glow: 0 0 40px;
    --intense-glow: 0 0 60px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-pixel);
    background: var(--dark-void);
    color: var(--ghost-white);
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 14px;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 135, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Cyber Grid Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ==========================================
   CYBER MUSIC PLAYER
   ========================================== */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-orange), var(--toxic-green)) 1;
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.4),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.music-player:hover {
    box-shadow: 
        0 0 60px rgba(255, 107, 53, 0.8),
        inset 0 0 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.music-toggle {
    background: linear-gradient(135deg, var(--neon-orange), var(--cyber-orange));
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-void);
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.music-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.9),
        inset 0 0 25px rgba(255, 255, 255, 0.3);
}

.music-toggle.playing {
    animation: music-pulse 1s ease-in-out infinite;
}

@keyframes music-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(255, 107, 53, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 60px rgba(0, 255, 135, 0.9),
            inset 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.music-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-visualizer.active {
    opacity: 1;
}

.music-visualizer .bar {
    width: 4px;
    background: linear-gradient(180deg, var(--toxic-green), var(--neon-orange));
    border-radius: 2px;
    animation: visualizer 0.8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--toxic-green);
}

.music-visualizer .bar:nth-child(1) {
    animation-delay: 0s;
    height: 20%;
}

.music-visualizer .bar:nth-child(2) {
    animation-delay: 0.2s;
    height: 40%;
}

.music-visualizer .bar:nth-child(3) {
    animation-delay: 0.4s;
    height: 30%;
}

.music-visualizer .bar:nth-child(4) {
    animation-delay: 0.6s;
    height: 50%;
}

@keyframes visualizer {
    0%, 100% { height: 20%; }
    25% { height: 80%; }
    50% { height: 40%; }
    75% { height: 90%; }
}

/* Mobile Music Player */
@media (max-width: 768px) {
    .music-player {
        bottom: 20px;
        right: 20px;
        padding: 12px 15px;
    }
    
    .music-toggle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .music-visualizer {
        height: 35px;
    }
}

/* ==========================================
   HEADER / NAVIGATION - FUTURISTIC
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green), var(--electric-purple)) 1;
    box-shadow: 
        0 4px 30px rgba(255, 107, 53, 0.3),
        inset 0 -1px 0 rgba(255, 107, 53, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, var(--neon-orange), var(--toxic-green));
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.logo:hover::before {
    opacity: 0.3;
    animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--neon-orange);
    box-shadow: 
        var(--neon-glow) var(--neon-orange),
        inset 0 0 10px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        var(--cyber-glow) var(--neon-orange),
        inset 0 0 20px rgba(255, 107, 53, 0.5);
}

.logo-text {
    font-size: 16px;
    background: linear-gradient(135deg, var(--neon-orange), var(--toxic-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    animation: glow-text 3s ease-in-out infinite;
}

@keyframes glow-text {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)); }
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--neon-orange);
    border: 2px solid var(--neon-orange);
    box-shadow: 
        inset 0 0 10px rgba(255, 107, 53, 0.2),
        0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-orange), var(--cyber-orange));
    color: var(--dark-void);
    border: none;
    padding: 12px 30px;
    font-size: 11px;
    font-family: var(--font-pixel);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-primary::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);
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.8),
        0 10px 30px rgba(255, 107, 53, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--neon-orange);
    color: var(--neon-orange);
    font-size: 20px;
    cursor: pointer;
    padding: 10px 15px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    padding: 30px;
    transition: right 0.3s ease;
    z-index: 1001;
    border-left: 2px solid var(--neon-orange);
    box-shadow: 
        -5px 0 30px rgba(255, 107, 53, 0.5),
        inset 2px 0 10px rgba(255, 107, 53, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-title {
    font-size: 16px;
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--neon-orange);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg) scale(1.2);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 11px;
    padding: 15px;
    border: 2px solid var(--neon-orange);
    background: rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(255, 107, 53, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(255, 107, 53, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(255, 107, 53, 0.3),
        0 0 20px rgba(255, 107, 53, 0.5);
    transform: translateX(-5px);
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ==========================================
   HERO SECTION - FUTURISTIC HALLOWEEN
   ========================================== */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 70%);
    animation: pulse-hero 8s ease-in-out infinite;
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: linear-gradient(45deg, var(--neon-orange), var(--toxic-green), var(--electric-purple), var(--neon-orange));
    background-size: 300% 300%;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: rotate-gradient 6s linear infinite;
}

@keyframes rotate-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-img {
    width: 100%;
    max-width: 450px;
    border: 4px solid var(--neon-orange);
    border-radius: 20px;
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.6),
        0 0 80px rgba(0, 255, 135, 0.3),
        inset 0 0 30px rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 1;
    animation: float-hero 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: 56px;
    background: linear-gradient(135deg, var(--neon-orange), var(--toxic-green), var(--electric-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: title-glow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

@keyframes title-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.8)); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--toxic-green);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.6);
    animation: subtitle-flicker 3s ease-in-out infinite;
}

@keyframes subtitle-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-description {
    font-size: 12px;
    color: rgba(244, 244, 244, 0.9);
    margin-bottom: 30px;
    line-height: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 35px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary {
    background: transparent;
    color: var(--toxic-green);
    border: 3px solid var(--toxic-green);
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 135, 0.1),
        0 0 30px rgba(0, 255, 135, 0.3);
}

.btn-secondary:hover {
    background: var(--toxic-green);
    color: var(--dark-void);
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.2),
        0 0 50px rgba(0, 255, 135, 0.8);
}

.contract-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 255, 135, 0.1));
    border: 3px solid;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green)) 1;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 30px rgba(255, 107, 53, 0.1),
        0 0 30px rgba(255, 107, 53, 0.2);
}

.contract-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: scan-box 3s linear infinite;
}

@keyframes scan-box {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.contract-label {
    font-size: 10px;
    color: var(--toxic-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.6);
}

.contract-value-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contract-value {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--ghost-white);
    word-break: break-all;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.copy-btn {
    background: linear-gradient(135deg, var(--toxic-green), var(--acid-green));
    color: var(--dark-void);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.4);
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 135, 0.8);
}

/* ==========================================
   OBJECTIVES SECTION - CYBER METRICS
   ========================================== */
.objectives {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green), var(--electric-purple)) 1;
    position: relative;
}

.objectives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 107, 53, 0.03) 2px,
        rgba(255, 107, 53, 0.03) 4px
    );
    pointer-events: none;
}

.section-title {
    font-size: 40px;
    background: linear-gradient(135deg, var(--neon-orange), var(--toxic-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
    animation: title-pulse 3s ease-in-out infinite;
}

@keyframes title-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.section-subtitle {
    font-size: 14px;
    color: rgba(244, 244, 244, 0.7);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.objective-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 255, 135, 0.05));
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-orange), var(--toxic-green)) 1;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.objective-card:hover::before {
    left: 100%;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.4),
        inset 0 0 30px rgba(255, 107, 53, 0.1);
    border-image: linear-gradient(135deg, var(--toxic-green), var(--neon-orange)) 1;
}

.objective-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    animation: icon-float 3s ease-in-out infinite;
}

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

.objective-value {
    font-size: 28px;
    color: var(--toxic-green);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.6);
}

.objective-label {
    font-size: 10px;
    color: rgba(244, 244, 244, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--section-padding);
    background: var(--dark-void);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(157, 78, 221, 0.08));
    border: 3px solid transparent;
    background-clip: padding-box;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-orange), var(--electric-purple)) 1;
    opacity: 1;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--toxic-green), var(--cyber-blue)) 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover::after {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.4),
        inset 0 0 40px rgba(255, 107, 53, 0.1);
}

.about-icon {
    font-size: 72px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
    animation: icon-glow 4s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(0, 255, 135, 0.8)); }
}

.about-card-title {
    font-size: 18px;
    color: var(--toxic-green);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 135, 0.6);
}

.about-card-text {
    font-size: 11px;
    color: rgba(244, 244, 244, 0.9);
    line-height: 2;
}

/* ==========================================
   TOKENOMICS SECTION
   ========================================== */
.tokenomics {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5), rgba(10, 10, 10, 0.8));
    border-top: 2px solid;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green)) 1;
    position: relative;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15), transparent 70%);
    pointer-events: none;
    animation: pulse-tokenomics 10s ease-in-out infinite;
}

@keyframes pulse-tokenomics {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tokenomics-chart::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: linear-gradient(45deg, var(--neon-orange), var(--toxic-green), var(--electric-purple), var(--neon-orange));
    background-size: 300% 300%;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
    animation: rotate-gradient 8s linear infinite;
}

.tokenomics-chart canvas {
    max-width: 400px;
    max-height: 400px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.4));
}

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

.tokenomics-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 255, 135, 0.05));
    border: 3px solid;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green)) 1;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.tokenomics-item:hover::before {
    left: 100%;
}

.tokenomics-item:hover {
    transform: translateX(10px);
    box-shadow: 
        -10px 0 30px rgba(255, 107, 53, 0.3),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.tokenomics-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tokenomics-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 
        0 0 20px currentColor,
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: dot-pulse 2s ease-in-out infinite;
}

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

.tokenomics-item h4 {
    font-size: 14px;
    color: var(--ghost-white);
}

.tokenomics-value {
    font-size: 24px;
    color: var(--toxic-green);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.6);
}

.tokenomics-desc {
    font-size: 10px;
    color: rgba(244, 244, 244, 0.7);
}

.tokenomics-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.1), rgba(0, 255, 135, 0.05));
    border: 3px solid var(--toxic-green);
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--toxic-green);
    font-size: 11px;
    text-transform: uppercase;
    box-shadow: 
        0 0 30px rgba(0, 255, 135, 0.3),
        inset 0 0 20px rgba(0, 255, 135, 0.1);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 50px rgba(0, 255, 135, 0.6),
        inset 0 0 30px rgba(0, 255, 135, 0.2);
}

.feature-badge i {
    font-size: 18px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.8));
}

/* ==========================================
   ROADMAP SECTION
   ========================================== */
.roadmap {
    padding: var(--section-padding);
    background: var(--dark-void);
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--neon-orange), var(--toxic-green), var(--electric-purple));
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.roadmap-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.roadmap-item:last-child {
    border-bottom: none;
}

.roadmap-marker {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
    border: 4px solid var(--neon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--neon-orange);
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.4),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-marker {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 
        0 0 60px rgba(255, 107, 53, 0.8),
        inset 0 0 40px rgba(255, 107, 53, 0.2);
}

.roadmap-item.completed .roadmap-marker {
    background: linear-gradient(135deg, var(--neon-orange), var(--cyber-orange));
    color: var(--dark-void);
    border-color: var(--toxic-green);
}

.roadmap-item.active .roadmap-marker {
    background: linear-gradient(135deg, var(--toxic-green), var(--acid-green));
    border-color: var(--toxic-green);
    color: var(--dark-void);
    animation: pulse-active 2s ease-in-out infinite;
}

@keyframes pulse-active {
    0%, 100% { 
        box-shadow: 
            0 0 40px rgba(0, 255, 135, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 80px rgba(0, 255, 135, 1),
            inset 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.roadmap-content {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(157, 78, 221, 0.05));
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-orange), var(--electric-purple)) 1;
    padding: 30px;
    box-shadow: inset 0 0 30px rgba(255, 107, 53, 0.05);
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    transform: translateX(10px);
    box-shadow: 
        inset 0 0 40px rgba(255, 107, 53, 0.1),
        10px 0 40px rgba(255, 107, 53, 0.2);
}

.roadmap-content h3 {
    font-size: 18px;
    color: var(--toxic-green);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 135, 0.6);
}

.roadmap-list {
    list-style: none;
    padding-left: 0;
}

.roadmap-list li {
    font-size: 11px;
    color: rgba(244, 244, 244, 0.9);
    margin-bottom: 12px;
    line-height: 2;
    padding-left: 25px;
    position: relative;
}

.roadmap-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-orange);
    font-size: 14px;
}

/* ==========================================
   MEMES GALLERY
   ========================================== */
.memes {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5), rgba(10, 10, 10, 0.8));
    border-top: 2px solid;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green)) 1;
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.meme-card {
    background: rgba(255, 255, 255, 0.02);
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-orange), var(--toxic-green)) 1;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

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

.meme-card:hover::before {
    transform: translateX(100%);
}

.meme-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(0, 255, 135, 0.3);
}

.meme-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: saturate(1.2) contrast(1.1);
    transition: all 0.4s ease;
}

.meme-card:hover img {
    filter: saturate(1.5) contrast(1.2);
    transform: scale(1.05);
}

.meme-card.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 255, 135, 0.05));
}

.meme-placeholder-content {
    text-align: center;
    color: rgba(244, 244, 244, 0.6);
}

.meme-placeholder-content i {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--neon-orange);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.meme-placeholder-content p {
    font-size: 11px;
    color: var(--toxic-green);
}

/* ==========================================
   COMMUNITY SECTION
   ========================================== */
.community {
    padding: var(--section-padding);
    background: var(--dark-void);
}

.community-grid {
    display: flex;
    justify-content: center;
}

.community-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(0, 255, 135, 0.08));
    border: 4px solid;
    border-image: linear-gradient(135deg, var(--neon-orange), var(--toxic-green)) 1;
    padding: 50px;
    text-align: center;
    text-decoration: none;
    color: var(--ghost-white);
    transition: all 0.4s ease;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.community-card:hover::before {
    top: 100%;
    left: 100%;
}

.community-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(255, 107, 53, 0.5),
        0 0 80px rgba(0, 255, 135, 0.4),
        inset 0 0 50px rgba(255, 107, 53, 0.1);
}

.community-icon {
    font-size: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 40px rgba(29, 161, 242, 0.8));
    animation: icon-bounce 3s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.community-card.twitter .community-icon {
    color: #1DA1F2;
}

.community-card h3 {
    font-size: 22px;
    color: var(--toxic-green);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.6);
}

.community-card p {
    font-size: 11px;
    color: rgba(244, 244, 244, 0.9);
    margin-bottom: 25px;
    line-height: 2;
}

.community-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-orange), var(--cyber-orange));
    color: var(--dark-void);
    padding: 12px 25px;
    font-size: 11px;
    text-transform: uppercase;
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    font-weight: bold;
    letter-spacing: 2px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5), rgba(10, 10, 10, 0.8));
    border-top: 2px solid;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green)) 1;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(157, 78, 221, 0.05));
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-orange), var(--electric-purple)) 1;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.3),
        inset 0 0 30px rgba(255, 107, 53, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question i {
    color: var(--neon-orange);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--toxic-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.8));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 25px 30px;
    font-size: 11px;
    color: rgba(244, 244, 244, 0.9);
    line-height: 2;
    background: rgba(0, 0, 0, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--void-gray);
    padding: 80px 0 40px;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--toxic-green), var(--electric-purple)) 1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-orange), var(--toxic-green), var(--electric-purple));
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--neon-orange);
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        inset 0 0 15px rgba(255, 107, 53, 0.2);
}

.footer-logo-text {
    font-size: 18px;
    background: linear-gradient(135deg, var(--neon-orange), var(--toxic-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.footer-desc {
    font-size: 11px;
    color: rgba(244, 244, 244, 0.8);
    margin-bottom: 25px;
    line-height: 2;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 255, 135, 0.1));
    border: 3px solid var(--neon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-orange);
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--neon-orange), var(--toxic-green));
    color: var(--dark-void);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.8),
        0 10px 30px rgba(255, 107, 53, 0.4);
}

.footer-section h4 {
    font-size: 16px;
    color: var(--toxic-green);
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 255, 135, 0.6);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 11px;
    color: rgba(244, 244, 244, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a:hover {
    color: var(--neon-orange);
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.footer-bottom p {
    font-size: 10px;
    color: rgba(244, 244, 244, 0.6);
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 9px;
    font-style: italic;
    color: rgba(244, 244, 244, 0.5);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 40px;
    }
    
    .roadmap-item {
        grid-template-columns: 80px 1fr;
        gap: 25px;
    }
    
    .roadmap-marker {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .roadmap-item {
        grid-template-columns: 1fr;
    }
    
    .roadmap-marker {
        width: 100%;
        height: 70px;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
}