/* Horloge terminale en bas à droite (effects/clock.js). */

.terminal-clock {
    position: absolute;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 4;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: clamp(15px, 2.4vh, 19px);
    letter-spacing: 0.06em;
    color: rgba(41, 255, 240, 0.45);
    text-shadow: 0 0 6px rgba(41, 255, 240, 0.3);
    pointer-events: none;
    user-select: none;
}
