body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: center / cover no-repeat;
    color: #ffffff;
    font-family: system-ui, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.countdown div {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.small {
    margin-top: 10px;
    opacity: 0.6;
    font-size: 0.9rem;
}

.quote {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.4;
    max-width: 300px;
    font-style: italic;
}

.author {
    margin-top: 6px;
    font-size: 0.9rem;
    opacity: 0.7;
}

#bg-overlay {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;

    opacity: 0;
    transition: opacity 0.8s ease;
}