/* ─── PAGE HEADER ─── */
.page-header {
  padding: 24px var(--page-px) 24px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(200,255,46,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(46,248,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-title-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.03em;
}
.page-title span {
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-subtitle {
  font-size: 0.88rem; color: var(--text-muted); margin-top: 6px;
}
.page-count {
  font-size: 0.85rem; color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  white-space: nowrap;
}

/* ─── PAGE CONTENT ─── */
.page-content {
  padding: 28px var(--page-px) 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lang-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 24px;
}

.lf-btn {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.lf-btn:hover { border-color: var(--accent-lime); color: var(--text-primary); }

.lf-btn.active {
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  color: var(--bg-deep); font-weight: 700;
}

/* ═══ RECENTLY LIST ═══ */
.recently-list {
  display: flex;
  flex-direction: column;
}

.recently-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.recently-item:last-child { border-bottom: none; }

.recently-item:hover .recently-title { color: var(--accent-lime); }

.recently-num {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  width: 32px;
  flex-shrink: 0;
  text-align: right;
}

.recently-thumb {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  color: rgba(0,0,0,0.35);
  flex-shrink: 0;
}

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

.recently-title {
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 3px;
  transition: color 0.2s;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recently-artist {
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recently-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.recently-lang-badge {
  background: rgba(46,248,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.recently-time {
  color: var(--text-muted);
  font-size: 0.82rem;
  min-width: 90px;
  text-align: right;
  padding-right: 12px;
  white-space: nowrap;
}

/* ═══ MOBILE ═══ */
@media (max-width: 600px) {
  .recently-item  { gap: 10px; }
  .recently-num   { display: none; }
  .recently-time  { display: none; }
  .recently-right { gap: 8px; }
  .recently-thumb { width: 40px; height: 40px; font-size: 0.6rem; }
}

/* ═══ LOAD MORE ═══ */
.load-more-wrap {
  display: flex; justify-content: center;
  margin-top: 32px;
}

.load-more-btn {
  padding: 14px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 10px;
}

.load-more-btn:hover {
  border-color: var(--accent-lime);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.load-more-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* Пустое состояние */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state p { font-size: 1rem; }