.live-visitors-badge {
    position: fixed;
    top: 90px;
    right: 15px;
    background: linear-gradient(135deg, #1A1918 0%, #2C2B29 100%);
    border: 1px solid rgba(208, 153, 61, 0.4);
    border-radius: 50px;
    padding: 5px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
    backdrop-filter: blur(10px);
}

.live-visitors-content {
    display: flex;
    align-items: center;
    gap: 7px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(40, 167, 69, 0.15);
    padding: 3px 7px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-animation 1.5s infinite;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

.live-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: #28a745;
    letter-spacing: 1px;
}

.visitors-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.visitors-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFD700;
    min-width: 28px;
    text-align: center;
}

.visitors-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

.live-visitors-badge.hide-badge {
    animation: fadeOut 0.6s ease-in forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .live-visitors-badge {
        top: 100px;
        right: 5px;
        padding: 5px 10px;
    }
    
    .live-visitors-content {
        gap: 8px;
    }
    
    .live-indicator {
        padding: 3px 8px;
    }
    
    .pulse-dot {
        width: 6px;
        height: 6px;
    }
    
    .live-text {
        font-size: 0.6rem;
    }
    
    .visitors-count {
        font-size: 0.95rem;
    }
    
    .visitors-label {
        font-size: 0.6rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .live-visitors-badge {
        top: 95px;
        right: 5px;
    }
}