@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@800;400&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', Arial, sans-serif;
    background: linear-gradient(135deg, #fdf6e3 0%, #b5ead7 100%);
}

.maint-d-bg {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maint-d-card {
    background: #fffdfa;
    border-radius: 26px;
    box-shadow: 0 8px 32px #9be7c7aa;
    max-width: 400px;
    width: 95%;
    text-align: center;
    padding: 50px 28px 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.illustration {
    font-size: 5rem;
    margin-bottom: 26px;
    background: #ffeaa7;
    border-radius: 50%;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px #b2bec3aa;
}

h1 {
    font-size: 2rem;
    color: #00b894;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px;
}

.maint-msg {
    font-size: 1.15rem;
    color: #636e72;
    margin-bottom: 32px;
    font-weight: 400;
}

.maint-btn {
    background: linear-gradient(90deg, #00b894, #00cec9);
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.1rem;
    box-shadow: 0 2px 16px #00b89433;
    transition: background 0.2s, transform 0.2s;
}
.maint-btn:hover {
    background: linear-gradient(90deg, #00cec9, #00b894);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 500px) {
    .maint-d-card {
        padding: 30px 10px 24px 10px;
    }
    .illustration {
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }
    h1 {
        font-size: 1.3rem;
    }
}
