.sheesh-premium-nav {
    display: flex;
    justify-content: space-around; /* Distributes them evenly */
    align-items: center;
    padding: 10px;
    gap: 10px;
    overflow-x: auto; /* Allows swiping if screen is too small */
    white-space: nowrap;
}

.premium-btn {
    flex: 1; /* Makes all buttons equal width */
    text-align: center;
    padding: 12px 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Specific Styles for each */
.live { background: #3b1a2f; }
.ai { background: #4e3680; }
.tiktok { background: #4e3680; }

/* The Live Pulse Effect */
.status-dot {
    height: 8px;
    width: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 8px #00ff00;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .premium-btn {
        font-size: 11px;
        padding: 10px 2px;
    }
}