.artists-section-h {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #2a2550;
}

.artists-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.artists-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 600;
}

.artists-count {
    background: rgba(139, 127, 245, 0.2);
    color: #8b7ff5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.artists-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-top: 6px;
    padding-left: 6px;
    /* padding-bottom: 8px; */
    scroll-behavior: smooth;
    /* background: #ffffff0a; */
    border-radius: 22px;
    vertical-align: middle;
    /* HIDES SCROLLBAR */
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 136px;
    align-items: flex-end;
    padding-bottom: 20px;
}

.artists-scroll::-webkit-scrollbar {
    height: 4px;
}

.artists-scroll::-webkit-scrollbar-track {
    background: #1a1730;
    border-radius: 2px;
}

.artists-scroll::-webkit-scrollbar-thumb {
    background: #3a3560;
    border-radius: 2px;
}

.artists-scroll::-webkit-scrollbar-thumb:hover {
    background: #4a4570;
}

/* Artist Avatar */
.artist-avatar {
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.artist-avatar:hover {
    transform: scale(1.1);
}

.artist-avatar:hover .artist-tooltip {
    opacity: 1;
    visibility: visible;
}

.artist-img-container {
    position: relative;
    width: 48px;
    height: 48px;
}

.artist-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.artist-circle {
    border-radius: 50%;  /* Makes it circular */
}
/* MUST HAVE for circular avatars */
.artist-circle {
    width: 40px;    /* or your 40px */
    height: 40px;   /* or your 40px */
    border-radius: 50%;  /* CRITICAL */
}

/* MUST HAVE for circular images */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;  /* CRITICAL */
}

/* Green pulsing border for live */
.artist-circle.live {
    border: 2px solid #10f981;
    animation: pulse-green 2s infinite;
}

/* Orange pulsing border for queued */
.artist-circle.queued {
    border: 2px solid #f59e0b;
    animation: pulse-orange 2.5s infinite;
}
.artist-image {
    border-radius: 50%;  /* Images must be circular too */
}
.status-dot {
    position: absolute;
    bottom: -5%;
    right: -20%;
    color: rgb(255 255 255);
    background: rgb(60 192 142);
    border-radius: 50%;
    width: 20px;
    padding: 1px;
    font-size: 12px;
    font-weight: 700;
    /* Sits on the border edge */
}
.status-dot.queued{
    background: #f59e0b;
}
@keyframes pulse-green { 
    0% { box-shadow: 0 0 0 0 rgba(77, 227, 150, 0.903); }
    70% { box-shadow: 0 0 0 8px rgba(16, 249, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 249, 129, 0); }
}
/* Glow Effects for Campaign Status */
.artist-avatar.live .artist-img {
    border-color: #10f981;
    box-shadow: 0 0 20px rgba(16, 249, 129, 0.6);
    animation: pulse-live 2s infinite;
}

.artist-avatar.queued .artist-img {
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    animation: pulse-queued 3s infinite;
}

.artist-avatar.selected .artist-img {
    transform: scale(1.1);
    border-width: 4px;
}

/* Campaign Count Badge */
.campaign-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    border: 2px solid #1a1730;
    padding: 0 4px;
}

.campaign-badge.live {
    background: #10f981;
    box-shadow: 0 2px 8px rgba(16, 249, 129, 0.5);
}

.campaign-badge.queued {
    background: #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

.campaign-badge.hidden {
    display: none;
}

/* Artist Name Tooltip */
.artist-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2550;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    pointer-events: none;
    z-index: 1000;
}

/* Pulse Animations */
@keyframes pulse-live {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 249, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 249, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 249, 129, 0);
    }
}

@keyframes pulse-queued {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .artist-img-container {
        width: 40px;
        height: 40px;
    }
    
    .artist-img {
        width: 40px;
        height: 40px;
    }
    
    .campaign-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* Enhanced Artist Tooltip with Arrow */
.artist-tooltip {
    bottom: 60px !important;
    background: rgba(42, 37, 80, 0.98) !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(139, 127, 245, 0.2) !important;
}

.artist-tooltip::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgb(62 55 119 / 98%);
}

/* Enhanced selected state for better visibility */
.artist-circle.selected {
    transform: scale(1.15) !important;
    border-width: 4px !important;
    box-shadow: 0 0 0 2.5px rgb(255 255 255 / 85%) !important;
}

.artist-avatar.selected {
    order: -1; /* Keep at beginning of flex container within same status group */
}

/* Future: Reviewed status (campaigns with launchOn date) */
.artist-circle.reviewed {
    border: 3px solid #a78bfa;
    animation: pulse-purple 2s infinite;
}

.status-dot.reviewed {
    background: #a78bfa;
}

@keyframes pulse-purple {
    0% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(167, 139, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0); }
}
