/* Modern Splash Screen with New Loading Component */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    backdrop-filter: blur(10px);
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Splash Content - Modern Card Design */
.splash-content {
    text-align: center;
    color: #1e293b;
    background: white;
    padding: 3rem 4rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    min-width: 400px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient glow */
.splash-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #105f94, #0d4d7a);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
    filter: blur(20px);
}

/* Logo/Brand Name */
.splash-logo {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #105f94 0%, #0d4d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

/* Subtitle */
.splash-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #64748b;
    font-weight: 500;
    animation: fadeInUp 1s ease-out;
}

/* Loading Animation Container */
.splash-loader {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1.2s ease-out;
}

/* Status Text */
.splash-status {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    animation: fadeInUp 1.4s ease-out;
}

/* Modern Progress Bar (optional) */
.splash-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(16, 95, 148, 0.1);
    border-radius: 2px;
    margin: 2rem auto 0;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
}

.splash-progress {
    height: 100%;
    background: linear-gradient(90deg, #105f94, #0d4d7a);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    animation: progressShimmer 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}
