@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@500;600;700&display=swap');

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #06080a;
    color: #e2e8f0;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

/* Neon Glows */
.glow-cyan {
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.glow-purple {
    box-shadow: 0 0 15px rgba(176, 0, 255, 0.4);
}

.text-glow-cyan {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.text-glow-purple {
    text-shadow: 0 0 10px rgba(176, 0, 255, 0.6);
}

.border-neon-cyan {
    border-color: rgba(0, 243, 255, 0.5);
    transition: all 0.3s ease;
}

.border-neon-cyan:hover {
    border-color: rgba(0, 243, 255, 1);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.4);
}

.border-neon-purple {
    border-color: rgba(176, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.border-neon-purple:hover {
    border-color: rgba(176, 0, 255, 1);
    box-shadow: 0 0 12px rgba(176, 0, 255, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #090c0f;
}

::-webkit-scrollbar-thumb {
    background: #14202a;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00f3ff;
}

/* Matrix Background & Scanlines */
.scanline {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0, 243, 255, 0.04) 50%,
        rgba(0, 243, 255, 0.04)
    );
    background-size: 100% 4px;
}

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

.terminal-cursor {
    animation: pulse 1s infinite;
}
