:root {
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --brand-red: #AF1F1F;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'League Spartan', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.logo {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.logo .highlight {
    color: var(--brand-red);
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 450px;
    line-height: 1.4;
    color: #CCCCCC;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(175, 31, 31, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(175, 31, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(175, 31, 31, 0); }
}

/* mobile */
@media (max-width: 600px) {
    .logo { font-size: 3.5rem; }
    .subtitle { font-size: 1rem; padding: 0 1rem; }
}