.artist-header {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    padding: 40px 0;
    margin-bottom: 30px;
}

.artist-big-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.artist-header-info h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-weight: 900;
}

.artist-stats {
    display: flex;
    gap: 30px;
}

.stat-item b {
    font-size: 18px;
}

.stat-item small {
    color: var(--text-dim);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

.artist-tracks-table {
    margin-top: 20px;
}

.artist-title-row { display: flex; align-items: center; margin-bottom: 20px; }

.play-all-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 900;
    cursor: pointer;
    margin-left: 30px;
    transition: 0.3s;
}

.play-all-btn:hover { transform: scale(1.05); filter: brightness(1.1); }

.albums-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.albums-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
}

.albums-slider::-webkit-scrollbar { display: none; }



.album-cover {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background-size: cover;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.album-play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center;
    font-size: 50px; opacity: 0; transition: 0.3s;
}

.album-info-overlay {
    position: absolute;
    bottom: -40px; left: 0; width: 100%;
    background: rgba(0,0,0,0.8);
    padding: 8px; text-align: center;
    font-size: 12px; transition: 0.3s;
}

.album-card:hover .album-play-overlay { opacity: 1; }
.album-card:hover .album-info-overlay { bottom: 0; }


.album-meta { margin-top: 15px; display: flex; flex-direction: column; }
.album-meta b { font-size: 16px; margin-bottom: 4px; }
.album-meta small { color: var(--text-dim); }

.show-all-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    color: var(--text-dim);
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
}
.show-all-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.track-index {
    color: var(--accent);
    font-weight: bold;
    font-family: monospace;
}


/* Фиксируем фон для всех карточек альбомов */
.album-card {
    background: var(--bg-card) !important;
}

.album-card:hover {
    background: var(--bg-card) !important;
}


/* Убираем outline у карточек альбомов */
.album-card {
    outline: none !important;
}

.album-card:hover {
    outline: none !important;
}

.album-card:focus {
    outline: none !important;
}



/* Фиксим фото артиста на странице */
.artist-big-img {
    transition: transform 0.3s ease;
    opacity: 1;
}

.artist-big-img:hover {
    transform: scale(1.02);
    opacity: 1;
}

.artist-big-img:not(:hover) {
    transform: scale(1);
    opacity: 1;
}