* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6c63ff;
    --secondary: #8b5cf6;
    --dark: #080b18;
    --text: #ffffff;
    --muted: #a8afc3;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--dark);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* =========================
   BACKGROUND
========================= */

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.background::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(108, 99, 255, 0.25),
        transparent 65%
    );
    top: -300px;
    left: -200px;
}

.background::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.18),
        transparent 65%
    );
    bottom: -250px;
    right: -150px;
}

.background span {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: float 12s linear infinite;
}

.background span:nth-child(1) {
    left: 15%;
    top: 80%;
    animation-delay: 0s;
}

.background span:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
}

.background span:nth-child(3) {
    left: 55%;
    top: 90%;
    animation-delay: 4s;
}

.background span:nth-child(4) {
    left: 75%;
    top: 70%;
    animation-delay: 1s;
}

.background span:nth-child(5) {
    left: 90%;
    top: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-500px);
        opacity: 0;
    }
}

/* =========================
   CONTAINER
========================= */

.maintenance-container {
    position: relative;
    z-index: 2;
    width: min(700px, 92%);
    text-align: center;
    padding: 45px 30px;
}

/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    box-shadow: 0 10px 30px rgba(108,99,255,.35);
}

/* =========================
   ICON
========================= */

.maintenance-icon {
    width: 110px;
    height: 110px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);

    box-shadow:
        0 0 0 15px rgba(108,99,255,.04),
        0 0 0 30px rgba(108,99,255,.02);

    animation: pulse 3s infinite;
}

.gear {
    font-size: 55px;
    color: #ffffff;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* =========================
   BADGE
========================= */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 35px;
    padding: 9px 16px;
    border-radius: 30px;
    background: rgba(108,99,255,.12);
    border: 1px solid rgba(108,99,255,.25);
    color: #c9c6ff;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b7cff;
    box-shadow: 0 0 12px #8b7cff;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% {
        opacity: .3;
    }
}

/* =========================
   TEXT
========================= */

h1 {
    font-size: clamp(42px, 7vw, 68px);
    line-height: 1.05;
    margin-top: 25px;
    letter-spacing: -2px;
}

h1 span {
    background: linear-gradient(
        90deg,
        #8b7cff,
        #c084fc
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    max-width: 580px;
    margin: 25px auto 35px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================
   PROGRESS
========================= */

.progress-section {
    text-align: left;
    margin: 30px auto;
    max-width: 550px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #aeb5ca;
    font-size: 13px;
}

.progress-info strong {
    color: white;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 75%;
    border-radius: inherit;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    box-shadow: 0 0 20px rgba(108,99,255,.5);

    transition: width 1s ease;
}

/* =========================
   COUNTDOWN
========================= */

.countdown-title {
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 14px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-box {
    min-width: 75px;
}

.time-box strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
}

.time-box small {
    color: #7f879d;
    font-size: 11px;
    text-transform: uppercase;
}

.separator {
    color: #535b72;
    font-size: 25px;
}

/* =========================
   CONTACT
========================= */

.contact {
    margin-top: 40px;
}

.contact p {
    color: #777f95;
    font-size: 13px;
    margin-bottom: 10px;
}

.contact a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 8px;

    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);

    transition: .3s;
}

.contact a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */

footer {
    margin-top: 40px;
    color: #565e73;
    font-size: 12px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .maintenance-container {
        padding: 30px 15px;
    }

    .maintenance-icon {
        width: 90px;
        height: 90px;
    }

    .gear {
        font-size: 45px;
    }

    h1 {
        font-size: 44px;
    }

    .description {
        font-size: 14px;
    }

    .time-box {
        min-width: 55px;
    }

    .time-box strong {
        font-size: 23px;
    }

    .separator {
        font-size: 18px;
    }
}