/* Prevent layout shift during page load */
body {
    min-height: 100vh;
}

/* Ensure elements maintain their space during animations */
.animate-slide-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Only apply animations after page is loaded */
body.loaded .animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

/* Prevent scroll animation layout shift on initial load */
.scroll-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none;
}

body.loaded .scroll-animate {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cyber-glow {
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.3);
}

.text-glow {
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
select option {
            background: rgba(17, 24, 39, 0.7);
            color: #ffffff;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
        }
select option:hover {
            background: rgba(59, 130, 246, 0.3);
            color: #60a5fa;
        }
select option:checked {
            background: rgba(59, 130, 246, 0.5);
            color: #ffffff;
        }