* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg: #0a0a0a;
    --card: #111111;
    --border: #1d1d1d;
    --text: #ffffff;
    --text-secondary: #8b8b8b;
    --footer: #4a4a4a;
    --green: #41c95b;
}
html,
body {
    width: 100%;
    min-height: 100vh;
}
body {
    background: var(--bg);

    font-family: "Inter", sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.maintenance-container {
    width: min(90%, 720px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 30px 80px rgba(0,0,0,0.45);
}


.project-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    margin-bottom: 36px;
}

h1 {
    color: var(--text);
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.description {
    max-width: 540px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.9;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 42px 0;
}

.status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(65, 201, 91, 0.4);
}

footer {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 28px;
}

footer a {
    color: var(--footer);
    font-size: 20px;
    transition: .25s ease;
}

footer a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 768px) {

    .maintenance-container {
        padding: 60px 35px;
    }

    .project-logo {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 42px;
    }

    .description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .maintenance-container {
        padding: 50px 25px;
    }

    .project-logo {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 34px;
    }

    .description {
        font-size: 14px;
        line-height: 1.8;
    }

    footer {
        gap: 22px;
    }

    footer a {
        font-size: 18px;
    }
}