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

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #f5f7fb 0, #e5e8f0 35%, #dde2ec 60%, #cfd5e3 100%);
    color: #201f1f;
}

.maintenance-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.maintenance-card {
    max-width: 640px;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
    padding: 32px 28px 28px;
}

.maintenance-header {
    margin-bottom: 20px;
}

.maintenance-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: 100px;
    height: 100px;
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.maintenance-logo-text {
    font-weight: 600;
}

.maintenance-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.maintenance-body {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
}

.maintenance-body p + p {
    margin-top: 10px;
}

.maintenance-footer {
    margin-top: 24px;
    font-size: 0.8rem;
    color: rgba(32, 31, 31, 0.7);
}

@media (max-width: 480px) {
    .maintenance-card {
        padding: 24px 20px 22px;
        border-radius: 18px;
    }

    .maintenance-title {
        font-size: 1.7rem;
    }
}

