/* Feature: Live FOMO Neon Styling */
.live-fomo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
    color: #94a3b8;
    background: rgba(20, 20, 20, 0.8);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #2a2a2a;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #00d4ff; /* Cyan/Blue Neon */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px #00d4ff;
    animation: fomo-blink 1.5s infinite ease-in-out;
}

.view-count {
    color: #00d4ff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

/* Blinking Animation */
@keyframes fomo-blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}