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

:root {
    --primary-black: #0A0A0A;
    --midnight-blue: #001F3F;
    --dark-purple: #2A0A2A;
    --neon-cyan: #00FFFF;
    --neon-blue: #0080FF;
    --electric-blue: #00D4FF;
    --deep-blue: #0066CC;
    --laser-blue: #00BFFF;
    --neon-pink: #FF00FF;
    --neon-green: #39FF14;
    --neon-yellow: #FFFF00;
    --silver-gray: #808080;
    --white: #FFFFFF;
    
    --font-main: 'Orbitron', monospace;
    --font-body: 'Roboto Mono', monospace;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--deep-blue) 0%, var(--midnight-blue) 50%, var(--primary-black) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loading-logo {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--electric-blue);
    margin-bottom: 2rem;
    text-shadow: 
        0 0 20px var(--electric-blue),
        0 0 40px var(--electric-blue),
        0 0 60px var(--deep-blue);
    animation: logo-pulse 2s ease-in-out infinite;
}

.loading-text {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
    animation: pulse 1s infinite;
}

.loading-bar {
    width: 400px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 128, 255, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--deep-blue), var(--electric-blue), var(--neon-cyan));
    border-radius: 3px;
    animation: loading 2s ease-in-out;
    box-shadow: 
        0 0 20px var(--electric-blue),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent);
    animation: loading-particles 1s linear infinite;
}

.loading-percentage {
    font-family: var(--font-main);
    color: var(--laser-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--laser-blue);
}

.loading-status {
    font-family: var(--font-body);
    color: var(--silver-gray);
    font-size: 0.9rem;
    animation: status-blink 2s infinite;
}

.loading-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

.loading-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
    animation: scan-down 3s linear infinite;
    box-shadow: 0 0 20px var(--electric-blue);
}

@keyframes logo-pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 20px var(--electric-blue),
            0 0 40px var(--electric-blue),
            0 0 60px var(--deep-blue);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 
            0 0 30px var(--electric-blue),
            0 0 60px var(--electric-blue),
            0 0 90px var(--deep-blue);
    }
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

@keyframes scan-down {
    0% { top: 0%; }
    100% { top: 100%; }
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.1);
}

.nav-logo {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--electric-blue);
    text-shadow: 
        0 0 10px var(--electric-blue),
        0 0 20px var(--deep-blue);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: -2.5rem;
}

.nav-link {
    font-family: var(--font-main);
    color: var(--silver-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 8px var(--electric-blue);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-blue), var(--neon-cyan));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--electric-blue);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, var(--deep-blue) 0%, var(--midnight-blue) 40%, var(--primary-black) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: circuit-move 8s linear infinite;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 128, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 128, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-pulse 4s ease-in-out infinite;
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 212, 255, 0.03) 10px,
        rgba(0, 212, 255, 0.03) 20px
    );
    animation: data-flow 15s linear infinite;
}

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

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    padding: 0 2rem;
    align-items: center;
}

.title-container {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 0 10px var(--electric-blue),
        0 0 20px var(--deep-blue),
        0 0 30px var(--neon-blue);
}

.title-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    animation: title-glow-pulse 3s ease-in-out infinite;
    z-index: 1;
}

.title-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
    animation: title-scan 4s linear infinite;
    z-index: 3;
}

.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.subtitle-line {
    font-size: 1.3rem;
    color: var(--silver-gray);
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.subtitle-line.warning {
    color: var(--neon-pink);
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-pink);
    animation: warning-blink 2s infinite;
}

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

.cta-button {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
}

.cta-button:hover {
    color: var(--primary-black);
    box-shadow: 
        0 0 30px var(--electric-blue),
        inset 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--neon-cyan);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
    text-shadow: 0 0 10px var(--primary-black);
}

.cta-button.secondary {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--laser-blue));
    color: var(--primary-black);
    box-shadow: 
        0 0 30px var(--neon-blue),
        inset 0 0 20px rgba(0, 128, 255, 0.3);
}

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

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

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hologram-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.hologram-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 12s linear infinite;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--electric-blue);
    background: rgba(0, 212, 255, 0.05);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 20px var(--electric-blue),
        inset 0 0 20px rgba(0, 212, 255, 0.2);
}

.cube-front { transform: translate(-50%, -50%) translateZ(100px); }
.cube-back { transform: translate(-50%, -50%) rotateY(180deg) translateZ(100px); }
.cube-left { transform: translate(-50%, -50%) rotateY(-90deg) translateZ(100px); }
.cube-right { transform: translate(-50%, -50%) rotateY(90deg) translateZ(100px); }
.cube-top { transform: translate(-50%, -50%) rotateX(90deg) translateZ(100px); }
.cube-bottom { transform: translate(-50%, -50%) rotateX(-90deg) translateZ(100px); }

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--laser-blue), transparent);
    animation: scan 3s linear infinite;
    box-shadow: 0 0 10px var(--laser-blue);
}

.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    animation: energy-pulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 30px var(--electric-blue),
        inset 0 0 30px rgba(0, 212, 255, 0.3);
}

.energy-ring.ring-2 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
    border-color: var(--neon-blue);
}

.energy-ring.ring-3 {
    width: 350px;
    height: 350px;
    animation-delay: 2s;
    border-color: var(--laser-blue);
}

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

.float-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--electric-blue);
}

.float-element.element-1 {
    top: 20%;
    left: 10%;
    animation: float-1 8s ease-in-out infinite;
}

.float-element.element-2 {
    top: 70%;
    right: 15%;
    animation: float-2 10s ease-in-out infinite;
}

.float-element.element-3 {
    bottom: 20%;
    left: 20%;
    animation: float-3 12s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--silver-gray);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px var(--electric-blue);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--electric-blue);
    border-bottom: 2px solid var(--electric-blue);
    transform: rotate(45deg);
    margin: 0 auto 1rem;
    box-shadow: 0 0 10px var(--electric-blue);
}

.scroll-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--silver-gray);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--electric-blue);
    box-shadow: 0 0 10px var(--electric-blue);
}

@keyframes circuit-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes data-flow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

@keyframes title-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes title-scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

@keyframes warning-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes rotate-cube {
    0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

@keyframes energy-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) rotateX(60deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) rotateX(60deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.5); }
    66% { transform: translate(-20px, 20px) scale(0.8); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.3); }
    66% { transform: translate(20px, -20px) scale(0.9); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, 25px) scale(1.4); }
    66% { transform: translate(-30px, -30px) scale(0.7); }
}

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

/* Common Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Genesis Section */
.genesis-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight-blue) 100%);
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.05) 2px,
        rgba(0, 212, 255, 0.05) 4px
    );
    animation: data-flow 20s linear infinite;
}

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

.genesis-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--silver-gray);
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.highlight {
    color: var(--electric-blue);
    font-weight: 700;
    text-shadow: 
        0 0 10px var(--electric-blue),
        0 0 20px var(--deep-blue);
}

.genesis-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.code-matrix {
    width: 300px;
    height: 300px;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 128, 255, 0.05);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 128, 255, 0.1);
}

.matrix-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
    animation: matrix-flow 3s linear infinite;
    box-shadow: 0 0 10px var(--electric-blue);
}

.matrix-line:nth-child(2) {
    top: 33%;
    animation-delay: 1s;
    background: linear-gradient(90deg, transparent, var(--laser-blue), transparent);
}

.matrix-line:nth-child(3) {
    top: 66%;
    animation-delay: 2s;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

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

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 128, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--electric-blue);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 128, 255, 0.1);
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-core {
    width: 40px;
    height: 40px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 
        0 0 20px var(--electric-blue),
        0 0 40px var(--deep-blue),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: pulse-core 2s infinite;
}

.icon-neural {
    width: 50px;
    height: 50px;
    border: 3px solid var(--laser-blue);
    position: relative;
    box-shadow: 0 0 15px var(--laser-blue);
}

.icon-neural::before,
.icon-neural::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--laser-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--laser-blue);
}

.icon-neural::before {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-neural::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-shield {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid var(--neon-blue);
    filter: drop-shadow(0 0 15px var(--neon-blue));
}

.icon-interface {
    width: 50px;
    height: 30px;
    border: 2px solid var(--electric-blue);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 15px var(--electric-blue);
}

.icon-interface::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 15px;
    border: 1px solid var(--electric-blue);
    border-radius: 2px;
}

@keyframes pulse-core {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 20px var(--electric-blue),
            0 0 40px var(--deep-blue),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 
            0 0 30px var(--electric-blue),
            0 0 60px var(--deep-blue),
            inset 0 0 25px rgba(255, 255, 255, 0.5);
    }
}

.feature-title {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--electric-blue);
}

.feature-description {
    color: var(--silver-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 0 3px rgba(0, 212, 255, 0.3);
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--electric-blue);
    text-shadow: 
        0 0 10px var(--electric-blue),
        0 0 20px var(--deep-blue);
}

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

/* Architecture Section */
.architecture-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--primary-black) 100%);
}

.architecture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diagram-layer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.diagram-layer:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.layer-title {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--white);
}

.layer-nodes {
    display: flex;
    gap: 1rem;
}

.node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.node.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: node-pulse 2s infinite;
}

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

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--neon-pink);
}

.spec-label {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--silver-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--white);
}

/* Protocol Section */
.protocol-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-black) 100%);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
}

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

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--neon-cyan);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--neon-cyan);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem;
    max-width: 350px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.timeline-title {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-family: var(--font-main);
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-description {
    color: var(--silver-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--midnight-blue) 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: circuit-pulse 4s ease-in-out infinite;
}

@keyframes circuit-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 2rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--silver-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-value {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    min-width: 80px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 5px;
}

.countdown-label {
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--silver-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo .logo-text {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

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

.footer-link {
    color: var(--silver-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan);
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.social-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.social-icon.twitter {
    background: var(--neon-cyan);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.social-icon.github {
    background: var(--white);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.social-icon.discord {
    background: var(--neon-pink);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Enhanced Particle Styles */
.advanced-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;
    animation: float-particle-advanced 20s linear infinite;
}

@keyframes float-particle-advanced {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(80vh) translateX(10px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(40vh) translateX(50px) scale(1.2);
    }
    90% {
        opacity: 0.8;
        transform: translateY(10vh) translateX(100px) scale(1);
    }
    100% {
        transform: translateY(-100vh) translateX(150px) scale(0);
        opacity: 0;
    }
}

.button-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Enhanced Glitch Effect */
.glitch {
    position: relative;
    text-shadow: 
        0.05em 0 0 rgba(0, 212, 255, 0.75),
        -0.025em -0.05em 0 rgba(0, 128, 255, 0.75),
        0.025em 0.05em 0 rgba(0, 191, 255, 0.75);
    animation: glitch 1s linear infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--electric-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--laser-blue);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { 
        text-shadow: 
            0.05em 0 0 rgba(0, 212, 255, 0.75),
            -0.05em -0.025em 0 rgba(0, 128, 255, 0.75),
            0.025em 0.05em 0 rgba(0, 191, 255, 0.75);
    }
    14% { 
        text-shadow: 
            0.05em 0 0 rgba(0, 212, 255, 0.75),
            -0.05em -0.025em 0 rgba(0, 128, 255, 0.75),
            0.025em 0.05em 0 rgba(0, 191, 255, 0.75);
    }
    15% { 
        text-shadow: 
            -0.05em -0.025em 0 rgba(0, 212, 255, 0.75),
            0.025em 0.025em 0 rgba(0, 128, 255, 0.75),
            -0.05em -0.05em 0 rgba(0, 191, 255, 0.75);
    }
    49% { 
        text-shadow: 
            -0.05em -0.025em 0 rgba(0, 212, 255, 0.75),
            0.025em 0.025em 0 rgba(0, 128, 255, 0.75),
            -0.05em -0.05em 0 rgba(0, 191, 255, 0.75);
    }
    50% { 
        text-shadow: 
            0.025em 0.05em 0 rgba(0, 212, 255, 0.75),
            0.05em 0 0 rgba(0, 128, 255, 0.75),
            0 -0.05em 0 rgba(0, 191, 255, 0.75);
    }
    99% { 
        text-shadow: 
            0.025em 0.05em 0 rgba(0, 212, 255, 0.75),
            0.05em 0 0 rgba(0, 128, 255, 0.75),
            0 -0.05em 0 rgba(0, 191, 255, 0.75);
    }
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(42px, 9999px, 44px, 0); transform: skew(0.5deg); }
    5% { clip: rect(12px, 9999px, 59px, 0); transform: skew(0.5deg); }
    10% { clip: rect(48px, 9999px, 29px, 0); transform: skew(0.5deg); }
    15% { clip: rect(42px, 9999px, 73px, 0); transform: skew(0.5deg); }
    20% { clip: rect(63px, 9999px, 27px, 0); transform: skew(0.5deg); }
    25% { clip: rect(34px, 9999px, 55px, 0); transform: skew(0.5deg); }
    30% { clip: rect(86px, 9999px, 73px, 0); transform: skew(0.5deg); }
    35% { clip: rect(20px, 9999px, 20px, 0); transform: skew(0.5deg); }
    40% { clip: rect(26px, 9999px, 60px, 0); transform: skew(0.5deg); }
    45% { clip: rect(25px, 9999px, 66px, 0); transform: skew(0.5deg); }
    50% { clip: rect(57px, 9999px, 98px, 0); transform: skew(0.5deg); }
    55% { clip: rect(5px, 9999px, 46px, 0); transform: skew(0.5deg); }
    60% { clip: rect(82px, 9999px, 31px, 0); transform: skew(0.5deg); }
    65% { clip: rect(54px, 9999px, 27px, 0); transform: skew(0.5deg); }
    70% { clip: rect(28px, 9999px, 99px, 0); transform: skew(0.5deg); }
    75% { clip: rect(45px, 9999px, 69px, 0); transform: skew(0.5deg); }
    80% { clip: rect(23px, 9999px, 85px, 0); transform: skew(0.5deg); }
    85% { clip: rect(54px, 9999px, 84px, 0); transform: skew(0.5deg); }
    90% { clip: rect(45px, 9999px, 47px, 0); transform: skew(0.5deg); }
    95% { clip: rect(37px, 9999px, 20px, 0); transform: skew(0.5deg); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(65px, 9999px, 100px, 0); transform: skew(0.5deg); }
    5% { clip: rect(52px, 9999px, 74px, 0); transform: skew(0.5deg); }
    10% { clip: rect(79px, 9999px, 85px, 0); transform: skew(0.5deg); }
    15% { clip: rect(75px, 9999px, 5px, 0); transform: skew(0.5deg); }
    20% { clip: rect(67px, 9999px, 61px, 0); transform: skew(0.5deg); }
    25% { clip: rect(14px, 9999px, 79px, 0); transform: skew(0.5deg); }
    30% { clip: rect(1px, 9999px, 66px, 0); transform: skew(0.5deg); }
    35% { clip: rect(86px, 9999px, 30px, 0); transform: skew(0.5deg); }
    40% { clip: rect(23px, 9999px, 98px, 0); transform: skew(0.5deg); }
    45% { clip: rect(85px, 9999px, 72px, 0); transform: skew(0.5deg); }
    50% { clip: rect(71px, 9999px, 75px, 0); transform: skew(0.5deg); }
    55% { clip: rect(2px, 9999px, 48px, 0); transform: skew(0.5deg); }
    60% { clip: rect(30px, 9999px, 16px, 0); transform: skew(0.5deg); }
    65% { clip: rect(59px, 9999px, 50px, 0); transform: skew(0.5deg); }
    70% { clip: rect(41px, 9999px, 62px, 0); transform: skew(0.5deg); }
    75% { clip: rect(2px, 9999px, 82px, 0); transform: skew(0.5deg); }
    80% { clip: rect(47px, 9999px, 73px, 0); transform: skew(0.5deg); }
    85% { clip: rect(3px, 9999px, 27px, 0); transform: skew(0.5deg); }
    90% { clip: rect(26px, 9999px, 55px, 0); transform: skew(0.5deg); }
    95% { clip: rect(42px, 9999px, 97px, 0); transform: skew(0.5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(0, 255, 255, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .genesis-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .architecture-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding-left: 0;
        padding-right: 2rem;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-value {
        font-size: 2rem;
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
        margin-left: 50px !important;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
        min-width: 50px;
        padding: 0.5rem;
    }
}
