/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2d3436;
    overflow: hidden;
}

.container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem 2rem;
    border-radius: 24px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.message {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sub-message {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Loader Animation */
.loader {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: #edf2f7;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, #4299e1, #667eea);
    border-radius: 2px;
    animation: loading 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    0% { left: -30%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 2.5rem 1.5rem;
    }
    
    .logo {
        max-width: 160px;
    }

    .message {
        font-size: 1.5rem;
    }
    
    .sub-message {
        font-size: 0.95rem;
    }
}
