/* --- Countdown Section --- */
.countdown-section {
    padding: 80px 20px;
    /* background-image set dynamically via data-field-bg */
    background-size: cover;
    background-position: center;
    text-align: center;
    background-color: #111;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.countdown-section .container {
    position: relative;
    z-index: 2;
}

.countdown-section h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-legan);
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
}

.time-unit span {
    font-family: var(--font-primary);
    font-size: 40px;
    color: #fff;
    margin-bottom: 5px;
}