@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg:        #0D0D0D;
  --color-surface:   #1A1A2E;
  --color-card:      #16213E;
  --color-border:    #2a2a3e;
  --color-orange:    #F5921E;
  --color-green:     #3DAE2B;
  --color-blue:      #2196F3;
  --color-white:     #FFFFFF;
  --color-muted:     #A0A0B0;
  --font-main:       'Inter', sans-serif;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-full:     999px;
  --player-height:   70px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-main);
  padding-bottom: var(--player-height);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--color-orange);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 150ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--font-main);
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; color: white; }

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--font-main);
  text-decoration: none;
  transition: border-color 150ms;
}
.btn-ghost:hover { border-color: var(--color-orange); color: var(--color-white); }

.btn-green {
  background: var(--color-green);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-main);
  transition: opacity 150ms;
}
.btn-green:hover { opacity: 0.88; }

.btn-blue {
  background: var(--color-blue);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-main);
}

/* ── CARDS ── */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

/* ── PILLS ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}
.pill-orange { border: 1px solid var(--color-orange); color: var(--color-orange); }
.pill-green  { background: rgba(61,174,43,0.15); color: var(--color-green); }
.pill-blue   { background: rgba(33,150,243,0.15); color: var(--color-blue); }
.pill-muted  { background: rgba(160,160,176,0.15); color: var(--color-muted); }

/* ── SECTION TITLES ── */
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

/* ── CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 60px 0; }

/* ── GRIDS ── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 40px 0; }
  .container { padding: 0 16px; }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #0D0D0D;
  border-bottom: 1px solid var(--color-border);
  height: 64px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-green));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.primary-nav a {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 150ms;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--color-white); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-actions .btn-ghost { display: none; }
}

/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A2E 50%, #0D0D0D 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,146,30,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-headline {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 16px;
}
.hero-headline span { color: var(--color-orange); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-muted);
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.stat-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}
.stat-pill strong { color: var(--color-orange); }
.genre-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.genre-chip {
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 150ms;
}
.genre-chip:hover,
.genre-chip.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
}

/* ── SONG CARDS ── */
.songs-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}
@media (min-width: 769px) {
  .songs-scroll { display: grid; grid-template-columns: repeat(4, 1fr); overflow-x: visible; }
}
.song-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  min-width: 200px;
  flex-shrink: 0;
  transition: border-color 200ms, transform 200ms;
}
.song-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
}
.song-cover-wrap {
  position: relative;
  margin-bottom: 12px;
}
.song-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.song-cover-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-surface), var(--color-border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.song-play-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-orange);
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms;
  box-shadow: 0 4px 12px rgba(245,146,30,0.4);
}
.play-btn:hover { transform: scale(1.1); }
.song-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.song-artist {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.song-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.song-plays {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-green);
}
.like-btn {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 16px;
  transition: color 150ms;
  padding: 4px;
}
.like-btn:hover { color: #e91e63; }

/* ── ARTIST CARDS ── */
.artist-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 200ms, transform 200ms;
}
.artist-card:hover { border-color: var(--color-orange); transform: translateY(-2px); }
.artist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}
.artist-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 12px;
}
.artist-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.verified-badge {
  color: var(--color-blue);
  font-size: 14px;
}
.artist-genre { margin-bottom: 8px; }
.artist-followers {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.artist-followers strong { color: var(--color-white); }

/* ── UPGRADE BANNER ── */
.upgrade-banner {
  background: linear-gradient(135deg, var(--color-card), var(--color-surface));
  border: 1px solid var(--color-orange);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.upgrade-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.upgrade-title span { color: var(--color-orange); }
.upgrade-benefits {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.upgrade-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.upgrade-benefits li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
}
.mpesa-note {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 12px;
}
.upgrade-cta { flex-shrink: 0; text-align: center; }
.upgrade-cta .btn-primary {
  font-size: 16px;
  padding: 14px 36px;
  margin-bottom: 12px;
  display: block;
}

/* ── SIDEBAR & DASHBOARD ── */
.sidebar {
  width: 240px;
  min-height: 100vh;
  background: var(--color-card);
  border-right: 1px solid var(--color-border);
  padding: 24px 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-logo {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-muted);
  transition: all 150ms;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(245,146,30,0.12);
  color: var(--color-orange);
}
.dashboard-main {
  margin-left: 240px;
  padding: 32px;
  min-height: 100vh;
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.dashboard-header h1 { font-size: 22px; font-weight: 600; }
@media (max-width: 768px) {
  .sidebar { display: none; }
  .dashboard-main { margin-left: 0; padding: 16px; }
}

/* ── STAT CARDS ── */
.stat-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-card .stat-icon { font-size: 28px; margin-bottom: 4px; }
.stat-card .stat-value { font-size: 28px; font-weight: 700; }
.stat-card .stat-label { font-size: 13px; color: var(--color-muted); }
.stat-blue .stat-value   { color: var(--color-blue); }
.stat-orange .stat-value { color: var(--color-orange); }
.stat-green .stat-value  { color: var(--color-green); }
.stat-purple .stat-value { color: #9c27b0; }

/* ── MUSIC PLAYER ── */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--player-height);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}
.player-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.player-cover {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--color-border);
  flex-shrink: 0;
}
.player-info { min-width: 0; }
.player-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist {
  font-size: 11px;
  color: var(--color-muted);
}
.player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1.5;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ctrl-btn {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 16px;
  cursor: pointer;
  transition: color 150ms;
  display: flex;
  align-items: center;
}
.ctrl-btn:hover { color: var(--color-white); }
.play-pause-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-orange);
  border: none;
  color: white;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 150ms;
}
.play-pause-btn:hover { opacity: 0.85; }
.progress-bar {
  width: 300px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.progress-fill {
  height: 100%;
  background: var(--color-orange);
  width: 35%;
  border-radius: 2px;
  transition: width 0.5s linear;
}
.player-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}
.volume-slider {
  width: 80px;
  accent-color: var(--color-orange);
}
@media (max-width: 600px) {
  .player-right { display: none; }
  .progress-bar { width: 160px; }
}

/* ── TABLES ── */
table.data-table {
  width: 100%;
  border-collapse: collapse;
}
table.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.05em;
}
table.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
table.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.table-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  overflow-x: auto;
}

/* ── FORMS ── */
.form-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px;
  max-width: 520px;
  margin: 0 auto;
}
.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-main);
  transition: border-color 150ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}
.form-group select option { background: var(--color-surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-muted);
  font-size: 13px;
  margin: 20px 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.plan-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.plan-option {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  text-align: center;
  transition: border-color 150ms;
}
.plan-option.selected { border-color: var(--color-orange); }
.plan-option input { display: none; }
.plan-option .plan-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.plan-option .plan-price { font-size: 12px; color: var(--color-muted); }

/* ── UPLOAD ZONE ── */
.upload-zone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms;
  background: rgba(255,255,255,0.01);
}
.upload-zone:hover,
.upload-zone.drag-over { border-color: var(--color-orange); }
.upload-zone .upload-icon { font-size: 40px; margin-bottom: 12px; }
.upload-zone p { color: var(--color-muted); font-size: 14px; }
.upload-zone span { color: var(--color-orange); font-weight: 500; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}
.pricing-card.popular { border-color: var(--color-orange); }
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-name { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.pricing-price { font-size: 32px; font-weight: 700; color: var(--color-orange); margin-bottom: 4px; }
.pricing-period { font-size: 13px; color: var(--color-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pricing-features li::before { content: '✓'; color: var(--color-green); font-weight: 700; }
.mpesa-instructions {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-muted);
}
.mpesa-instructions strong { color: var(--color-green); }

/* ── ARTIST PROFILE ── */
.artist-hero {
  background: linear-gradient(135deg, #1A1A2E, #0D0D0D);
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}
.artist-hero-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.artist-hero-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  flex-shrink: 0;
  border: 4px solid var(--color-border);
}
.artist-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.artist-stat { text-align: center; }
.artist-stat .value { font-size: 22px; font-weight: 700; color: var(--color-orange); }
.artist-stat .label { font-size: 12px; color: var(--color-muted); }
.artist-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}
.tab-btn {
  padding: 14px 24px;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 150ms;
  font-family: var(--font-main);
}
.tab-btn.active { color: var(--color-orange); border-bottom-color: var(--color-orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── SONG ROW ── */
.song-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 150ms;
  cursor: pointer;
}
.song-row:hover { background: rgba(255,255,255,0.03); }
.song-row-num { color: var(--color-muted); font-size: 14px; width: 24px; text-align: center; }
.song-row-cover {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.song-row-info { flex: 1; min-width: 0; }
.song-row-title { font-size: 14px; font-weight: 500; }
.song-row-duration, .song-row-plays { font-size: 13px; color: var(--color-muted); }
.song-row-actions { display: flex; gap: 8px; }
.action-btn {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  font-size: 14px;
  transition: color 150ms;
}
.action-btn:hover { color: var(--color-orange); }

/* ── FOOTER ── */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p { font-size: 14px; color: var(--color-muted); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--color-muted); transition: color 150ms; }
.footer-col ul a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--color-muted); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color 150ms;
}
.social-links a:hover { border-color: var(--color-orange); }

/* ── CHART ── */
.chart-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}
.chart-title { font-size: 16px; font-weight: 600; margin-bottom: 16px; }

/* ── UTILS ── */
.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-orange { color: var(--color-orange); }
.text-green { color: var(--color-green); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}
.badge-pro   { background: rgba(245,146,30,0.15); color: var(--color-orange); border: 1px solid rgba(245,146,30,0.3); }
.badge-free  { background: rgba(160,160,176,0.1); color: var(--color-muted); border: 1px solid var(--color-border); }
.badge-green { background: rgba(61,174,43,0.15); color: var(--color-green); }

/* ── AUTH PAGE BACKGROUND ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,146,30,0.08) 0%, transparent 60%),
              var(--color-bg);
}
