@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d1117;
    color: #ededed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.maintenance-container {
    max-width: 600px;
}

.title {
    font-size: 32px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #222;
    border-radius: 10px;
    margin: 25px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background: #0d6efd;
    animation: loading 5s infinite;
}

.countdown-label {
    margin-top: 10px;
    font-size: 14px;
    opacity: .8;
}

.countdown {
    font-size: 26px;
    font-weight: bold;
    margin-top: 10px;
    color: #0d6efd;
}

.footer {
    margin-top: 25px;
    font-size: 14px;
    opacity: .7;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
