
/* Futuristic Theme Overrides */
:root {
    --neon-blue: #00ccff;
    --neon-red: #ff0044;
    --dark-bg: #050505;
    --panel-bg: rgba(17, 24, 39, 0.85);
}

body {
    background-color: var(--dark-bg) !important;
    font-family: 'Courier New', Courier, monospace !important;
    overflow-x: hidden;
}

/* CRT Scanline Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.1)
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
}

/* Typography & Glows */
h1, h2, h3, #nav-title {
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

a, button {
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover, button:hover {
    color: var(--neon-blue) !important;
    text-shadow: 0 0 8px var(--neon-blue);
    letter-spacing: 0.5px;
}

/* Glassmorphism Panels */
.bg-gray-800 {
    background-color: var(--panel-bg) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 204, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.bg-gray-800:hover {
    border-color: rgba(0, 204, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 204, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive Nav */
nav ul {
    flex-wrap: wrap;
    justify-content: center;
}
nav li {
    margin: 0.5rem;
}

/* Page Load Animation */
main {
    opacity: 0;
    animation: jackIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes jackIn {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.98); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}
