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

:root {
    --primary-neon: #00f2fe;
    --secondary-neon: #4facfe;
    --accent-gold: #fbbf24;
    --bg-dark: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: #e2e8f0;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-futuristic {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-neon);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

/* Futuristic Glow Effects */
.glow-text {
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.glow-border {
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.neon-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.neon-btn::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: 0.5s;
}

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

/* Responsive Utilities */
@media (max-width: 640px) {
    .glass-panel {
        backdrop-filter: blur(8px);
    }
}

/* Background Animations */
.bg-grid {
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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