.ne-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px;
    user-select: none;
}

.ne-time {
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 100;
    font-size: clamp(64px, 16vw, 140px);
    letter-spacing: 0.06em;
    line-height: 1;
    color: #f0e;
    text-shadow:
        0 0 7px #f0e,
        0 0 14px #f0e,
        0 0 28px #f0e,
        0 0 56px #c0f,
        0 0 84px #c0f,
        0 0 112px #90f,
        0 0 140px #90f;
    animation: ne-flicker 4s infinite alternate;
}

.ne-time .ne-colon {
    animation: ne-blink 1s steps(1) infinite;
}

.ne-date {
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 200;
    font-size: clamp(13px, 2vw, 18px);
    letter-spacing: 0.12em;
    color: rgba(255, 0, 238, 0.35);
    text-shadow: 0 0 8px rgba(255, 0, 238, 0.15);
}

/* Neon flicker effect */
@keyframes ne-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 7px #f0e,
            0 0 14px #f0e,
            0 0 28px #f0e,
            0 0 56px #c0f,
            0 0 84px #c0f,
            0 0 112px #90f,
            0 0 140px #90f;
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 3px #f0e,
            0 0 6px #f0e,
            0 0 12px #c0f;
    }
}

@keyframes ne-blink {
    50% { opacity: 0.15; }
}
