.countdown-banner-wrap {
    width: 100%;
    max-width: 920px;
    margin: 0 auto 20px;
    padding: 0 12px;
    box-sizing: border-box
}

.countdown-container {
    --cb-bg: linear-gradient(165deg, #0d1f3c 0%, #0a1628 45%, #061018 100%);
    --cb-border: #c9a227;
    --cb-glow: rgba(201, 162, 39, 0.35);
    --cb-text: #e8ecf4;
    --cb-muted: #9aa8c4;
    --cb-digit-bg: #1a2d4d;
    --cb-digit: #f4f4f8;
    background: var(--cb-bg);
    border: 2px solid var(--cb-border);
    border-radius: 14px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 40px var(--cb-glow);
    overflow: hidden
}

.countdown-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
    padding: 18px 22px 14px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25)
}

.countdown-logo {
    width: auto;
    max-height: 72px;
    max-width: min(200px, 40vw);
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5))
}

.countdown-title {
    flex: 1;
    min-width: 200px
}

.countdown-title h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.95rem, 2.1vw, 1.15rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--cb-text);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
}

.countdown-title p {
    margin: 0;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    line-height: 1.45;
    color: var(--cb-muted)
}

.countdown-timer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 10px;
    padding: 18px 16px
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px
}

.countdown-value {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 52px;
    padding: 6px 10px;
    font-family: "Courier New", Consolas, monospace;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--cb-digit);
    background: var(--cb-digit-bg);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 10px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35)
}

.countdown-label {
    margin-top: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cb-muted)
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cb-border);
    align-self: flex-start;
    margin-top: 10px;
    opacity: 0.85
}

.countdown-footer {
    padding: 12px 16px 16px;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    background: rgba(0, 0, 0, 0.2)
}

.countdown-badge {
    display: inline-block;
    font-size: clamp(0.75rem, 1.6vw, 0.88rem);
    font-weight: 700;
    color: #ffe9a0;
    text-shadow: 0 0 12px rgba(255, 200, 80, 0.35)
}

@media (max-width: 520px) {
    .countdown-separator {
        display: none
    }

    .countdown-timer {
        gap: 12px
    }

    .countdown-item {
        min-width: 56px
    }
}
