/* ── Daily Reset Countdown Timer — Flat Design ── */

.drc-wrapper {
    display: inline-block;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 10px 0;
    width: 100%;
}

/* ── Timer Row ── */
.drc-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* ── Each Blue Box — completely flat, no shadow, no 3D ── */
.drc-box {
    background-color: var(--drc-bg, #4da6ff);
    color: var(--drc-fg, #ffffff);
    border-radius: 0;
    width: 72px;
    padding: 10px 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 68px;
}

.drc-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    display: block;
}

.drc-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── Colon Separator ── */
.drc-sep {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--drc-bg, #4da6ff);
    line-height: 1;
    align-self: center;
    margin-bottom: 14px;
    padding: 0 2px;
}

/* ── Coupon Text Block ── */
.drc-coupon {
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--drc-coupon, #1e1e1e);
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}

/* ── Simple fade on number change (no 3D flip) ── */
@keyframes drc-fade {
    0%   { opacity: 0.3; }
    100% { opacity: 1; }
}

.drc-num.drc-tick {
    animation: drc-fade 0.2s ease;
}

/* ── Responsive ── */
@media (max-width: 400px) {
    .drc-box {
        width: 58px;
        padding: 8px 4px 6px;
        min-height: 58px;
    }
    .drc-num { font-size: 1.6rem; }
    .drc-label { font-size: 0.56rem; }
    .drc-sep { font-size: 1.4rem; }
}
