/* ===== CSS Reset & Variables ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0f0f0f;
    --text: #ffffff;
    --text-muted: #888888;
    --accent: #3b82f6;
}

/* ===== Body ===== */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Container ===== */
.container {
    text-align: center;
    padding: 2rem;
}

/* ===== Title ===== */
.title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

/* ===== Countdown ===== */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-block {
    text-align: center;
}

.time-value {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
}

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

.separator {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===== Message ===== */
.message {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* ===== Celebration ===== */
.celebration .title {
    color: var(--accent);
}

.celebration .time-value {
    color: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .countdown {
        gap: 0.75rem;
    }

    .time-value {
        font-size: 3rem;
    }

    .separator {
        font-size: 2.5rem;
    }

    .time-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .time-value {
        font-size: 2.25rem;
    }

    .separator {
        font-size: 1.75rem;
    }

    .countdown {
        gap: 0.5rem;
    }
}