/* ЛОГО И НАВИГАЦИЯ */
.logo { 
    font-size: 22px; 
    font-weight: 900; 
    color: var(--accent); 
    margin-bottom: 40px; 
    text-transform: uppercase; 
    cursor: pointer; 
    letter-spacing: 2px;
}

.nav-menu { list-style: none; padding: 0; margin: 0; }

.nav-item { 
    padding: 14px 20px; 
    border-radius: 12px; 
    cursor: pointer; 
    color: var(--text-dim); 
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase; 
    margin-bottom: 8px; 
    transition: 0.3s; 
}

.nav-item:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-item.active { background: var(--accent); color: #000; }

/* КАРТОЧКИ АРТИСТОВ */
.artist-card { 
    min-width: 140px;
    padding: 15px;
    border-radius: 16px;
    background: var(--bg-card); /* Фиксированный фон */
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
 outline: none !important;
    align-items: center;
}

.artist-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.15);
    background: var(--bg-card); /* Тот же фон */
    outline: none !important;
}

.artist-img { 
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    flex-shrink: 0;
}

.artist-card b {
    font-size: 14px;
    color: #fff;
    display: block;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ТАБЛИЦЫ ТРЕКОВ */
table { width: 100%; border-collapse: collapse; margin-top: 10px; }

tr { 
    border-bottom: 1px solid rgba(255,255,255,0.03); 
    cursor: pointer; 
    transition: 0.2s; 
}

tr:hover { background: rgba(255,255,255,0.05); }

td { padding: 12px 10px; font-size: 14px; }

.td-img { 
    width: 40px; 
    height: 40px; 
    border-radius: 6px; 
    background-size: cover; 
    background-position: center;
    background-color: #222;
}

/* ЗАГОЛОВКИ СЕКЦИЙ */
.mini-title { 
    color: var(--text-dim); 
    text-transform: uppercase; 
    font-size: 11px; 
    font-weight: 800; 
    letter-spacing: 1.5px; 
    margin: 30px 0 15px; 
}


