/* Modern Loading Screen */
.modern-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #152036 0%, #0c1228 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.modern-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    width: 120px;
    height: 80px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #8DC6D8;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(245,164,37,0.3);
    border-top: 3px solid #8DC6D8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}