/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a; /* Clean dark theme matching the logo aesthetic */
    color: #eeeeee;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Main Container Constraints */
.construction-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: rgba(30, 30, 30, 0.6);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

/* Perfect Single Logo Sizing */
.launch-logo {
    width: 100%;
    max-width: 280px; /* Locks it from getting huge on tablet/desktop views */
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
}

h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffffff;
}

.subtitle {
    font-size: 1rem;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: #ff4444; /* Use your brand accent color here */
    margin: 0 auto 20px auto;
}

.status-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #dcdcdc;
}

/* Action Button Layout */
.cta-buttons a {
    display: inline-block;
    text-decoration: none;
    background-color: #ff4444; /* Accent color matching the divider */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-buttons a:hover {
    transform: scale(1.05);
    background-color: #e03333;
}

/* Responsive Scaling for smaller phones */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    .launch-logo {
        max-width: 220px;
    }
}
