/* Reset and basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neon Color Palette - Cyberpunk Billboard */
    --neon-blue: #0800FF;
    --neon-purple: #9A00FF;
    --neon-green: #4DFF00;
    --neon-yellow: #FFEC00;
    --neon-pink: #FF204E;
    --neon-cyan: #00FFFF;
    
    /* Dark Theme Colors */
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-surface: #2a2a2a;
    --dark-border: #3a3a3a;
    --dark-text: #ffffff;
    --dark-text-secondary: #b0b0b0;
    --dark-text-muted: #808080;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-secondary: linear-gradient(135deg, var(--neon-green), var(--neon-yellow));
    --gradient-accent: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    
    /* Typography */
    --font-primary: "Quantico", sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 120px 0;
    --card-padding: 2rem;
    
    /* Shadows & Glows */
    --shadow-glow: 0 0 20px rgba(75, 255, 0, 0.3);
    --shadow-neon: 0 0 30px rgba(138, 43, 226, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 4px;
    box-shadow: var(--shadow-glow);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* Body and basics */
body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    z-index: -2;
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-wrapper {
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 255, 170, 0.5);
}

.logo::after {
    content: 'AI';
    position: absolute;
    top: -10px;
    right: -38px;
    font-size: 14px;
    background: linear-gradient(135deg, #5EFB09, #DFF000);
    color: #000;
    padding: 2px 8px;
    border-radius: 25px;
    font-weight: 800;
}

.tagline {
    font-size: 10px;
    color: #5EFB09;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: -8px;
    margin-left: 4px;
    font-weight: 500;
}





.neural-network {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-neon);
    animation: neuralPulse 2s ease-in-out infinite;
}

.neural-network::before,
.neural-network::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
}

.neural-network::before {
    top: -12px;
    left: -8px;
    animation: neuralNode 3s ease-in-out infinite;
}

.neural-network::after {
    bottom: -12px;
    right: -8px;
    animation: neuralNode 3s ease-in-out infinite 1.5s;
}

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

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

.logo-text {
    font-size: 2.0rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(75, 255, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.nav-link.cta-button {
    background: var(--gradient-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-normal);
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.8);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.neural-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(75, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: floatParticle 8s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(75, 255, 0, 0.1);
    border: 1px solid var(--neon-green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(75, 255, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(75, 255, 0, 0.6); }
}

.badge-text {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    color: var(--dark-text);
}

.title-highlight {
    display: block;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(75, 255, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px rgba(255, 236, 0, 0.5);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-text-muted);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
    .cta-primary, .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-normal);
        position: relative;
        overflow: hidden;
        border: none;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-neon);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.8);
}

.cta-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(75, 255, 0, 0.3);
}

.cta-secondary:hover {
    background: rgba(75, 255, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(75, 255, 0, 0.6);
}

.cta-primary.large, .cta-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.cta-primary:hover .button-glow {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: none !important;
}

/* Modern Neural Network Animation */
.neural-network-animation {
    width: 600px;
    height: 600px;
    position: relative;
    animation: neuralNetworkFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* Robot Hologram Head */
.robot-head {
    width: 140px;
    height: 140px;
    background: 
        /* Belső fény pontok */
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 75% 25%, rgba(138, 43, 226, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 50% 75%, rgba(75, 255, 0, 0.1) 0%, transparent 25%),
        /* Mátrix hálózat */
        linear-gradient(0deg, transparent 48%, rgba(0, 255, 255, 0.05) 49%, rgba(0, 255, 255, 0.05) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(0, 255, 255, 0.05) 49%, rgba(0, 255, 255, 0.05) 51%, transparent 52%),
        /* Fő sötét gradiens */
        linear-gradient(135deg, rgba(8, 8, 8, 0.98) 0%, rgba(15, 15, 15, 0.95) 50%, rgba(5, 5, 5, 0.99) 100%),
        /* Legalsó réteg */
        linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, rgba(12, 12, 12, 0.95) 100%);
    border-radius: 20px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--neon-blue);
    box-shadow: 
        0 0 60px rgba(0, 255, 255, 0.4),
        0 0 30px rgba(138, 43, 226, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
    animation: headHologram 5s ease-in-out infinite;
    backdrop-filter: blur(15px);
}

.robot-head::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: 
        /* Outer energy ring */
        conic-gradient(from 0deg, 
            var(--neon-blue) 0deg, 
            var(--neon-cyan) 90deg, 
            var(--neon-purple) 180deg, 
            var(--neon-green) 270deg, 
            var(--neon-blue) 360deg),
        /* Belső fekete réteg */
        linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 0.8));
    border-radius: 23px;
    z-index: -1;
    opacity: 0.9;
    animation: hologramBorder 6s linear infinite;
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.7);
}

.robot-head::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: 
        /* Komplex mátrix vonalak */
        linear-gradient(45deg, transparent 47%, rgba(0, 255, 255, 0.15) 48%, rgba(0, 255, 255, 0.15) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 47%, rgba(75, 255, 0, 0.12) 48%, rgba(75, 255, 0, 0.12) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(138, 43, 226, 0.08) 49.5%, rgba(138, 43, 226, 0.08) 50.5%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(255, 0, 255, 0.08) 49.5%, rgba(255, 0, 255, 0.08) 50.5%, transparent 51%),
        /* Fekete háttér */
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(5, 5, 5, 0.4) 100%);
    border-radius: 17px;
    animation: scanLines 3s linear infinite;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.robot-eyes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 30px;
}

.robot-eyes::before,
.robot-eyes::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px var(--neon-cyan),
        inset 0 0 10px var(--neon-cyan);
    animation: eyeGlow 4s ease-in-out infinite;
}

.robot-eyes::before {
    left: 15px;
    animation-delay: 0.2s;
}

.robot-eyes::after {
    right: 15px;
    animation-delay: 0.4s;
}

.robot-antenna {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 35px;
    background: linear-gradient(180deg, 
        var(--neon-green) 0%, 
        var(--neon-cyan) 50%, 
        var(--neon-purple) 100%);
    border-radius: 3px;
    box-shadow: 0 0 20px var(--neon-green);
    animation: antennaSignal 2s ease-in-out infinite;
}

.robot-antenna::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 25px var(--neon-green),
        0 0 50px var(--neon-green);
    animation: antennaBeacon 3s ease-in-out infinite;
}

.robot-antenna::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: antennaWave 4s ease-in-out infinite;
}

.robot-body {
    width: 160px;
    height: 220px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 255, 0, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 30px;
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--neon-purple);
    box-shadow: 
        0 0 50px rgba(138, 43, 226, 0.4),
        inset 0 0 30px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(15px);
    animation: bodyPulse 6s ease-in-out infinite;
}

.robot-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(138, 43, 226, 0.1) 49%, rgba(138, 43, 226, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(75, 255, 0, 0.1) 49%, rgba(75, 255, 0, 0.1) 51%, transparent 52%);
    border-radius: 28px;
    animation: bodyMatrix 4s linear infinite;
}

.robot-core {
    width: 100px;
    height: 100px;
    background: 
        radial-gradient(circle at 50% 50%, var(--neon-blue) 0%, transparent 70%),
        radial-gradient(circle at 30% 30%, var(--neon-cyan) 0%, transparent 50%),
        conic-gradient(from 0deg, var(--neon-blue), var(--neon-purple), var(--neon-cyan), var(--neon-blue));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 60px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(0, 255, 255, 0.3);
    animation: coreEnergy 3s ease-in-out infinite;
}

.robot-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: 
        radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: coreInner 4s ease-in-out infinite reverse;
}

.robot-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.4;
    animation: coreRing 5s linear infinite;
}

.robot-circuits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.robot-circuits::before,
.robot-circuits::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 120px;
    background: linear-gradient(180deg, 
        var(--neon-green) 0%, 
        var(--neon-cyan) 50%, 
        var(--neon-purple) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: circuitFlow 4s ease-in-out infinite;
}

.robot-circuits::before {
    top: 40px;
    left: 25px;
    transform: rotate(20deg);
    animation-delay: 0.5s;
}

.robot-circuits::after {
    top: 40px;
    right: 25px;
    transform: rotate(-20deg);
    animation-delay: 2s;
}

.robot-arms {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.robot-arms::before,
.robot-arms::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 120px;
    background: 
        linear-gradient(180deg, 
            rgba(75, 255, 0, 0.9) 0%, 
            rgba(0, 255, 255, 0.9) 50%, 
            rgba(138, 43, 226, 0.9) 100%);
    border-radius: 12px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 
        0 0 20px var(--neon-cyan),
        inset 0 0 10px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.robot-arms::before {
    top: 140px;
    left: 80px;
    transform-origin: top;
    animation: armMechanic 6s ease-in-out infinite;
}

.robot-arms::after {
    top: 140px;
    right: 80px;
    transform-origin: top;
    animation: armMechanicMirror 6s ease-in-out infinite;
    animation-delay: 3s;
}

.robot-legs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.robot-legs::before,
.robot-legs::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 100px;
    background: 
        linear-gradient(180deg, 
            rgba(138, 43, 226, 0.9) 0%, 
            rgba(75, 255, 0, 0.9) 50%, 
            rgba(0, 255, 255, 0.9) 100%);
    border-radius: 12px;
    border: 2px solid var(--neon-purple);
    box-shadow: 
        0 0 25px var(--neon-purple),
        inset 0 0 10px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(5px);
    animation: legMechanic 7s ease-in-out infinite;
}

.robot-legs::before {
    top: 340px;
    left: 110px;
    transform-origin: top;
    animation-delay: 1s;
}

.robot-legs::after {
    top: 340px;
    right: 110px;
    transform-origin: top;
    animation-delay: 4s;
}

@keyframes modernRobotFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotateX(2deg); 
    }
}

@keyframes headHologram {
    0%, 100% { 
        transform: translateX(-50%) rotateY(0deg) scale(1);
        box-shadow: 
            0 0 60px rgba(0, 255, 255, 0.4),
            0 0 30px rgba(138, 43, 226, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.1),
            inset 0 0 15px rgba(0, 0, 0, 0.8);
        filter: brightness(1) contrast(1.2);
    }
    25% { 
        transform: translateX(-50%) rotateY(3deg) scale(1.02);
        box-shadow: 
            0 0 80px rgba(0, 255, 255, 0.6),
            0 0 40px rgba(138, 43, 226, 0.4),
            inset 0 0 35px rgba(0, 255, 255, 0.15),
            inset 0 0 20px rgba(0, 0, 0, 0.7);
        filter: brightness(1.1) contrast(1.3);
    }
    50% { 
        transform: translateX(-50%) rotateY(5deg) scale(1.01);
        box-shadow: 
            0 0 100px rgba(0, 255, 255, 0.5),
            0 0 50px rgba(138, 43, 226, 0.5),
            inset 0 0 40px rgba(0, 255, 255, 0.2),
            inset 0 0 25px rgba(0, 0, 0, 0.6);
        filter: brightness(1.2) contrast(1.4);
    }
    75% { 
        transform: translateX(-50%) rotateY(2deg) scale(1.03);
        box-shadow: 
            0 0 70px rgba(0, 255, 255, 0.4),
            0 0 35px rgba(138, 43, 226, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.12),
            inset 0 0 18px rgba(0, 0, 0, 0.8);
        filter: brightness(1.05) contrast(1.25);
    }
}

@keyframes hologramBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes scanLines {
    0% { 
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
        opacity: 0.7;
    }
    25% { 
        background-position: 25px 25px, -25px -25px, 12px 0, 0 12px, 0 0;
        opacity: 0.9;
    }
    50% { 
        background-position: 50px 50px, -50px -50px, 25px 0, 0 25px, 0 0;
        opacity: 1;
    }
    75% { 
        background-position: 75px 75px, -75px -75px, 37px 0, 0 37px, 0 0;
        opacity: 0.8;
    }
    100% { 
        background-position: 100px 100px, -100px -100px, 50px 0, 0 50px, 0 0;
        opacity: 0.7;
    }
}

@keyframes eyeGlow {
    0%, 100% { 
        box-shadow: 0 0 30px var(--neon-cyan);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px var(--neon-cyan);
        transform: scale(1.1);
    }
}

@keyframes antennaSignal {
    0%, 100% { 
        transform: translateX(-50%) scaleY(1);
        box-shadow: 0 0 20px var(--neon-green);
    }
    50% { 
        transform: translateX(-50%) scaleY(1.3);
        box-shadow: 0 0 40px var(--neon-green);
    }
}

@keyframes antennaBeacon {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateX(-50%) scale(1.5);
        opacity: 0.3;
    }
}

@keyframes antennaWave {
    0% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-50%) scale(2);
        opacity: 0.1;
    }
    100% { 
        transform: translateX(-50%) scale(3);
        opacity: 0;
    }
}

@keyframes coreGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(138, 43, 226, 0.5); }
    50% { box-shadow: 0 0 60px rgba(138, 43, 226, 0.8); }
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.solana-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 25px;
    background: linear-gradient(45deg, #9945FF 0%, #14F195 100%);
    border-radius: 50px;
    box-shadow: 
        0 0 30px rgba(153, 69, 255, 0.7),
        inset 0 0 15px rgba(153, 69, 255, 0.3);
    animation: solanaHologram 4s ease-in-out infinite;
}

.solana-logo::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 5px;
    background: linear-gradient(45deg, #9945FF 0%, #14F195 100%);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(153, 69, 255, 0.7);
}

.solana-logo::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 5px;
    background: linear-gradient(45deg, #9945FF 0%, #14F195 100%);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(153, 69, 255, 0.7);
}

@keyframes solanaGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(153, 69, 255, 0.5); }
    50% { box-shadow: 0 0 30px rgba(153, 69, 255, 0.8); }
}

@keyframes armMove {
    0%, 100% { transform: rotate(20deg); }
    50% { transform: rotate(10deg); }
}

@keyframes armMoveMirror {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-10deg); }
}

@keyframes legMove {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dark-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Value Propositions */
.value-props {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.value-props::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(75, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.prop-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid var(--dark-border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(75, 255, 0, 0.1) 0%, 
        rgba(138, 43, 226, 0.1) 50%,
        rgba(255, 236, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.prop-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-yellow));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.prop-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(75, 255, 0, 0.2);
}

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

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

.prop-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    position: relative;
    color: #222;
}

.icon-gpu, .icon-ai, .icon-passive {
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.icon-gpu::before, .icon-ai::before, .icon-passive::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.icon-gpu::before { content: '\f2db'; } /* fa-microchip */
.icon-ai::before { content: '\f544'; } /* fa-brain */
.icon-passive::before { content: '\f3d1'; } /* fa-coins */

.icon-gpu::after, .icon-ai::after, .icon-passive::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.prop-card:hover .prop-icon {
    animation: iconPulse 0.6s ease-in-out;
}

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

.prop-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(75, 255, 0, 0.5);
}

.prop-description {
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Tokenomics */
.tokenomics {
    background: 
        radial-gradient(circle at 20% 80%, rgba(75, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Neural network pattern */
        radial-gradient(circle at 25% 25%, rgba(75, 255, 0, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(138, 43, 226, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(0, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 236, 0, 0.4) 1px, transparent 1px),
        /* Connecting lines */
        linear-gradient(45deg, transparent 48%, rgba(75, 255, 0, 0.1) 49%, rgba(75, 255, 0, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(138, 43, 226, 0.1) 49%, rgba(138, 43, 226, 0.1) 51%, transparent 52%),
        /* Hologram grid */
        linear-gradient(rgba(75, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 
        200px 200px,
        200px 200px,
        200px 200px,
        200px 200px,
        100px 100px,
        100px 100px,
        60px 60px,
        60px 60px;
    animation: tokenomicsFlow 25s linear infinite;
    pointer-events: none;
}

.tokenomics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Floating particles */
        radial-gradient(circle at 15% 15%, rgba(75, 255, 0, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 85% 85%, rgba(138, 43, 226, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(0, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(255, 236, 0, 0.2) 1px, transparent 1px);
    background-size: 400px 400px, 400px 400px, 300px 300px, 300px 300px;
    animation: tokenomicsParticles 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes tokenomicsFlow {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    25% {
        background-position: 50px 50px, -50px 50px, 50px -50px, -50px -50px, 25px 25px, -25px 25px, 15px 15px, -15px 15px;
    }
    50% {
        background-position: 100px 100px, -100px 100px, 100px -100px, -100px -100px, 50px 50px, -50px 50px, 30px 30px, -30px 30px;
    }
    75% {
        background-position: 150px 150px, -150px 150px, 150px -150px, -150px -150px, 75px 75px, -75px 75px, 45px 45px, -45px 45px;
    }
    100% {
        background-position: 200px 200px, -200px 200px, 200px -200px, -200px -200px, 100px 100px, -100px 100px, 60px 60px, -60px 60px;
    }
}

@keyframes tokenomicsParticles {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
        opacity: 0.3;
    }
    25% {
        background-position: 100px 100px, -100px -100px, 75px -75px, -75px 75px;
        opacity: 0.6;
    }
    50% {
        background-position: 200px 200px, -200px -200px, 150px -150px, -150px 150px;
        opacity: 0.4;
    }
    75% {
        background-position: 300px 300px, -300px -300px, 225px -225px, -225px 225px;
        opacity: 0.5;
    }
    100% {
        background-position: 400px 400px, -400px -400px, 300px -300px, -300px 300px;
        opacity: 0.3;
    }
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.token-details {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(75, 255, 0, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.token-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-secondary);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { opacity: 0.3; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

.token-details::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-yellow));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.token-details:hover::after {
    opacity: 0.3;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.token-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(75, 255, 0, 0.1);
    position: relative;
}

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

.token-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-secondary);
    transition: var(--transition-normal);
}

.token-item:hover::before {
    width: 100%;
}

.token-label {
    color: var(--dark-text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.token-label::before {
    content: '▶';
    color: var(--neon-cyan);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.token-value {
    color: var(--neon-yellow);
    font-weight: 600;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(255, 236, 0, 0.4);
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.distribution-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(75, 255, 0, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.distribution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    animation: cardScanline 3s ease-in-out infinite;
}

@keyframes cardScanline {
    0%, 100% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.distribution-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(75, 255, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(75, 255, 0, 0.3);
    color: #000;
}

.card-info h4 {
    color: var(--neon-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 0 10px rgba(75, 255, 0, 0.5);
}

.percentage {
    color: var(--dark-text);
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-mono);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 10px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 10px;
    position: relative;
    width: 0;
    animation: progressFill 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(75, 255, 0, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: var(--fill-width); }
}

.distribution-card.presale .progress-fill {
    animation-delay: 0.2s;
    --fill-width: 50%;
}

.distribution-card.ai-training .progress-fill {
    animation-delay: 0.4s;
    --fill-width: 30%;
}

.distribution-card.marketing .progress-fill {
    animation-delay: 0.6s;
    --fill-width: 15%;
}

.distribution-card.team .progress-fill {
    animation-delay: 0.8s;
    --fill-width: 5%;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.card-description {
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.amount {
    color: var(--neon-yellow);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 236, 0, 0.5);
}

/* Presale Balance */
.presale-balance {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.presale-balance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(75, 255, 0, 0.02) 49%, rgba(75, 255, 0, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(138, 43, 226, 0.02) 49%, rgba(138, 43, 226, 0.02) 51%, transparent 52%);
    background-size: 20px 20px;
    animation: matrixMove 15s linear infinite;
    pointer-events: none;
}

@keyframes matrixMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.balance-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.balance-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: balanceGlow 4s ease-in-out infinite alternate;
}

@keyframes balanceGlow {
    0% { 
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
        border-color: rgba(0, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 0 0 50px rgba(77, 255, 0, 0.4);
        border-color: rgba(77, 255, 0, 0.4);
    }
}

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

.sol-icon {
    font-size: 3rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(77, 255, 0, 0.6);
    animation: pulse 2s infinite;
}

.balance-header h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin: 0;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.balance-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

#sol-balance {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(77, 255, 0, 0.5);
}

.balance-currency {
    font-size: 1.5rem;
    color: var(--neon-purple);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(154, 0, 255, 0.4);
}



.balance-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(154, 0, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-top:10px;
}

.address-label {
    color: var(--neon-purple);
    font-size: 0.9rem;
    font-weight: 600;
}

.address-value {
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    word-break: break-all;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.copy-address {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-normal);
    color: var(--neon-yellow);
}

.copy-address:hover {
    background: rgba(77, 255, 0, 0.2);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(77, 255, 0, 0.6);
}

.last-updated {
    color: var(--neon-yellow);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.auto-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--neon-purple);
    font-size: 0.8rem;
    opacity: 0.8;
}

.refresh-indicator {
    animation: spin 2s linear infinite;
}

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



.presale-instructions {
    background: linear-gradient(135deg, rgba(154, 0, 255, 0.1) 0%, rgba(255, 236, 0, 0.05) 100%);
    border: 1px solid rgba(255, 236, 0, 0.3);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
}



@keyframes instructionGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.presale-instructions h4 {
    color: var(--neon-yellow);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 236, 0, 0.5);
    position: relative;
}

.presale-instructions h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-secondary);
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-secondary);
    transition: var(--transition-normal);
}

.step:hover {
    transform: translateX(10px);
    border-color: rgba(77, 255, 0, 0.4);
}

.step:hover::before {
    height: 80%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(77, 255, 0, 0.4);
    animation: stepPulse 3s ease-in-out infinite;
}

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

.step-text {
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.presale-cta {
    margin-top: 2rem;
    text-align: center;
}

.presale-instructions-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.presale-instructions-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-normal);
}

.presale-instructions-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.6);
}

.presale-instructions-button:hover::before {
    width: 100%;
    height: 100%;
}

.presale-instructions-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.presale-instructions-button.connecting {
    background: var(--gradient-secondary);
    animation: buttonPulse 1.5s ease-in-out infinite;
}

.presale-instructions-button.connected {
    background: var(--gradient-neon);
}

.presale-instructions-button.disconnected {
    background: var(--gradient-primary);
}

/* Mining Platform */
.mining-platform {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.mining-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(75, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes circuitMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.mining-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.mining-requirements {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.requirement-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(75, 255, 0, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.requirement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    animation: scanProgress 4s ease-in-out infinite;
}

@keyframes scanProgress {
    0%, 100% { transform: scaleX(0); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
}

.requirement-section::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-green);
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.requirement-section h3 {
    color: var(--neon-green);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(75, 255, 0, 0.4);
    position: relative;
    padding-left: 2rem;
}

.requirement-section h3::before {
    content: '◉';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    animation: iconRotate 3s linear infinite;
}

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

.requirement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(75, 255, 0, 0.05);
    border: 1px solid rgba(75, 255, 0, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.requirement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-secondary);
    transition: var(--transition-normal);
}

.requirement-item:hover {
    border-color: rgba(75, 255, 0, 0.3);
    background: rgba(75, 255, 0, 0.1);
    transform: translateX(5px);
}

.requirement-item:hover::before {
    width: 5px;
    box-shadow: 0 0 10px var(--neon-green);
}

.req-label {
    color: var(--dark-text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.req-label::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 0.9rem;
}

.req-value {
    color: var(--neon-yellow);
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 236, 0, 0.3);
    padding: 0.25rem 0.75rem;
    background: rgba(255, 236, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 236, 0, 0.2);
}

.mining-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tier-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.tier-card.bronze { 
    border-color: #CD7F32; 
}
.tier-card.bronze::before {
    background: radial-gradient(circle, rgba(205, 127, 50, 0.1) 0%, transparent 70%);
}

.tier-card.silver { 
    border-color: #C0C0C0; 
}
.tier-card.silver::before {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
}

.tier-card.gold { 
    border-color: #FFD700; 
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}
.tier-card.gold::before {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.tier-card.diamond { 
    border-color: #B9F2FF; 
    box-shadow: 0 0 40px rgba(185, 242, 255, 0.3);
    animation: diamondShine 4s ease-in-out infinite;
}
.tier-card.diamond::before {
    background: radial-gradient(circle, rgba(185, 242, 255, 0.15) 0%, transparent 70%);
}

@keyframes diamondShine {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(185, 242, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(185, 242, 255, 0.5);
        transform: scale(1.02);
    }
}

.tier-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.tier-name::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: currentColor;
}

.tier-card.bronze .tier-name { 
    color: #CD7F32; 
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
}
.tier-card.silver .tier-name { 
    color: #C0C0C0; 
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}
.tier-card.gold .tier-name { 
    color: #FFD700; 
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.tier-card.diamond .tier-name { 
    color: #B9F2FF; 
    text-shadow: 0 0 25px rgba(185, 242, 255, 0.6);
}

.tier-power {
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(75, 255, 0, 0.4);
    font-family: var(--font-mono);
}

.tier-bonus {
    color: var(--neon-pink);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 32, 78, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 32, 78, 0.3);
    display: inline-block;
}

.tier-benefits {
    color: var(--dark-text-secondary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: rgba(75, 255, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(75, 255, 0, 0.1);
}

/* Trading Bot */
.trading-bot {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.trading-bot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(8, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(154, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(75, 255, 0, 0.03) 0%, transparent 70%);
    animation: auraShift 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auraShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(75, 255, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(75, 255, 0, 0.05) 0%, 
        rgba(138, 43, 226, 0.05) 50%, 
        rgba(255, 236, 0, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-yellow),
        var(--neon-green));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
    animation: borderRotate 6s linear infinite paused;
}

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

@keyframes auraShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.feature-item:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    border-color: var(--neon-purple);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(75, 255, 0, 0.3),
        0 0 60px rgba(138, 43, 226, 0.2);
    animation: featureItemFloat 3s ease-in-out infinite;
}

.feature-item:hover::before {
    opacity: 1;
    animation: energyPulse 2s ease-in-out infinite;
}

.feature-item:hover::after {
    opacity: 0;
    animation: none;
}

.feature-icon {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: var(--gradient-secondary);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(75, 255, 0, 0.3);
    color: #222;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(75, 255, 0, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover .feature-icon::after {
    width: 200px;
    height: 200px;
    opacity: 0.3;
    animation: energyExplosion 2s ease-out infinite;
}

@keyframes energyExplosion {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    50% {
        width: 150px;
        height: 150px;
        opacity: 0.4;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.feature-item:hover .feature-icon {
    animation: iconMorphing 2s ease-in-out infinite;
    color: #222;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 0 50px rgba(75, 255, 0, 0.7),
        0 0 100px rgba(138, 43, 226, 0.3);
}

.feature-item:hover .feature-icon::before {
    left: 100%;
    animation: iconShine 1.5s ease-in-out infinite;
}

@keyframes featureItemFloat {
    0%, 100% { 
        transform: translateY(-20px) scale(1.05) rotateX(5deg) rotateZ(0deg);
    }
    50% { 
        transform: translateY(-25px) scale(1.06) rotateX(8deg) rotateZ(1deg);
    }
}

@keyframes energyPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(75, 255, 0, 0.3),
            inset 0 0 20px rgba(75, 255, 0, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(75, 255, 0, 0.6),
            inset 0 0 40px rgba(75, 255, 0, 0.2);
    }
}

@keyframes iconMorphing {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% { 
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.2);
    }
    50% { 
        transform: scale(1.15) rotate(0deg);
        filter: brightness(1.3);
    }
    75% { 
        transform: scale(1.1) rotate(-5deg);
        filter: brightness(1.2);
    }
}

@keyframes iconShine {
    0% { 
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
    50% { 
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    }
    100% { 
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
}

.feature-item h4 {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(75, 255, 0, 0.4);
    position: relative;
    transition: all 0.4s ease;
}

.feature-item:hover h4 {
    transform: translateY(-5px);
    text-shadow: 0 0 30px rgba(75, 255, 0, 0.8);
}

.feature-item h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.feature-item p {
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 1rem;
    background: rgba(75, 255, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(75, 255, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-item:hover p {
    transform: translateY(-3px);
    background: rgba(75, 255, 0, 0.1);
    border-color: rgba(75, 255, 0, 0.2);
    color: #ffffff;
}

.feature-item p::before {
    content: '○';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    animation: statusIndicator 2s ease-in-out infinite;
}

@keyframes statusIndicator {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Roadmap */
.roadmap {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(75, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes hologramGrid {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 30px) rotate(360deg); }
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 0;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(75, 255, 0, 0.2);
    position: relative;
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
    overflow: hidden;
    z-index: 1;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(75, 255, 0, 0.05) 0%, 
        rgba(138, 43, 226, 0.05) 50%, 
        rgba(255, 236, 0, 0.03) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-yellow));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.timeline-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(75, 255, 0, 0.2);
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-item:hover::after {
    opacity: 0.3;
}

.timeline-quarter {
    color: var(--neon-yellow);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    text-shadow: 0 0 20px rgba(255, 236, 0, 0.5);
    position: relative;
    padding-left: 2rem;
}

.timeline-quarter::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--neon-yellow);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-yellow);
    animation: quarterPulse 2s ease-in-out infinite;
}

@keyframes quarterPulse {
    0%, 100% { 
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 20px var(--neon-yellow);
    }
    50% { 
        transform: translateY(-50%) scale(1.2);
        box-shadow: 0 0 30px var(--neon-yellow);
    }
}

.timeline-title {
    color: var(--neon-green);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 0 25px rgba(75, 255, 0, 0.5);
    position: relative;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: titleUnderline 3s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% { width: 80px; opacity: 0.7; }
    50% { width: 120px; opacity: 1; }
}

.timeline-tasks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task {
    color: var(--dark-text-secondary);
    padding: 1rem 1.5rem;
    position: relative;
    padding-left: 3rem;
    background: rgba(75, 255, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(75, 255, 0, 0.1);
    transition: var(--transition-normal);
    font-weight: 500;
    font-size: 1rem;
}

.task::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: taskStatus 3s ease-in-out infinite;
}

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

.task::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 0 15px 15px 0;
    opacity: 0;
    transition: var(--transition-normal);
}

.task:hover {
    background: rgba(75, 255, 0, 0.1);
    border-color: rgba(75, 255, 0, 0.3);
    transform: translateX(10px);
    color: var(--dark-text);
}

.task:hover::after {
    opacity: 1;
}

.timeline-item:nth-child(1) .timeline-quarter::before { background: var(--neon-blue); box-shadow: 0 0 20px var(--neon-blue); }
.timeline-item:nth-child(2) .timeline-quarter::before { background: var(--neon-green); box-shadow: 0 0 20px var(--neon-green); }
.timeline-item:nth-child(3) .timeline-quarter::before { background: var(--neon-purple); box-shadow: 0 0 20px var(--neon-purple); }
.timeline-item:nth-child(4) .timeline-quarter::before { background: var(--neon-pink); box-shadow: 0 0 20px var(--neon-pink); }

/* Final CTA */
.final-cta {
    background: var(--gradient-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(75, 255, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at center, rgba(255, 236, 0, 0.08) 0%, transparent 60%);
    animation: ctaAura 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaAura {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
    }
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 100px,
            rgba(75, 255, 0, 0.01) 101px,
            rgba(75, 255, 0, 0.01) 102px
        );
    animation: ctaPattern 20s linear infinite;
    pointer-events: none;
}

@keyframes ctaPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(75, 255, 0, 0.2);
    margin: 2rem auto;
    max-width: 800px;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 50px rgba(75, 255, 0, 0.3);
    animation: ctaTitleGlow 4s ease-in-out infinite;
    position: relative;
}

@keyframes ctaTitleGlow {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 4px;
    animation: titleUnderlineCTA 3s ease-in-out infinite;
}

@keyframes titleUnderlineCTA {
    0%, 100% { width: 150px; opacity: 0.7; }
    50% { width: 200px; opacity: 1; }
}

.cta-subtitle {
    font-size: 1.4rem;
    color: var(--dark-text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(75, 255, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(75, 255, 0, 0.1);
}

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

.cta-buttons .cta-primary,
.cta-buttons .cta-secondary {
    position: relative;
    overflow: hidden;
}

.cta-buttons .cta-primary::before,
.cta-buttons .cta-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-green), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-yellow),
        var(--neon-green));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
    animation: ctaBorderRotate 4s linear infinite paused;
}

.cta-buttons .cta-primary:hover::before,
.cta-buttons .cta-secondary:hover::before {
    opacity: 0.6;
    animation-play-state: running;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    border-top: 1px solid rgba(75, 255, 0, 0.2);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(75, 255, 0, 0.02) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(138, 43, 226, 0.02) 50%, transparent 100%);
    animation: footerScan 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerScan {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 30px;
    background: var(--gradient-secondary);
    opacity: 0.7;
}

.footer-section h4 {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(75, 255, 0, 0.4);
    position: relative;
    padding-left: 1rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 1rem;
    width: 50px;
    height: 2px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding-left: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    transition: var(--transition-normal);
}

.footer-section ul li::before {
    content: '▸';
    position: absolute;
    left: -1rem;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.footer-section ul li:hover::before {
    opacity: 1;
}

.footer-section ul li a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: 500;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-green);
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(75, 255, 0, 0.3);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.footer-description {
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(75, 255, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(75, 255, 0, 0.1);
    position: relative;
}

.footer-description::before {
    content: '◉';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(75, 255, 0, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-secondary);
    animation: bottomGlow 4s ease-in-out infinite;
}

@keyframes bottomGlow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

.footer-bottom p {
    color: var(--dark-text-muted);
    font-weight: 500;
    background: rgba(75, 255, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(75, 255, 0, 0.1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(75, 255, 0, 0.1);
    background: rgba(75, 255, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(75, 255, 0, 0.1), transparent);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(75, 255, 0, 0.3);
    border-color: rgba(75, 255, 0, 0.3);
}

.footer-links a:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-presale-button {
        display: none !important; /* Hide navbar presale button on mobile */
    }

    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        position: sticky;
        top: 20px;
        z-index: 10;
        scale: 0.7;
        margin-top: 2rem;
    }
    
    .neural-network-animation {
        width: 280px;
        height: 280px;
        animation: neuralNetworkFloat 6s ease-in-out infinite;
    }
    
    .neural-core {
        width: 50px;
        height: 50px;
    }
    
    .neural-node {
        width: 16px;
        height: 16px;
    }
    
    .connection-line {
        stroke-width: 2;
    }
    
    .data-particle {
        width: 6px;
        height: 6px;
    }
    
    @keyframes dataFlow {
        0% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.5);
        }
        10% {
            opacity: 1;
            transform: translate(calc(-50% + 20px), calc(-50% - 30px)) scale(1);
        }
        20% {
            transform: translate(calc(-50% + 40px), calc(-50% - 15px)) scale(1.2);
        }
        30% {
            transform: translate(calc(-50% + 60px), calc(-50% - 35px)) scale(1);
        }
        40% {
            transform: translate(calc(-50% + 80px), calc(-50% - 10px)) scale(1.1);
        }
        50% {
            transform: translate(calc(-50% + 100px), calc(-50% - 30px)) scale(1);
        }
        60% {
            transform: translate(calc(-50% + 120px), calc(-50% - 15px)) scale(1.2);
        }
        70% {
            transform: translate(calc(-50% + 140px), calc(-50% - 35px)) scale(1);
        }
        80% {
            transform: translate(calc(-50% + 160px), calc(-50% - 10px)) scale(1.1);
        }
        90% {
            opacity: 1;
            transform: translate(calc(-50% + 180px), calc(-50% - 30px)) scale(1);
        }
        100% {
            opacity: 0;
            transform: translate(calc(-50% + 200px), calc(-50% - 15px)) scale(0.5);
        }
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .distribution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .distribution-card {
        padding: 1.5rem;
    }
    
    .card-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-info h4 {
        font-size: 1.1rem;
    }
    
    .percentage {
        font-size: 1.75rem;
    }
    
    .mining-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mining-tiers {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Hide desktop wallet section on mobile */
    .wallet-section {
        display: none !important;
    }
    
    /* Hide wallet status on mobile */
    .wallet-status {
        display: none !important;
    }
    
    /* Hide presale instructions button on mobile */
    .presale-instructions-button {
        display: none !important;
    }
    
    /* Hide all presale buttons on mobile */
    .cta-primary,
    #presale-button,
    #presale-instructions-button {
        display: none !important;
    }
    

    
    /* Show mobile wallet section on mobile */
    .mobile-wallet-section {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-visual {
        margin-top: 1rem;
    }
    
    .neural-network-animation {
        width: 350px;
        height: 350px;
    }
    
    .neural-core {
        width: 40px;
        height: 40px;
    }
    
    .neural-node {
        width: 14px;
        height: 14px;
    }
    
    .connection-line {
        stroke-width: 1.5;
    }
    
    .data-particle {
        width: 5px;
        height: 5px;
    }
    
    @keyframes dataFlow {
        0% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.5);
        }
        10% {
            opacity: 1;
            transform: translate(calc(-50% + 15px), calc(-50% - 25px)) scale(1);
        }
        20% {
            transform: translate(calc(-50% + 30px), calc(-50% - 12px)) scale(1.2);
        }
        30% {
            transform: translate(calc(-50% + 45px), calc(-50% - 30px)) scale(1);
        }
        40% {
            transform: translate(calc(-50% + 60px), calc(-50% - 8px)) scale(1.1);
        }
        50% {
            transform: translate(calc(-50% + 75px), calc(-50% - 25px)) scale(1);
        }
        60% {
            transform: translate(calc(-50% + 90px), calc(-50% - 12px)) scale(1.2);
        }
        70% {
            transform: translate(calc(-50% + 105px), calc(-50% - 30px)) scale(1);
        }
        80% {
            transform: translate(calc(-50% + 120px), calc(-50% - 8px)) scale(1.1);
        }
        90% {
            opacity: 1;
            transform: translate(calc(-50% + 135px), calc(-50% - 25px)) scale(1);
        }
        100% {
            opacity: 0;
            transform: translate(calc(-50% + 150px), calc(-50% - 12px)) scale(0.5);
        }
    }
    
    .balance-display {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .balance-card {
        padding: 1.5rem;
    }
    
    #sol-balance {
        font-size: 2rem;
    }
    
    .address-value {
        font-size: 0.65rem;
        word-break: break-all;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .presale-instructions-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 240px;
    }
    
    .distribution-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .distribution-card {
        padding: 1.25rem;
    }
    
    .card-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .card-info h4 {
        font-size: 1rem;
    }
    
    .percentage {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .neural-network-animation {
        width: 200px;
        height: 200px;
    }
    
    .neural-core {
        width: 35px;
        height: 35px;
    }
    
    .neural-node {
        width: 12px;
        height: 12px;
    }
    
    .connection-line {
        stroke-width: 1;
    }
    
    .data-particle {
        width: 4px;
        height: 4px;
    }
    
    @keyframes dataFlow {
        0% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.5);
        }
        10% {
            opacity: 1;
            transform: translate(calc(-50% + 12px), calc(-50% - 20px)) scale(1);
        }
        20% {
            transform: translate(calc(-50% + 24px), calc(-50% - 10px)) scale(1.2);
        }
        30% {
            transform: translate(calc(-50% + 36px), calc(-50% - 25px)) scale(1);
        }
        40% {
            transform: translate(calc(-50% + 48px), calc(-50% - 6px)) scale(1.1);
        }
        50% {
            transform: translate(calc(-50% + 60px), calc(-50% - 20px)) scale(1);
        }
        60% {
            transform: translate(calc(-50% + 72px), calc(-50% - 10px)) scale(1.2);
        }
        70% {
            transform: translate(calc(-50% + 84px), calc(-50% - 25px)) scale(1);
        }
        80% {
            transform: translate(calc(-50% + 96px), calc(-50% - 6px)) scale(1.1);
        }
        90% {
            opacity: 1;
            transform: translate(calc(-50% + 108px), calc(-50% - 20px)) scale(1);
        }
        100% {
            opacity: 0;
            transform: translate(calc(-50% + 120px), calc(-50% - 10px)) scale(0.5);
        }
    }
    
    .balance-card {
        padding: 1.25rem;
    }
    
    #sol-balance {
        font-size: 1.75rem;
    }
    
    .address-value {
        font-size: 0.6rem;
    }
    
    .cta-primary, .cta-secondary {
        max-width: 260px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .presale-instructions-button {
        max-width: 220px;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    .distribution-card {
        padding: 1rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .card-info h4 {
        font-size: 0.9rem;
    }
    
    .percentage {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* ===============================================
   WALLET ADAPTER STYLES
   =============================================== */

/* Wallet Section Container */
.wallet-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Wallet Status Display */
.wallet-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-height: 48px;
    transition: all var(--transition-normal);
}

.wallet-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    opacity: 0.1;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.wallet-status:hover::before {
    opacity: 0.2;
}

.wallet-text {
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    font-weight: 500;
    transition: color var(--transition-normal);
}

/* Disconnect Button */
.disconnect-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--dark-text);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(255, 32, 78, 0.3);
}

.disconnect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 32, 78, 0.5);
}



/* Mobile Wallet Section */
.mobile-wallet-section {
    display: none; /* Hidden by default, shown only on mobile */
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-wallet-title {
    font-size: 1.1rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mobile-wallet-address {
    background: var(--dark-surface);
    color: var(--dark-text);
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    word-break: break-all;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid var(--dark-border);
    margin-bottom: 0.5rem;
    position: relative;
}

.mobile-wallet-address:hover {
    background: var(--dark-border);
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(75, 255, 0, 0.3);
}

.mobile-wallet-copy-hint {
    font-size: 0.8rem;
    color: var(--dark-text-secondary);
    font-style: italic;
}

/* Wallet Install Message */
.wallet-install-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid var(--neon-pink);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    z-index: 10000;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(255, 32, 78, 0.3);
    animation: slideInFromRight 0.5s ease-out;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.wallet-install-message p {
    margin: 0.5rem 0;
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
}

.wallet-install-message a {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.wallet-install-message a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    z-index: 10000;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    animation: slideInFromRight 0.5s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.notification.success {
    background: rgba(77, 255, 0, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.notification.error {
    background: rgba(255, 32, 78, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

.notification.info {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.notification-message {
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Loading States */
.wallet-status.loading {
    animation: walletPulse 1.5s ease-in-out infinite;
}

@keyframes walletPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Connected State Enhancements */
.wallet-status.connected {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(77, 255, 0, 0.2);
}

.wallet-status.connected::before {
    background: var(--gradient-secondary);
    opacity: 0.15;
}

.wallet-status.connected .wallet-text {
    color: var(--neon-green);
}

/* Button State Modifications */
.cta-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta-primary.connecting {
    background: var(--gradient-secondary);
    animation: buttonPulse 1.5s ease-in-out infinite;
}

.cta-primary.connected {
    background: var(--gradient-secondary);
    color:#000;;
}

.cta-primary.disconnected {
    background: var(--gradient-primary);
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .wallet-section {
        width: 100%;
        align-items: stretch;
    }
    
    .wallet-status {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .wallet-install-message {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .wallet-status {
        padding: 0.5rem 1rem;
    }
    
    .disconnect-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .notification {
        top: 10px;
        padding: 0.75rem 1rem;
    }
    
    .notification-message {
        font-size: 0.8rem;
    }
    
    /* Mobile wallet section responsive on smaller screens */
    .mobile-wallet-address {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .mobile-wallet-title {
        font-size: 1rem;
    }
    
    .mobile-wallet-copy-hint {
        font-size: 0.75rem;
    }
}

/* Custom Payment Modal Styles */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.payment-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.payment-modal {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
    border: 2px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(138, 43, 226, 0.2);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.payment-modal-overlay.show .payment-modal {
    transform: scale(1) translateY(0);
}

.payment-modal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 18px;
    z-index: -2;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite;
}

.payment-modal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(75, 255, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 255, 0, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.6;
    animation: gridMove 20s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.payment-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.payment-modal-close {
    background: none;
    border: none;
    color: var(--dark-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.payment-modal-close:hover {
    background: var(--dark-surface);
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.payment-modal-body {
    margin-bottom: 1.5rem;
}

.payment-form-group {
    margin-bottom: 1rem;
}

.payment-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.payment-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark-surface);
    border: 2px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
}

.payment-form-input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(8, 0, 255, 0.3);
}

.payment-form-input::placeholder {
    color: var(--dark-text-muted);
}

.payment-info {
    background: rgba(75, 255, 0, 0.1);
    border: 1px solid rgba(75, 255, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.payment-info-text {
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    margin: 0;
}

.payment-info-address {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-green);
    word-break: break-all;
    margin-top: 0.5rem;
}

.payment-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.payment-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.payment-btn-cancel {
    background: var(--dark-surface);
    color: var(--dark-text-secondary);
    border: 2px solid var(--dark-border);
}

.payment-btn-cancel:hover {
    background: var(--dark-border);
    color: var(--dark-text);
}

.payment-btn-confirm {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
    min-width: 120px;
}

.payment-btn-confirm:hover {
    box-shadow: 0 0 20px rgba(8, 0, 255, 0.5);
    transform: translateY(-2px);
}

.payment-btn-confirm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

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

.payment-btn.loading {
    pointer-events: none;
}

.payment-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@media (max-width: 480px) {
    .payment-modal {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .payment-modal-title {
        font-size: 1.25rem;
    }
    
    .payment-modal-footer {
        flex-direction: column;
    }
    
    .payment-btn {
        width: 100%;
    }
}

.nav-presale-button {
    background: var(--gradient-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Additional Modern Robot Animations */
@keyframes bodyPulse {
    0%, 100% { 
        box-shadow: 0 0 50px rgba(138, 43, 226, 0.4);
        transform: translateX(-50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 80px rgba(138, 43, 226, 0.6);
        transform: translateX(-50%) scale(1.02);
    }
}

@keyframes bodyMatrix {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, -50px -50px; }
}

@keyframes coreEnergy {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        box-shadow: 0 0 60px rgba(0, 255, 255, 0.6);
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
        box-shadow: 0 0 100px rgba(0, 255, 255, 0.8);
    }
}

@keyframes coreInner {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

@keyframes coreRing {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1.2);
        opacity: 0.1;
    }
}

@keyframes circuitFlow {
    0%, 100% { 
        opacity: 0.5;
        box-shadow: 0 0 15px var(--neon-cyan);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 30px var(--neon-cyan);
    }
}

@keyframes armMechanic {
    0%, 100% { 
        transform: rotate(15deg);
        box-shadow: 0 0 20px var(--neon-cyan);
    }
    50% { 
        transform: rotate(-5deg);
        box-shadow: 0 0 40px var(--neon-cyan);
    }
}

@keyframes armMechanicMirror {
    0%, 100% { 
        transform: rotate(-15deg);
        box-shadow: 0 0 20px var(--neon-cyan);
    }
    50% { 
        transform: rotate(5deg);
        box-shadow: 0 0 40px var(--neon-cyan);
    }
}

@keyframes legMechanic {
    0%, 100% { 
        transform: rotate(0deg);
        box-shadow: 0 0 25px var(--neon-purple);
    }
    50% { 
        transform: rotate(8deg);
        box-shadow: 0 0 45px var(--neon-purple);
    }
}

@keyframes solanaHologram {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(153, 69, 255, 0.7);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% { 
        box-shadow: 0 0 50px rgba(153, 69, 255, 0.9);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.nav-presale-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.8);
}

.nav-presale-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.nav-presale-button.connecting {
    background: var(--gradient-secondary);
    animation: buttonPulse 1.5s ease-in-out infinite;
}

.nav-presale-button.connected {
    background: var(--gradient-secondary);
    color:#000;
}

.nav-presale-button.disconnected {
    background: var(--gradient-primary);
} 

/* Neural Core */
.neural-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    box-shadow: 
        0 0 90px rgba(0, 255, 255, 0.6),
        0 0 45px rgba(138, 43, 226, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.3);
    animation: corePulse 4s ease-in-out infinite;
    z-index: 10;
}

.core-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    animation: corePulseRing 3s ease-in-out infinite;
}

.core-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: coreGlowPulse 5s ease-in-out infinite;
}

/* Neural Nodes */
.neural-node {
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, rgba(0, 255, 255, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 35px var(--neon-cyan),
        inset 0 0 12px rgba(0, 255, 255, 0.8);
    animation: nodePulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
    z-index: 5;
}

/* Neural Connections SVG */
.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.connection-line {
    stroke: var(--neon-cyan);
    stroke-width: 3;
    stroke-linecap: round;
    fill: none;
    filter: drop-shadow(0 0 12px var(--neon-cyan));
    animation: connectionFlow 4s linear infinite;
    opacity: 0.6;
}

.connection-line:nth-child(1) { animation-delay: 0s; }
.connection-line:nth-child(2) { animation-delay: 0.2s; }
.connection-line:nth-child(3) { animation-delay: 0.4s; }
.connection-line:nth-child(4) { animation-delay: 0.6s; }
.connection-line:nth-child(5) { animation-delay: 0.8s; }
.connection-line:nth-child(6) { animation-delay: 1s; }
.connection-line:nth-child(7) { animation-delay: 1.2s; }
.connection-line:nth-child(8) { animation-delay: 1.4s; }
.connection-line:nth-child(9) { animation-delay: 1.6s; }
.connection-line:nth-child(10) { animation-delay: 1.8s; }
.connection-line:nth-child(11) { animation-delay: 2s; }
.connection-line:nth-child(12) { animation-delay: 2.2s; }
.connection-line:nth-child(13) { animation-delay: 2.4s; }
.connection-line:nth-child(14) { animation-delay: 2.6s; }
.connection-line:nth-child(15) { animation-delay: 2.8s; }
.connection-line:nth-child(16) { animation-delay: 3s; }
.connection-line:nth-child(17) { animation-delay: 3.2s; }
.connection-line:nth-child(18) { animation-delay: 3.4s; }
.connection-line:nth-child(19) { animation-delay: 3.6s; }
.connection-line:nth-child(20) { animation-delay: 3.8s; }
.connection-line:nth-child(21) { animation-delay: 4s; }
.connection-line:nth-child(22) { animation-delay: 4.2s; }
.connection-line:nth-child(23) { animation-delay: 4.4s; }
.connection-line:nth-child(24) { animation-delay: 4.6s; }
.connection-line:nth-child(25) { animation-delay: 4.8s; }
.connection-line:nth-child(26) { animation-delay: 5s; }
.connection-line:nth-child(27) { animation-delay: 5.2s; }
.connection-line:nth-child(28) { animation-delay: 5.4s; }
.connection-line:nth-child(29) { animation-delay: 5.6s; }
.connection-line:nth-child(30) { animation-delay: 5.8s; }
.connection-line:nth-child(31) { animation-delay: 6s; }

/* Data Flow Particles */
.data-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 22px var(--neon-cyan);
    animation: dataFlow 8s linear infinite;
    animation-delay: var(--delay);
    z-index: 4;
}

/* Solana Logo Neural */
.solana-logo-neural {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%),
        linear-gradient(45deg, #9945FF 0%, #14F195 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
    box-shadow: 
        0 0 20px rgba(153, 69, 255, 0.6),
        0 0 10px rgba(20, 241, 149, 0.4);
    animation: solanaNeuralGlow 4s ease-in-out infinite;
    z-index: 5;
}

.solana-logo-neural::before {
    content: '◎';
    animation: solanaNeuralPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes neuralNetworkFloat {
    0%, 100% { 
        transform: translateY(0px) rotateZ(0deg);
        filter: drop-shadow(0 20px 40px rgba(0, 255, 255, 0.3));
    }
    25% { 
        transform: translateY(-10px) rotateZ(1deg);
        filter: drop-shadow(0 25px 50px rgba(0, 255, 255, 0.4));
    }
    50% { 
        transform: translateY(-5px) rotateZ(-1deg);
        filter: drop-shadow(0 30px 60px rgba(0, 255, 255, 0.5));
    }
    75% { 
        transform: translateY(-15px) rotateZ(0.5deg);
        filter: drop-shadow(0 25px 50px rgba(0, 255, 255, 0.4));
    }
}

@keyframes corePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 60px rgba(0, 255, 255, 0.6),
            0 0 30px rgba(138, 43, 226, 0.4),
            inset 0 0 20px rgba(0, 255, 255, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 80px rgba(0, 255, 255, 0.8),
            0 0 40px rgba(138, 43, 226, 0.6),
            inset 0 0 25px rgba(0, 255, 255, 0.4);
    }
}

@keyframes corePulseRing {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.4;
    }
}

@keyframes coreGlowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes nodePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 35px var(--neon-cyan),
            inset 0 0 12px rgba(0, 255, 255, 0.8);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.4);
        box-shadow: 
            0 0 50px var(--neon-cyan),
            0 0 30px var(--neon-purple),
            inset 0 0 18px rgba(0, 255, 255, 1);
    }
}

@keyframes connectionFlow {
    0% { 
        opacity: 0.3;
        stroke-width: 2;
        filter: drop-shadow(0 0 6px var(--neon-cyan));
    }
    25% { 
        opacity: 0.6;
        stroke-width: 3;
        filter: drop-shadow(0 0 10px var(--neon-cyan));
    }
    50% { 
        opacity: 1;
        stroke-width: 4;
        filter: drop-shadow(0 0 15px var(--neon-cyan)) drop-shadow(0 0 8px var(--neon-purple));
    }
    75% { 
        opacity: 0.7;
        stroke-width: 3;
        filter: drop-shadow(0 0 10px var(--neon-cyan));
    }
    100% { 
        opacity: 0.3;
        stroke-width: 2;
        filter: drop-shadow(0 0 6px var(--neon-cyan));
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translate(calc(-50% + 45px), calc(-50% - 60px)) scale(1);
    }
    20% {
        transform: translate(calc(-50% + 90px), calc(-50% - 30px)) scale(1.2);
    }
    30% {
        transform: translate(calc(-50% + 135px), calc(-50% - 75px)) scale(1);
    }
    40% {
        transform: translate(calc(-50% + 180px), calc(-50% - 15px)) scale(1.1);
    }
    50% {
        transform: translate(calc(-50% + 225px), calc(-50% - 60px)) scale(1);
    }
    60% {
        transform: translate(calc(-50% + 270px), calc(-50% - 30px)) scale(1.2);
    }
    70% {
        transform: translate(calc(-50% + 315px), calc(-50% - 75px)) scale(1);
    }
    80% {
        transform: translate(calc(-50% + 360px), calc(-50% - 15px)) scale(1.1);
    }
    90% {
        opacity: 1;
        transform: translate(calc(-50% + 405px), calc(-50% - 60px)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + 450px), calc(-50% - 30px)) scale(0.5);
    }
}

@keyframes solanaNeuralGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(153, 69, 255, 0.6),
            0 0 10px rgba(20, 241, 149, 0.4);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(153, 69, 255, 0.8),
            0 0 20px rgba(20, 241, 149, 0.6);
    }
}

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