/* --- Base Styles & Variables --- */
:root {
    /* Gradient mimicking the image: lighter center top to very dark navy edges */
    --bg-gradient: radial-gradient(circle at 50% 30%, #2b558c 0%, #152b4f 50%, #0a1426 100%);
    --text-primary: #ffffff;
    --font-title: 'Montserrat', sans-serif; /* Clean, modern, bold sans-serif */
    --font-sans: system-ui, -apple-system, sans-serif; /* Clean, modern thin font */
}

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

body {
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

/* --- Main Layout Container --- */
.maintenance-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
}

.center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- Flat, Bold Header Effect --- */
.title {
    font-family: var(--font-title);
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px; /* Slight positive tracking for clean readability */
}

/* Base style for individual letters to allow overlapping */
.title span span {
    display: inline-block;
    position: relative;
}

/* The first line "COMING" */
.line-1 {
    font-size: 14vw; 
    line-height: 1;
    display: block;
    margin-bottom: 0; /* Natural line-height gap provides enough separation */
    position: relative;
    z-index: 2; 
}

/* The second line "SOON" */
.line-2 {
    font-size: 18vw; 
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
}

/* Base styles for alternate spans */
.title span span:nth-child(even) {
    z-index: 2; 
}

.title span span:nth-child(odd) {
    z-index: 1;
}

/* --- Construction Text Subtitle --- */
.construction-text {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 300; /* Thinner font weight */
    color: #e2e8f0; /* Light silver/gray */
    letter-spacing: 1px;
    margin-top: 4vh;
    text-align: center;
}

/* --- Footer Typography & Layout --- */
.footer-bottom {
    position: absolute;
    bottom: 2vh;
    left: 0;
    width: 100%;
    text-align: center;
}

.footer-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 400;
}

.footer-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #cbd5e1;
    text-decoration: underline;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 1024px) {
    .line-1 { font-size: 12rem; margin-bottom: 0; }
    .line-2 { font-size: 15rem; }
    .construction-text { font-size: 1.3rem; }
}

@media (max-width: 768px) {
    .line-1 { font-size: 8rem; margin-bottom: 0; }
    .line-2 { font-size: 10rem; }
    .title { letter-spacing: 1px; }
    .construction-text { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .line-1 { font-size: 4rem; margin-bottom: 0; } /* Scaled down slightly more */
    .line-2 { font-size: 5rem; } /* Scaled down to prevent height overflows on tiny mobiles */
    .title { letter-spacing: 0px; }
    .construction-text { font-size: 1rem; margin-top: 2vh; }
    .footer-text { font-size: 0.75rem; }
}