/* === ARTIST HOVER CARD === */
.artist-hover-trigger {
    cursor: pointer;
    position: relative;
    transition: color 0.2s, border-color 0.2s;
    border-bottom: 1px solid transparent;
    /* Hidden by default */
    text-decoration: none;
}

.artist-hover-trigger:hover {
    color: #fff;
    border-bottom-color: #fff;
    /* Visible on hover */
}

#artist-hover-card {
    position: fixed;
    display: none;
    flex-direction: column;
    background: #050505; 
    border: 1px solid #1a1a1a; 
    border-radius: 12px; /* Slightly more square for premium feel */
    padding: 12px; /* Reduced from 16px */
    width: 240px; /* Reduced from 260px */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: none;
    pointer-events: none;
    backdrop-filter: blur(12px);
}

#artist-hover-card.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
    display: flex !important;
}

.ahc-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ahc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #111;
    border: 1px solid #222;
}

.ahc-info {
    flex: 1;
    min-width: 0;
}

.ahc-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ahc-stats {
    color: #888;
    font-size: 0.75rem;
    margin-top: 2px;
}

.ahc-follow-btn {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ahc-follow-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.ahc-follow-btn.following {
    background: #222;
    border-color: #333;
    color: #888;
}

/* Skeletons */
.ahc-skeleton {
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: ahc-shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes ahc-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ahc-skeleton-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.ahc-skeleton-name {
    width: 100px;
    height: 14px;
    margin-bottom: 6px;
}

.ahc-skeleton-stats {
    width: 60px;
    height: 10px;
}

.ahc-skeleton-btn {
    width: 100%;
    height: 32px;
    border-radius: 8px;
}