:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-nav: rgba(10, 10, 10, 0.92);
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --gold: #f4a261;
  --green: #4ecdc4;
  --text: #e8e8e8;
  --text-dim: #888;
  --text-muted: #555;
  --border: #222;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --max-w: 1100px;
  --nav-h: 64px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  letter-spacing: 2px; color: var(--accent); flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-dim);
  transition: color 0.2s; text-transform: uppercase; letter-spacing: 1px;
}
.nav-links a:hover { color: var(--text); }
.nav-artist-link { color: var(--gold) !important; font-weight: 600 !important; }
.nav-artist-link:hover { color: var(--accent) !important; }

.nav-live {
  display: flex; align-items: center; gap: 8px; padding: 6px 14px;
  border: 1px solid var(--accent); border-radius: 20px;
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 2px;
  color: var(--accent); transition: all 0.3s; opacity: 0.6;
}
.nav-live.is-live { opacity: 1; background: var(--accent); color: #fff; animation: liveGlow 2s ease-in-out infinite; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.nav-live.is-live .live-dot { background: #fff; animation: livePulse 1.5s ease-in-out infinite; }

@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
@keyframes liveGlow { 0%, 100% { box-shadow: 0 0 8px var(--accent-glow); } 50% { box-shadow: 0 0 20px var(--accent-glow); } }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(230, 57, 70, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(244, 162, 97, 0.06) 0%, transparent 60%);
}
.hero-content { position: relative; text-align: center; max-width: 700px; animation: fadeUp 0.8s ease-out; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-block; padding: 6px 18px; border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.8rem; color: var(--text-dim);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px;
}
.hero-title { font-family: var(--font-display); line-height: 0.95; margin-bottom: 24px; }
.hero-title-line { display: block; font-size: clamp(4rem, 15vw, 10rem); font-weight: 700; letter-spacing: 6px; }
.hero-title-line.accent { color: var(--accent); text-shadow: 0 0 60px var(--accent-glow); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-dim); max-width: 500px; margin: 0 auto 40px; font-weight: 300; line-height: 1.7; }
.hero-subtitle strong { color: var(--gold); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 500; cursor: pointer; transition: all 0.25s; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #d32f3f; transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text-dim); background: rgba(255,255,255,0.04); }

.hero-stats { display: flex; gap: 48px; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: 1px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 2px; animation: floatDown 2s ease-in-out infinite;
}
.scroll-arrow { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--text-muted), transparent); }
@keyframes floatDown { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ═══ SECTIONS ═══ */
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; text-align: center; margin-bottom: 16px;
  letter-spacing: 2px; text-transform: uppercase;
}
.section-desc { text-align: center; color: var(--text-dim); max-width: 560px; margin: 0 auto 48px; font-weight: 300; }

/* ═══ SCHEDULE ═══ */
.schedule { padding: 100px 0; border-top: 1px solid var(--border); }
.schedule-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 600px; margin: 48px auto 32px; }
.schedule-card {
  display: flex; align-items: center; gap: 20px; padding: 28px 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s;
}
.schedule-card:hover { border-color: var(--accent); background: var(--bg-card-hover); transform: translateY(-2px); }
.schedule-day { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; width: 60px; text-align: center; }
.schedule-info { display: flex; flex-direction: column; flex: 1; }
.schedule-name { font-weight: 500; font-size: 1.1rem; }
.schedule-time { color: var(--text-dim); font-size: 0.9rem; }
.schedule-icon { font-size: 1.5rem; }
.schedule-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; }
.schedule-note a { color: var(--gold); transition: color 0.2s; }
.schedule-note a:hover { color: var(--text); }

/* ═══ STREAM ═══ */
.stream { padding: 100px 0; border-top: 1px solid var(--border); }
.stream-wrapper { max-width: 800px; margin: 0 auto; }
.stream-player { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #111; }

.stream-thumb {
  position: relative; cursor: pointer; aspect-ratio: 16/9; overflow: hidden;
}
.stream-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}
.stream-thumb:hover img { transform: scale(1.03); filter: brightness(0.7); }
.stream-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform 0.2s;
}
.stream-thumb:hover .stream-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.stream-play-btn svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.stream-date {
  position: absolute; bottom: 12px; right: 12px; padding: 4px 10px;
  background: rgba(0,0,0,0.8); border-radius: 4px; font-size: 0.8rem;
  color: var(--text-dim);
}

.stream-embed {
  position: relative; padding-bottom: 56.25%;
}
.stream-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.stream-actions { text-align: center; margin-top: 24px; }

/* ═══ ORIGINALS ═══ */
.originals { padding: 100px 0; border-top: 1px solid var(--border); }
.originals .top-list { max-width: 700px; margin: 0 auto 32px; }
.originals .section-desc strong { color: var(--gold); font-weight: 600; }
.originals-cta { text-align: center; }

/* ═══ SONGS ═══ */
.songs { padding: 100px 0; border-top: 1px solid var(--border); }

.songs-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px; border: 1px solid var(--border); border-radius: 24px;
  background: transparent; color: var(--text-dim); font-family: var(--font-body);
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.tab-btn:hover { border-color: var(--text-dim); color: var(--text); }
.tab-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(230, 57, 70, 0.08); }

.tab-panel { display: none; animation: fadeUp 0.3s ease-out; }
.tab-panel.active { display: block; }

.panel-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  text-align: center; margin-bottom: 24px; letter-spacing: 1px; color: var(--text-dim);
}

/* ─── TOP LIST ─── */
.top-list { max-width: 700px; margin: 0 auto; }
.top-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s;
}
.top-item:hover { background: rgba(255,255,255,0.03); }
a.top-item { text-decoration: none; color: inherit; }
a.top-item:hover { background: rgba(230, 57, 70, 0.05); }
a.song-item { text-decoration: none; color: inherit; display: flex; }
a.song-item:hover { background: rgba(230, 57, 70, 0.05); }
tr.song-row:hover { background: rgba(230, 57, 70, 0.05); }

/* ═══ STREAMS BUTTON & LIST ═══ */
.streams-btn {
  display: inline-block; margin-left: 6px; padding: 1px 7px;
  font-size: 0.7rem; font-weight: 600; border-radius: 10px;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  vertical-align: middle; line-height: 1.4;
}
.streams-btn:hover { background: var(--gold); }
.streams-list { display: flex; flex-direction: column; gap: 6px; }
.stream-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 8px;
  text-decoration: none; color: var(--text); transition: all 0.2s;
}
.stream-link:hover { border-color: var(--accent); background: rgba(230, 57, 70, 0.08); }
.stream-link-date { font-family: var(--font-heading); font-size: 0.95rem; }
.stream-link-icon { color: var(--accent); font-size: 0.9rem; }
.top-rank {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  width: 36px; text-align: center; flex-shrink: 0;
}
.top-rank.gold { color: #ffd700; }
.top-rank.silver { color: #c0c0c0; }
.top-rank.bronze { color: #cd7f32; }
.top-info { flex: 1; min-width: 0; }
.top-artist { font-weight: 500; }
.top-song { color: var(--text-dim); font-size: 0.9rem; }
.top-bar-wrap { width: 120px; flex-shrink: 0; }
.top-bar {
  height: 6px; border-radius: 3px; background: rgba(230, 57, 70, 0.15);
  overflow: hidden;
}
.top-bar-fill { height: 100%; border-radius: 3px; background: var(--accent); transition: width 0.6s ease-out; }
.top-plays {
  font-family: var(--font-display); font-size: 0.85rem; color: var(--text-muted);
  text-align: right; margin-top: 2px;
}

/* ─── YEAR TABS ─── */
.year-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.year-btn {
  padding: 8px 20px; border: 1px solid var(--border); border-radius: 20px;
  background: transparent; color: var(--text-dim); font-family: var(--font-body);
  font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
}
.year-btn:hover { border-color: var(--text-dim); }
.year-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(244, 162, 97, 0.08); }

/* ─── ARTIST GRID ─── */
.artist-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; max-height: 600px; overflow-y: auto;
}
.artist-card {
  padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s;
  display: flex; justify-content: space-between; align-items: center;
}
.artist-card:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.artist-card-name { font-weight: 500; font-size: 0.95rem; }
.artist-card-count { font-size: 0.8rem; color: var(--text-muted); }

.back-btn {
  background: none; border: 1px solid var(--border); border-radius: 20px;
  color: var(--text-dim); padding: 8px 20px; font-family: var(--font-body);
  font-size: 0.85rem; cursor: pointer; margin-bottom: 20px; transition: all 0.2s;
}
.back-btn:hover { border-color: var(--text); color: var(--text); }

.songs-list { max-width: 700px; margin: 0 auto; }
.song-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.song-item-title { flex: 1; }
.song-item-plays { font-size: 0.85rem; color: var(--text-muted); }

/* ─── SEARCH ─── */
.search-bar {
  display: flex; align-items: center; gap: 12px; max-width: 600px;
  margin: 0 auto 24px; padding: 14px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--accent); }
.search-icon { color: var(--text-muted); flex-shrink: 0; }
.search-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 1rem;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-count { font-size: 0.85rem; color: var(--text-muted); flex-shrink: 0; }

.songs-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); max-height: 600px; overflow-y: auto; }
.songs-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.songs-table th {
  background: var(--bg-card); padding: 14px 16px; text-align: left;
  font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-dim); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1;
}
.songs-table td { padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.songs-table tr:hover td { background: rgba(255,255,255,0.03); }
.col-num { width: 50px; color: var(--text-muted); }
.col-artist { min-width: 180px; }
.col-song { min-width: 180px; }
.col-count { width: 90px; text-align: center !important; }
.songs-table td.col-count { text-align: center; }

.play-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; padding: 2px 8px; border-radius: 12px; font-size: 0.85rem; font-weight: 500;
}
.play-count.hot { background: rgba(230, 57, 70, 0.15); color: var(--accent); }
.play-count.warm { background: rgba(244, 162, 97, 0.12); color: var(--gold); }
.song-highlight { background: rgba(230, 57, 70, 0.2); border-radius: 2px; padding: 0 2px; }

.songs-empty { text-align: center; padding: 60px 20px; color: var(--text-dim); }
.songs-empty a { color: var(--accent); text-decoration: underline; }
.songs-source { text-align: center; margin-top: 40px; }
.songs-source a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.songs-source a:hover { color: var(--gold); }

/* ═══ SUPPORT ═══ */
.support { padding: 100px 0; border-top: 1px solid var(--border); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.support-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.support-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 40px 24px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); text-align: center; transition: all 0.3s;
}
.support-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.support-icon { font-size: 2.5rem; }
.support-name { font-weight: 600; font-size: 1.05rem; }
.support-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ═══ SOCIALS ═══ */
.socials { padding: 80px 0; border-top: 1px solid var(--border); }
.socials-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 48px; }
.social-link {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.85rem; font-weight: 500;
  color: var(--text-dim); transition: all 0.3s; min-width: 120px;
}
.social-link:hover { transform: translateY(-3px); color: var(--text); }
.social-link.yt:hover { border-color: #ff0000; color: #ff0000; }
.social-link.tg:hover { border-color: #26a5e4; color: #26a5e4; }
.social-link.vk:hover { border-color: #0077ff; color: #0077ff; }
.social-link.tt:hover { border-color: #fe2c55; color: #fe2c55; }

/* ═══ FOOTER ═══ */
.footer { border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: 2px; color: var(--accent); }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { color: var(--text-dim); transition: color 0.2s; display: flex; align-items: center; }
.footer-links a:hover { color: var(--text); }
.footer-links svg { opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover svg { opacity: 1; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.8rem; }

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ═══ THANKS ═══ */
.thanks { padding: 80px 0; }
.thanks-banner {
  max-width: 600px; margin: 0 auto 32px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
}
.thanks-banner-img { width: 100%; display: block; }
.thanks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 700px; margin: 0 auto;
}
.thanks-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 16px; text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.thanks-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.thanks-avatar { font-size: 2.2rem; margin-bottom: 8px; }
.thanks-avatar-img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  margin-bottom: 8px; border: 2px solid var(--gold);
}
.thanks-name {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--gold); margin-bottom: 4px;
}
.thanks-reason { font-size: 0.85rem; color: var(--text-muted); }

/* ═══ BOOTS BANNER ═══ */
.boots-banner {
  text-align: center; padding: 0 24px 40px;
}
.boots-img {
  max-width: 500px; width: 100%; border-radius: 12px;
  opacity: 0.8; transition: opacity 0.3s;
}
.boots-img:hover { opacity: 1; }

/* ═══ ARTIST OVERLAY ═══ */
.artist-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
  justify-content: center; align-items: center; padding: 24px;
}
.artist-overlay.open { display: flex; }
.artist-overlay-content {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 32px; max-width: 600px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
}
.artist-overlay-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  color: var(--text-muted); font-size: 2rem; cursor: pointer; line-height: 1;
}
.artist-overlay-close:hover { color: var(--accent); }
.artist-overlay-title {
  font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold);
  margin-bottom: 4px; display: flex; align-items: center; gap: 16px;
}
.artist-overlay-photo {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.artist-overlay-subtitle { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0; background: var(--bg-nav);
    backdrop-filter: blur(16px); padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border); animation: fadeUp 0.2s ease-out;
  }
  .nav-burger { display: flex; }
  .hero-stats { gap: 24px; }
  .schedule-grid { grid-template-columns: 1fr; max-width: 400px; }
  .support-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .socials-grid { gap: 12px; }
  .social-link { padding: 16px 20px; min-width: 100px; }
  .originals-list { grid-template-columns: 1fr; }
  .thanks-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .top-bar-wrap { width: 80px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .songs-tabs { gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: 0.8rem; }
}
