 /* public/css/player-banner-buttons.css */
/* FULL VIEWPORT REFACTOR - All px values converted to vw/vh where applicable */

/* Artist bio icons container - centered icons */
#artist-bio-icons-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
    padding: clamp(6px, 0.8vh, 12px) clamp(10px, 1vw, 20px);
    background-color: rgba(0, 0, 0, 0.6);
}

.artist-banner-btn {
    position: relative;
    background-color: transparent;
    color: var(--color-icon-default);
    border: none;
    border-radius: var(--radius-sm);
    padding: clamp(3px, 0.4vh, 8px);
    font-size: clamp(1rem, 1.4vw, 1.6rem) !important; /* 20% smaller */
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-banner-btn:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--color-active-highlight);
    transform: scale(1.1);
}

.artist-banner-btn.active {
    color: var(--color-active-highlight);
}

.artist-banner-btn.left,
.artist-banner-btn.right {
    position: relative;
    left: auto;
    right: auto;
}

.artist-banner-btn i { 
    pointer-events: none;
    font-size: clamp(1rem, 1.4vw, 1.6rem) !important; /* Match parent (20% smaller) */
}
