@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #222;
    overflow: hidden;
}

.maint-e-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1500&q=80') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maint-e-overlay {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(28, 34, 41, 0.83);
    z-index: 0;
}

.maint-e-content {
    position: relative;
    z-index: 2;
    background: rgba(32,38,50,0.85);
    border-radius: 16px;
    box-shadow: 0 6px 30px #1b263340;
    padding: 50px 42px 40px 42px;
    max-width: 430px;
    width: 98vw;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.maint-e-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #40a9ff;
}
.logo-txt {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
}

.maint-e-banner {
    background: linear-gradient(90deg, #40a9ff 0%, #50e3c2 100%);
    color: #222;
    border-radius: 16px;
    padding: 9px 0;
    width: 100%;
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 1.18rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 1.7rem;
    margin: 8px 0 18px 0;
    font-weight: 700;
    color: #fff;
}

p {
    font-size: 1.07rem;
    color: #c6d7e1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.maint-e-contact {
    font-size: 1.08rem;
    color: #9edcff;
    margin-top: 6px;
}
.maint-e-contact a {
    color: #50e3c2;
    text-decoration: underline;
    font-weight: 600;
}
.maint-e-contact a:hover {
    color: #40a9ff;
}

/* Responsive */
@media (max-width: 520px) {
    .maint-e-content {
        padding: 24px 5vw 16px 5vw;
    }
    .maint-e-logo {
        font-size: 1.1rem;
    }
    h1 {
        font-size: 1.17rem;
    }
}
