/* Cyber Effects CSS */
#cyber-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cyber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Matrix rain effect */
.matrix-rain {
    position: absolute;
    color: #FF5331;
    font-family: monospace;
    font-size: 12px;
    opacity: 0.3;
    animation: fall linear infinite;
}

@keyframes fall {
    0% { transform: translateY(-100vh); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Glitch effects */
.cyber-glitch {
    position: absolute;
    background: linear-gradient(90deg, transparent, #FF5331, transparent);
    height: 2px;
    width: 100%;
    opacity: 0.1;
    animation: glitch-sweep 0.1s linear;
}

@keyframes glitch-sweep {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

/* Neon glow particles */
.neon-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FF5331;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF5331;
    opacity: 0.4;
    animation: float 4s ease-in-out infinite;
}

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

/* Circuit lines */
.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #FF5331, transparent);
    height: 1px;
    opacity: 0.2;
    animation: circuit-flow 3s linear infinite;
}

@keyframes circuit-flow {
    0% { width: 0; }
    50% { width: 200px; }
    100% { width: 0; }
}

/* Data stream */
.data-stream {
    position: absolute;
    color: #FF5331;
    font-family: monospace;
    font-size: 8px;
    opacity: 0.2;
    animation: stream 2s linear infinite;
}

@keyframes stream {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100vw); }
}

/* Hologram effect */
.hologram-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF5331, transparent);
    opacity: 0.1;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .matrix-rain {
        font-size: 10px;
    }
    
    .data-stream {
        font-size: 6px;
    }
    
    .neon-particle {
        width: 1px;
        height: 1px;
    }
}