html,
body {
    width: 100%;
    min-height: 100%;
}

body.maintenance-page {
    min-height: 100vh;
    margin: 0;
    background-color: #06142d;
    color: #fff;
    font-family: "Rubik", Arial, sans-serif;
}

.maintenance-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(3, 12, 27, 0.9), rgba(3, 12, 27, 0.65), rgba(3, 12, 27, 0.82)), url(../img/sobig-franchise-title-bg.png);
    background-position: center;
    background-size: cover;
}

.maintenance-hero::before,
.maintenance-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.maintenance-hero::before {
    top: -130px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: rgba(255, 142, 40, 0.16);
}

.maintenance-hero::after {
    bottom: -180px;
    left: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.maintenance-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    padding: 56px 48px;
    text-align: center;
    background: rgba(3, 12, 27, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(8px);
}

.maintenance-logo {
    display: block;
    width: min(340px, 82%);
    height: auto;
    margin: 0 auto 36px;
}

.maintenance-kicker {
    margin: 0 0 14px;
    color: #ff8e28;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.maintenance-content h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.maintenance-content p {
    max-width: 590px;
    margin: 0 auto 32px;
    color: #dbe1ea;
    font-size: 18px;
    line-height: 1.7;
}

.maintenance-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    overflow: hidden;
    background-color: #ff8e28;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.maintenance-button:hover,
.maintenance-button:focus {
    background-color: #f43127;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .maintenance-content { padding: 42px 22px; }
    .maintenance-content h1 { letter-spacing: -1px; }
    .maintenance-content p { font-size: 16px; }
}
