/* ============================================
   SESSION TIMER
   ============================================ */

/* --- Session Timer (minimal, bottom-right) --- */
.session-timer {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
    opacity: 0;
    animation: session-timer-fadein 0.5s ease-out 3s forwards;
    pointer-events: none;
}

@keyframes session-timer-fadein {
    to { opacity: 1; }
}

.timer-display {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(160, 150, 140, 0.6);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-sep {
    font-size: 8px;
    opacity: 0.5;
}

.timer-dot {
    letter-spacing: 0.15em;
}

.timer-display.timer-warning {
    color: rgba(192, 57, 43, 0.7);
}

.timer-exploding {
    position: fixed;
}

.timer-exploding .timer-display {
    animation: timer-explosion 0.8s ease-out forwards;
}

@keyframes timer-explosion {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

