.mn-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    user-select: none;
}

.mn-time {
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 100;
    font-size: clamp(72px, 18vw, 160px);
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(230, 232, 238, 0.92);
    text-shadow: 0 0 60px rgba(94, 234, 212, 0.06);
}

.mn-date {
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 2.5vw, 22px);
    letter-spacing: 0.15em;
    color: var(--muted);
}

.mn-time .colon {
    animation: mn-pulse 1s steps(1) infinite;
}

@keyframes mn-pulse {
    50% { opacity: 0.25; }
}
