/* ===== VARIABLES ===== */
:root {
  --bg-primary: #141718;
  --bg-secondary: #1a1d1e;
  --bg-card: #1e2224;
  --bg-hover: #252a2c;
  --cyan: #46C3D0;
  --cyan-dark: #2fa8b5;
  --cyan-light: #6dd4df;
  --blue: #0077C1;
  --blue-light: #0DBFF5;
  --text-primary: #ffffff;
  --text-secondary: #a0aab4;
  --text-muted: #6b7280;
  --border: #2a2f32;
  --gradient: linear-gradient(135deg, #46C3D0, #0077C1);
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #141718 50%, #0d2233 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-cyan: 0 0 30px rgba(70,195,208,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --player-height: 80px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--player-height);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20, 23, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-icon { font-size: 22px; }
.logo-text {
  font-size: 16px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-hover);
}
.nav-links a.active { color: var(--cyan); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-box input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 36px 8px 16px;
  color: var(--text-primary);
  font-size: 13px;
  width: 220px;
  transition: var(--transition);
  font-family: var(--font);
}
.search-box input:focus {
  outline: none;
  border-color: var(--cyan);
  width: 260px;
  box-shadow: 0 0 0 3px rgba(70,195,208,0.1);
}
.search-box input::placeholder { color: var(--text-muted); }
.search-icon {
  position: absolute;
  right: 12px;
  font-size: 14px;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  font-size: 22px;
  color: var(--text-primary);
  padding: 4px 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: var(--shadow-cyan);
}
.btn-primary.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 28px; }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-ghost.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 28px; }

/* ===== HERO ===== */
.hero {
  min-height: 160px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 20px;
}

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(70,195,208,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,119,193,0.1) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(70,195,208,0.12);
  border: 1px solid rgba(70,195,208,0.3);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Vinyl */
/* Vinyl */
.vinyl-container { position: relative; display: flex; flex-direction: column; align-items: center; }
.vinyl {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 60%, #1a1a1a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(70,195,208,0.15), 0 12px 40px rgba(0,0,0,0.6);
  animation: spin 8s linear infinite;
  animation-play-state: paused;
}
.vinyl.playing { animation-play-state: running; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.vinyl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(70,195,208,0.15);
}
.r1 { width: 72px;  height: 72px; }
.r2 { width: 110px; height: 110px; }
.r3 { width: 148px; height: 148px; }

/* Soundwave */
.soundwave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
}
.bar {
  width: 3px;
  background: var(--gradient);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
  height: 8px;
}
.bar:nth-child(odd) { animation-delay: 0.1s; }
.bar:nth-child(3n) { animation-delay: 0.3s; }
.bar:nth-child(4n) { animation-delay: 0.5s; }
.bar:nth-child(5n) { animation-delay: 0.2s; }

@keyframes wave {
  0%, 100% { height: 8px; opacity: 0.4; }
  50% { height: 32px; opacity: 1; }
}

/* ===== HERO 3-COLUMN GRID ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 160px;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-col-title h1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-col-sub p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.hero-col-vinyl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Featured pegado al hero — sin sección separada */
.featured-inline {
  background: var(--bg-primary);
  padding: 20px 0 32px;
}
/* Ondas en el navbar */
.nav-soundwave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
  margin: 0 8px;
  flex-shrink: 0;
}
.nav-soundwave .bar {
  width: 2px;
  background: var(--gradient);
  border-radius: 1px;
  animation: wave 1.2s ease-in-out infinite;
  height: 4px;
}
.nav-soundwave .bar:nth-child(odd)  { animation-delay: 0.1s; }
.nav-soundwave .bar:nth-child(3n)   { animation-delay: 0.3s; }
.nav-soundwave .bar:nth-child(4n)   { animation-delay: 0.5s; }
.nav-soundwave .bar:nth-child(5n)   { animation-delay: 0.2s; }
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-col-vinyl { display: none; }
  .nav-soundwave  { display: none; }
}

/* ===== VINYL PLAY BUTTON ===== */
/* El botón está dentro del vinilo pero NO gira con él */
.vinyl-play-btn {
  position: absolute;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(70,195,208,0.5);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: none;
  font-family: var(--font);
  /* Contrarrestar la rotación del padre para que el botón quede fijo */
  animation: spin-reverse 8s linear infinite;
  animation-play-state: paused;
}
.vinyl.playing .vinyl-play-btn {
  animation-play-state: running;
}
@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.vinyl-play-btn:hover {
  box-shadow: 0 0 24px rgba(70,195,208,0.8);
  transform: scale(1.1) rotate(0deg);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-secondary); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Fila título + play all */
.catalog-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-play-all {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  white-space: nowrap;
}
.btn-play-all:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: var(--shadow-cyan);
}
.play-all-icon { font-size: 11px; }
.see-all {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.see-all:hover { color: var(--cyan-light); }

.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
  font-family: var(--font);
}
.filter-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

/* ===== TRACK CARDS (Featured Grid) ===== */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.track-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70,195,208,0.3);
  box-shadow: var(--shadow-cyan);
}

.track-cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a2a3a, #0d1f2d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.track-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.track-card:hover .track-cover-overlay { opacity: 1; }
.play-overlay-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(70,195,208,0.4);
  transform: scale(0.8);
  transition: var(--transition);
}
.track-card:hover .play-overlay-btn { transform: scale(1); }

.track-info {
  padding: 14px;
}
.track-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.track-genre {
  font-size: 11px;
  color: var(--cyan);
  background: rgba(70,195,208,0.1);
  padding: 3px 8px;
  border-radius: 10px;
}
.track-bpm {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== CATALOG LIST ===== */
.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalog-row {
  display: grid;
  grid-template-columns: 40px 60px 1fr 1fr 120px 80px 60px;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.catalog-row:hover { background: var(--bg-hover); }
.catalog-row.playing { background: rgba(70,195,208,0.08); }

.row-num {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}
.catalog-row:hover .row-num { display: none; }
.row-play-btn {
  display: none;
  font-size: 16px;
  text-align: center;
}
.catalog-row:hover .row-play-btn { display: block; }

.row-cover {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1a2a3a, #0d1f2d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.row-cover img { width: 100%; height: 100%; object-fit: cover; }

.row-title-artist { min-width: 0; }
.row-title {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-label {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-genre {
  font-size: 12px;
  color: var(--cyan);
  background: rgba(70,195,208,0.1);
  padding: 4px 10px;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
}

.row-bpm {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.row-duration {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

/* Catalog header row */
.catalog-header {
  display: grid;
  grid-template-columns: 40px 60px 1fr 1fr 120px 80px 60px;
  gap: 16px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== GENRES ===== */
.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.genre-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.genre-card:hover {
  border-color: var(--cyan);
  background: rgba(70,195,208,0.06);
  transform: translateY(-3px);
}
.genre-card.active {
  border-color: var(--cyan);
  background: rgba(70,195,208,0.12);
  box-shadow: var(--shadow-cyan);
}
.genre-card.active span { color: var(--cyan); }
.genre-icon { font-size: 36px; margin-bottom: 12px; }
.genre-card span { font-size: 14px; font-weight: 600; }

/* ===== ARTISTS ===== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.artist-card {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.artist-card:hover { transform: translateY(-4px); }

.artist-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #1a2a3a, #0d1f2d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.artist-card:hover .artist-avatar {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(70,195,208,0.25);
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }

.artist-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.artist-tracks {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== LABELS ===== */
.labels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.label-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.label-card:hover {
  border-color: rgba(70,195,208,0.3);
  background: var(--bg-hover);
}
.label-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.label-info { min-width: 0; }
.label-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.label-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== PLAYER BAR ===== */
.player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--player-height);
  background: rgba(20, 23, 24, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 280px 1fr 2fr 160px;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  z-index: 999;
}

.player-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.player-cover {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}
.player-cover img { width: 100%; height: 100%; object-fit: cover; }
.player-info { min-width: 0; }
.player-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ctrl-btn {
  font-size: 18px;
  color: var(--text-secondary);
  transition: var(--transition);
  padding: 6px;
  border-radius: 50%;
}
.ctrl-btn:hover { color: var(--text-primary); }
.ctrl-play {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 0 16px rgba(70,195,208,0.3);
}
.ctrl-play:hover { transform: scale(1.05); opacity: 0.9; }

.player-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.time {
  font-size: 12px;
  color: var(--text-muted);
  min-width: 36px;
  text-align: center;
}
.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--bg-hover);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.progress-bar:hover { height: 6px; }
.progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  transition: var(--transition);
}
.progress-bar:hover .progress-fill::after { opacity: 1; }

.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.player-volume input[type="range"] {
  -webkit-appearance: none;
  width: 90px;
  height: 4px;
  background: var(--bg-hover);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.player-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
}
.footer-bottom {
  padding: 16px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 32px;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 18px;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 4px 8px;
  border-radius: 6px;
}
.modal-close:hover { color: var(--text-primary); background: var(--bg-hover); }

.modal-track-header {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.modal-cover {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a2a3a, #0d1f2d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  flex-shrink: 0;
  overflow: hidden;
}
.modal-cover img { width: 100%; height: 100%; object-fit: cover; }
.modal-track-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.modal-track-info p { font-size: 14px; color: var(--text-secondary); margin-bottom: 4px; }
.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.modal-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(70,195,208,0.1);
  color: var(--cyan);
}
.modal-actions { display: flex; gap: 12px; margin-top: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { margin: 0 auto; max-width: 100%; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .player-bar { grid-template-columns: 1fr auto 2fr; }
  .player-volume { display: none; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .search-box,
  .nav-actions .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { gap: 16px; }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 15px; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }

  .section { padding: 48px 0; }

  .tracks-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .genres-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .artists-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .labels-grid { grid-template-columns: 1fr; }

  .catalog-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .catalog-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  .catalog-title-row { gap: 10px; }
  .play-all-label { display: none; }
  .btn-play-all { padding: 0; width: 36px; height: 36px; border-radius: 50%; justify-content: center; }

  .player-bar {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 12px;
    gap: 8px;
    height: 64px;
  }
  .player-volume { display: none; }
  .time { min-width: 28px; font-size: 11px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { max-width: 100%; }

  .modal { padding: 20px; }
  .modal-track-header { flex-direction: column; gap: 14px; }
  .modal-cover { width: 100%; height: 180px; border-radius: 10px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-badge { font-size: 12px; }
  .stat-num { font-size: 22px; }

  .tracks-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .genres-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }

  .section-header h2 { font-size: 20px; }

  .player-bar {
    grid-template-columns: auto auto 1fr;
    height: 60px;
    padding: 0 10px;
    gap: 6px;
  }
  .player-cover { width: 38px; height: 38px; font-size: 16px; }
  .player-title { font-size: 12px; }
  .player-artist { font-size: 11px; }
  .ctrl-btn { font-size: 15px; padding: 4px; }
  .ctrl-play { width: 36px; height: 36px; font-size: 14px; }
  .time { display: none; }
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--bg-hover); color: var(--text-primary); }

/* ===== LOADING SKELETON ===== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== BEATPORT LINK ===== */
.bp-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(70,195,208,0.1);
  padding: 4px 8px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.bp-link:hover {
  background: rgba(70,195,208,0.2);
  color: var(--cyan-light);
}

/* Ajuste columnas catálogo para nuevos campos */
.catalog-row,
.catalog-header {
  grid-template-columns: 40px 60px 1fr 1fr 120px 100px 44px 60px;
}

@media (max-width: 768px) {
  .catalog-row,
  .catalog-header {
    grid-template-columns: 40px 44px 1fr 120px 70px;
  }
}

/* ===== DOWNLOAD BUTTON ===== */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-download:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ===== LANG TOGGLE ===== */
.btn-lang {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  flex-shrink: 0;
}
.btn-lang:hover,
.btn-lang.active {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ===== MOBILE TOUCH IMPROVEMENTS ===== */
@media (max-width: 768px) {
  /* Touch target mínimo 44px */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 8px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle:active { background: var(--bg-hover); }

  /* Mobile nav links más grandes */
  .mobile-nav a {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }

  /* Botones con mejor área táctil */
  .ctrl-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .ctrl-play {
    min-width: 44px;
    min-height: 44px;
  }

  /* Evitar zoom en inputs en iOS */
  input[type="text"],
  input[type="range"] {
    font-size: 16px;
  }

  /* Catalog rows más fáciles de tocar */
  .catalog-row {
    padding: 12px 8px;
    min-height: 56px;
  }

  /* Genre cards más grandes */
  .genre-card {
    padding: 20px 12px;
    min-height: 80px;
    -webkit-tap-highlight-color: transparent;
  }

  /* Track cards */
  .track-card { -webkit-tap-highlight-color: transparent; }

  /* Btn lang en móvil */
  .btn-lang { display: none; }
}

/* ===== ADVANCED CATALOG FILTERS ===== */
.catalog-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}
.catalog-filter-genres {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.catalog-filter-inputs {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.catalog-filter-inputs .filter-input-wrap {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .catalog-filter-bar { flex-direction: column; align-items: stretch; }
  .catalog-filter-genres { overflow-x: auto; flex-wrap: nowrap; }
  .catalog-filter-inputs { flex-direction: column; }
  .catalog-filter-inputs .filter-input-wrap { max-width: 100%; }
}
.catalog-filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.catalog-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-input-wrap {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}
.filter-input-wrap input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 32px 7px 14px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font);
  transition: var(--transition);
}
.filter-input-wrap input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(70,195,208,0.1);
}
.filter-input-wrap input::placeholder { color: var(--text-muted); }
.filter-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 2px;
  display: none;
}
.filter-clear.visible { display: block; }: 13px;
  font-family: var(--font);
  transition: var(--transition);
}
.filter-input-wrap input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(70,195,208,0.1);
}
.filter-input-wrap input::placeholder { color: var(--text-muted); }
.filter-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 2px;
  display: none;
}
.filter-clear.visible { display: block; }

/* ===== QUEUE PANEL ===== */
.queue-panel {
  position: fixed;
  bottom: calc(var(--player-height) + 8px);
  right: 16px;
  width: 340px;
  max-height: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  z-index: 998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.queue-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.queue-close:hover { color: var(--text-primary); background: var(--bg-hover); }
.queue-list {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0;
}
.queue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}
.queue-item:hover { background: var(--bg-hover); }
.queue-item.playing { background: rgba(70,195,208,0.08); }
.queue-item.playing .queue-item-title { color: var(--cyan); }
.queue-item-num {
  font-size: 12px;
  color: var(--text-muted);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.queue-item-cover {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.queue-item-cover img { width: 100%; height: 100%; object-fit: cover; }
.queue-item-info { flex: 1; min-width: 0; }
.queue-item-title {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.queue-item-artist {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.queue-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  opacity: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.queue-item:hover .queue-item-remove { opacity: 1; }
.queue-item-remove:hover { color: var(--text-primary); }

/* Shuffle active */
.ctrl-btn.active { color: var(--cyan); }

@media (max-width: 768px) {
  .queue-panel {
    right: 8px;
    left: 8px;
    width: auto;
    max-height: 50vh;
    bottom: calc(64px + 8px);
  }
  .filter-input-wrap { max-width: 100%; }
}

/* ===== FILTER DROPDOWN ===== */
.filter-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 500;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.filter-dropdown li {
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter-dropdown li:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.filter-input-wrap { position: relative; }

/* ===== PLAYER COVER CLICKEABLE ===== */
.player-cover[data-release-catalog] {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.player-cover[data-release-catalog]:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* ===== CATALOG PAGINATION ===== */
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 0 8px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover:not([disabled]) {
  border-color: var(--cyan);
  color: var(--cyan);
}
.page-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}
.page-btn[disabled] {
  opacity: 0.3;
  cursor: default;
}
.page-prev, .page-next { font-size: 16px; }
.page-ellipsis {
  color: var(--text-muted);
  font-size: 13px;
  padding: 0 4px;
  line-height: 36px;
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.btn-lang-opt {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 2px;
  transition: var(--transition);
}
.btn-lang-opt:hover { color: var(--text-secondary); }
.btn-lang-opt.active { color: var(--cyan); }
.lang-sep {
  color: var(--border);
  font-size: 12px;
  user-select: none;
}
@media (max-width: 768px) {
  .lang-switcher { display: none; }
}

/* ===== VINYL SOUNDWAVE (centrada encima del vinilo, no gira) ===== */
/* Wrapper que gira CON el vinilo (sin contrarrestar) */
.vinyl-wave-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.vinyl-soundwave {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.vinyl-soundwave .bar {
  width: 3px;
  background: var(--gradient);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
  height: 8px;
}
.vinyl-soundwave .bar:nth-child(odd)  { animation-delay: 0.1s; }
.vinyl-soundwave .bar:nth-child(3n)   { animation-delay: 0.3s; }
.vinyl-soundwave .bar:nth-child(4n)   { animation-delay: 0.5s; }
.vinyl-soundwave .bar:nth-child(5n)   { animation-delay: 0.2s; }
.vinyl-soundwave:hover .bar { opacity: 0.7; }

/* ===== QUEUE DRAG & DROP ===== */
.queue-drag-handle {
  color: var(--text-muted);
  font-size: 14px;
  cursor: grab;
  padding: 0 4px;
  flex-shrink: 0;
  user-select: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.queue-item:hover .queue-drag-handle { opacity: 1; }
.queue-item.dragging {
  opacity: 0.4;
  background: var(--bg-hover);
}
.queue-item.drag-over {
  border-top: 2px solid var(--cyan);
}

/* Ocultar columnas en móvil */
@media (max-width: 768px) {
  .col-hide-mobile { display: none !important; }
  .catalog-row,
  .catalog-header {
    grid-template-columns: 28px 40px 1fr 44px;
  }
}

/* Columna del botón + */
.row-add-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botón + en columna propia */
.row-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(70,195,208,0.15);
  border: 1.5px solid rgba(70,195,208,0.4);
  color: var(--cyan);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
.row-add-btn:hover {
  background: var(--cyan);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(70,195,208,0.4);
}

/* ===== DISCOVER SECTION ===== */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.discover-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.discover-card:hover {
  border-color: rgba(70,195,208,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-cyan);
}
.discover-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.discover-cover img { width: 100%; height: 100%; object-fit: cover; }
.discover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: var(--transition);
}
.discover-card:hover .discover-overlay { opacity: 1; }
.discover-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(70,195,208,0.5);
  transition: var(--transition);
  font-family: var(--font);
}
.discover-play:hover { transform: scale(1.1); }
.discover-add {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font);
  line-height: 1;
  padding: 0;
}
.discover-add:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.discover-info { padding: 12px; }
.discover-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.discover-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.discover-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
@media (max-width: 768px) {
  .discover-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
}
