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

body {
    background-color: #f7f7f7; /* Cinza claro neutro e sofisticado */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cinzel', 'Playfair Display', 'Georgia', serif;
    padding: 20px;
}

.container {
    position: relative;
    height: 90vh;
    width: 100%;
    max-width: 450px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Sombra cinza neutra */
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 75%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 2;
}

.countdown-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 24px 50px 24px;
}

.timer {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

/* Blocos em tom de grafite escuro neutro para total contraste sem puxar para o verde */
.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 75px;
    aspect-ratio: 1 / 1; 
    background: #262626; /* Grafite escuro neutro */
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Números em branco puro para leitura limpa */
.number {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

/* Legendas em cinza claro para suavizar a composição */
.label {
    font-size: clamp(0.55rem, 2.2vw, 0.65rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    color: #b3b3b3; /* Cinza claro neutro */
    font-weight: 600;
}

@media (max-width: 480px) {
    body {
        padding: 0;
        background-color: #ffffff;
    }
    .container {
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    .countdown-wrapper {
        padding-bottom: 60px;
    }
}