body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #101412;
    color: #f8f8ef;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #f8f8ef;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

#countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

#countdown span:not(.label) {
    font-size: 8rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(231, 194, 90, 0.4);
}

.label {
    font-size: 1rem;
    font-weight: 700;
    color: #c8c2b2;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media (max-width: 600px) {
    #countdown {
        flex-wrap: wrap;
        gap: 20px;
    }
    #countdown span:not(.label) {
        font-size: 4rem;
    }
    .time-box {
        min-width: 80px;
    }
}