* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.icon-container {
    margin-bottom: 1.5rem;
    color: #3498db;
}

.gear-icon {
    width: 80px;
    height: 80px;
    animation: spin 4s linear infinite;
}

h1 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

p {
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

/* Progress Bar Styling */
.progress-bar {
    height: 6px;
    width: 100%;
    background-color: #eee;
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #8e44ad);
    width: 50%;
    border-radius: 3px;
    animation: loading 2s ease-in-out infinite;
}

.status {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes loading {
    0% { width: 0%; transform: translateX(0); }
    50% { width: 100%; }
    100% { width: 0%; transform: translateX(100%); }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 2rem;
    }
    h1 {
        font-size: 1.5rem;
    }
}
