/* ═══════════════════════════════════════════════
   MODULE: Clock — Styles
   ═══════════════════════════════════════════════ */

.clock-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #0f0f2e 0%, var(--bg-main) 70%);
    gap: 12px;
    user-select: none;
}

/* ─── TIME ─── */
.clock-time {
    font-size: 96px;
    font-weight: 700;
    color: var(--col-white);
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.3), 0 0 60px rgba(0, 210, 255, 0.1);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.clock-seconds {
    font-size: 36px;
    color: var(--col-cyan);
    font-weight: 600;
    opacity: 0.7;
    vertical-align: super;
    margin-left: 4px;
    animation: secondsPulse 1s ease infinite;
}

@keyframes secondsPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
}

/* ─── COLON BLINK ─── */
.clock-colon {
    animation: colonBlink 1s step-end infinite;
}
@keyframes colonBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ─── DATE ─── */
.clock-date {
    font-size: 18px;
    color: var(--col-gray);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.clock-day {
    font-size: 13px;
    color: var(--col-dark-gray);
    font-weight: 400;
    margin-top: 2px;
}

/* ─── DECORATIVE RING ─── */
.clock-ring {
    position: absolute;
    width: 320px; height: 320px;
    border: 1px solid rgba(0, 210, 255, 0.06);
    border-radius: 50%;
    animation: ringRotate 60s linear infinite;
}
.clock-ring::before {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--col-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--col-cyan);
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.clock-ring-outer {
    position: absolute;
    width: 380px; height: 380px;
    border: 1px solid rgba(0, 210, 255, 0.03);
    border-radius: 50%;
    animation: ringRotate 120s linear infinite reverse;
}
