/* Wave Animation from generated-page (1).html */
@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
    50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.6); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Base resets/overrides for new UI */
body {
    background: linear-gradient(180deg, #0a192f 0%, #0d1f3c 50%, #112240 100%);
    color: #e6f1ff;
    overflow-x: hidden;
}

.wave-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nav-active { 
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(14, 165, 233, 0.1)); 
    border-color: #06b6d4; 
    color: #e6f1ff !important;
}

/* Glassmorphism helpers */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(30, 58, 95, 0.5);
    backdrop-filter: blur(12px);
}
.glass-header {
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.5);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a192f; }
::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 3px; }
