html.maintenance-mode,
html.maintenance-mode body {
    min-height: 100%;
    overflow: hidden;
}

.maintenance-screen {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(0, 70, 150, 0.92), rgba(9, 122, 161, 0.88)),
        radial-gradient(circle at 20% 20%, rgba(255, 211, 120, 0.28), transparent 30%),
        #004696;
    font-family: 'Merriweather Sans', sans-serif;
}

.maintenance-card {
    width: min(92vw, 520px);
    padding: 38px 32px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(0, 28, 70, 0.28);
    text-align: center;
    color: #063b69;
}

.maintenance-logo {
    width: 150px;
    max-width: 52vw;
    margin-bottom: 22px;
}

.maintenance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff3cf;
    color: #8a5a00;
    font-size: 31px;
}

.maintenance-card h1 {
    margin: 0 0 12px;
    font-size: clamp(26px, 5vw, 36px);
    line-height: 1.15;
    color: #004696;
}

.maintenance-card p {
    margin: 0 auto 18px;
    max-width: 430px;
    color: #315f86;
    font-size: 16px;
    line-height: 1.6;
}

.maintenance-card small {
    display: block;
    color: #6b8aaa;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 520px) {
    .maintenance-card {
        padding: 32px 22px;
        border-radius: 14px;
    }
}
