/* ================================
         Count down section
===================================*/
.early-bird-countdown-section {
    width: 100vw;
    max-width: 100vw;
    background: var(--dark-bg-theme);
    color: #fffefa;
    border-radius: 0;
    padding: 2.2em 0 1.5em 0;
    box-shadow: 0 2px 48px #050a3f24, 0 6px 24px #00000012;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.6em;
    overflow: hidden;
    z-index: 2;
    margin: 0.1rem auto 0.1rem auto;
}

.early-bird-label,
.early-bird-countdown-timer,
.early-bird-action {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.early-bird-label {
    font-family: var(--font-family-hero);
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent-color);
    padding: 0.32em 1.2em;
    border-radius: 22px;
    margin-bottom: 0.85rem;
    margin-top: 0.2rem;
    box-shadow: 0 2px 18px #191a3020;
    min-width: 0;
}

.early-bird-countdown-timer {
    flex-direction: row;
    gap: 2.1em;
    margin-bottom: 0.8em;
    font-family: var(--font-family-hero);
    min-width: 0;
}

.countdown-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}

.countdown-number {
    font-size: clamp(1.6rem, 5vw, 2.3rem);
    font-weight: 800;
    color: #fbc02d;
    background: #2b2b2c;
    padding: 0.28em 0.8em;
    border-radius: 0.5em 0.5em 0 0;
    box-shadow: 0 3px 12px #fbc02d19, 0 6px 32px #00000011;
    letter-spacing: 0.03em;
}

.countdown-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ebe7d9;
    background: #23233c;
    padding: 0.28em 0.7em 0.22em 0.7em;
    border-radius: 0 0 0.5em 0.5em;
    margin-top: -0.15em;
}

.early-bird-action {
    margin-top: 0.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.1em;
    width: 100%;
    font-family: var(--font-family-base);
}

.early-bird-action span {
    color: #d0bb6b;
    font-family: var(--font-family-hero);
    font-weight: 600;
    font-size: 1.08em;
    letter-spacing: 0.02em;
    background: #25244d;
    padding: 0.16em 1em;
    border-radius: 12px;
}