body {
    background-image:
            linear-gradient(rgba(10, 8, 5, 0.82), rgba(10, 8, 5, 0.82)),
            url('images/zhardonik_bg.jpg');
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, cover;
    opacity: 1;
}

/* ── Countdown Timer ── */
.countdown-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 4rem;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 2.6rem;
    font-weight: 700;
    color: #f97316;
    background: #0f0d0a;
    border: 1px solid #292524;
    border-radius: 3px;
    text-shadow: 0 0 12px rgba(249, 115, 22, 0.4), 0 0 24px rgba(249, 115, 22, 0.15);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8), 0 0 6px rgba(249, 115, 22, 0.08);
    position: relative;
    letter-spacing: 0;
}

/* Dim ghost "8" behind each digit to simulate inactive LCD segments */
.countdown-digit::before {
    content: '8';
    position: absolute;
    color: rgba(249, 115, 22, 0.07);
    pointer-events: none;
}

.countdown-colon {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 2.4rem;
    color: #b45309;
    text-shadow: 0 0 8px rgba(180, 83, 9, 0.6);
    animation: blink 1s step-start infinite;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.countdown-unit {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #78716c;
    text-transform: uppercase;
}

/* ── Mobile: iPhone 15 and similar (≤430px wide) ── */
@media (max-width: 430px) {
    .countdown-digit {
        width: 9vw;
        height: 13vw;
        font-size: 8.5vw;
    }

    .countdown-colon {
        font-size: 8vw;
    }

    .countdown-unit {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
}