/* Epic Dark Fantasy WotLK Theme Elements */

:root {
    --primary-blue: #2563eb;
    --primary-blue-glow: rgba(37, 99, 235, 0.5);
}

body {
    background-color: #050b14;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(30, 58, 138, 0.2), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.1), transparent 25%);
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.glass-panel {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.nav-btn.active {
    color: #60a5fa;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

/* Animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px var(--primary-blue-glow); }
    50% { box-shadow: 0 0 25px rgba(96, 165, 250, 0.6); }
    100% { box-shadow: 0 0 15px var(--primary-blue-glow); }
}

button[type="submit"] {
    animation: pulseGlow 3s infinite;
}

button[type="submit"]:hover {
    animation: none;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    transform: translateY(-1px);
}

input {
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Smooth reveal for sections */
.section-content {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
