/* ═══ ARTIST HERO ═══ */
.artist-hero {
  position: relative;
  padding: 40px var(--page-px) 44px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* blurred BG orbs */
.artist-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.18), transparent 70%);
  top: -20%; right: -5%;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46,248,255,0.1), transparent 70%);
  bottom: -20%; left: 0%;
}

.artist-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 36px;
}

/* Big circle photo */
.artist-hero-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #3b2d6e, #6d2a6e);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08), 0 12px 40px rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: rgba(255,255,255,0.22);
  position: relative;
}
.artist-hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 50%;
}

/* Text area */
.artist-hero-meta { flex: 1; min-width: 0; }
.artist-hero-type {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
  margin-bottom: 10px;
}
.artist-hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.artist-hero-stats {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.artist-stat {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--text-secondary);
}
.artist-stat strong { color: var(--text-primary); font-weight: 700; }
.artist-stat-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-muted);
}
.artist-lang-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(46,248,255,0.1); border: 1px solid rgba(46,248,255,0.2);
  border-radius: 20px; padding: 4px 12px;
  font-size: 0.75rem; font-weight: 700; color: var(--accent-cyan);
}

/* ═══ PAGE CONTENT ═══ */
.page-content { padding: 36px var(--page-px); flex: 1; }

/* ═══ SECTION HEADER ═══ */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
}
.section-link {
  color: var(--accent-lime);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.section-link:hover { opacity: 1; }

/* ═══ TOP TRACKS — recently style ═══ */
.tracks-list { display: flex; flex-direction: column; margin-bottom: 48px; }

.track-item {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
  transition: background 0.15s;
}
.track-item:last-child { border-bottom: none; }
.track-item:hover .track-title { color: var(--accent-lime); }

.track-num {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  width: 28px; flex-shrink: 0; text-align: right;
}
.track-thumb {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.track-info { flex: 1; min-width: 0; }
.track-title {
  font-weight: 600; font-size: 0.95rem; margin-bottom: 2px;
  color: var(--text-primary); transition: color 0.2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.track-album { font-size: 0.8rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-right { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }
.track-views {
  color: var(--text-muted); font-size: 0.82rem;
  display: flex; align-items: center; gap: 5px;
}
.track-views svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.track-year { color: var(--text-muted); font-size: 0.82rem; }

/* ═══ ALBUMS GRID — translation card style ═══ */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.album-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer; text-decoration: none; display: block;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.album-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.album-cover {
  aspect-ratio: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.album-cover-initials {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,0.22);
  letter-spacing: -0.02em;
}

.album-info { padding: 12px; }
.album-title {
  font-weight: 700; font-size: 0.92rem; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.album-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.album-year { font-size: 0.78rem; color: var(--text-secondary); }
.album-tracks { font-size: 0.78rem; color: var(--text-muted); }

/* ═══ MOBILE ═══ */
@media (max-width: 600px) {
  /* Скрываем просмотры и год — оставляем только лайк */
  .track-views { display: none; }
  .track-year  { display: none; }
  /* Альбомы: 2 колонки вместо 4 */
  .albums-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Унификация с song/album hero ── */
.song-type-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
  margin-bottom: 10px;
}
.song-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.artist-hero-photo {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}
