.zrc-timer {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;

    background: rgba(20, 20, 20, 0.85);
    padding: 16px 18px;
    border-radius: 14px;

    width: fit-content;

    margin-left: auto;
    margin-right: auto;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
}

.zrc-box {
    text-align: center;
    color: #ccc;
    min-width: 70px;
}

.zrc-box span {
    font-size: 32px;
    font-weight: bold;
    color: #d0d0d0;
    display: block;
    animation: pulse 1.5s infinite ease-in-out;
}

.zrc-box label {
    font-size: 12px;
    opacity: 0.7;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}