* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.maintenance-container {
    text-align: center;
    max-width: 700px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.construction-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.maintenance-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFA000, #CC8000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 160, 0, 0.3);
}

.maintenance-message {
    font-size: 1.3rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.maintenance-submessage {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFA000, #FFD04D, #FFA000);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 65%;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.progress-text {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.maintenance-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFA000, #CC8000);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 160, 0, 0.5);
    background: linear-gradient(135deg, #FFB833, #FFA000);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #FFA000;
    text-decoration: none;
    border: 2px solid #FFA000;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FFA000;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 160, 0, 0.3);
}

.updates-info {
    padding: 1.5rem;
    background: rgba(255, 160, 0, 0.1);
    border: 1px solid rgba(255, 160, 0, 0.3);
    border-radius: 12px;
    margin-top: 2rem;
}

.updates-info p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .maintenance-title {
        font-size: 2.2rem;
    }

    .maintenance-message {
        font-size: 1.1rem;
    }

    .maintenance-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}