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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.maintenance-container {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 40px;
}

.maintenance-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.maintenance-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e3e3e3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.flag-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .maintenance-container {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .maintenance-title {
        font-size: 2em;
    }
    
    .maintenance-text {
        font-size: 1.1em;
    }
    
    .logo {
        max-width: 250px;
    }
}
