:root {
    --bg-color: #0f172a;      /* Deep navy background */
    --surface: #1e293b;       /* Slightly lighter card background */
    --text-main: #f8fafc;     /* Bright white text */
    --text-muted: #94a3b8;    /* Muted grey text */
    --accent: #38bdf8;        /* Neon blue accent */
    --accent-glow: rgba(56, 189, 248, 0.4);
}

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

.container {
    max-width: 800px;
    padding: 2rem;
}

.status-badge {
    display: inline-block;
    background-color: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

h1 {
    font-size: 3.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.time-box {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
    border: 1px solid #334155;
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px -3px var(--accent-glow);
}

.time-box span {
    display: block;
}

/* The Countdown Numbers */
.time-box span:first-child {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Responsive adjustment for mobile phones */
@media (max-width: 600px) {
    .timer { gap: 0.5rem; flex-wrap: wrap; }
    .time-box { min-width: 70px; padding: 1rem; }
    .time-box span:first-child { font-size: 2rem; }
    h1 { font-size: 2.5rem; }
}
