/* ==========================================
   ASTURIAS ELECTRÓNICA — CSS
   Estética: industrial-rave, tipografía bold
   ========================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #0f0f0f;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --border: #2a2a2a;
  --accent: #c8ff00;       /* verde eléctrico */
  --accent-2: #ff3c00;     /* naranja industrial */
  --accent-dim: rgba(200,255,0,0.12);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Mono', monospace;
  --font-ui: 'Barlow Condensed', sans-serif;
  --radius: 2px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }

img { max-width: 100%; display: block; }

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   BOTONES
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn--solid {
  background: var(--accent);
  color: #000;
}
.btn--solid:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 12px;
}

.btn--xs {
  padding: 0.4rem 0.9rem;
  font-size: 11px;
}

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  opacity: 0.5;
  cursor: default;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav.scrolled {
  padding: 0.9rem 2.5rem;
  background: rgba(10,10,10,0.98);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--accent);
  opacity: 1;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Noise texture overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* Grid lines */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gradient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,60,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.hero__title .line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.hero__title .line:nth-child(1) { animation-delay: 0.3s; }
.hero__title .line:nth-child(2) { animation-delay: 0.45s; }
.hero__title .line:nth-child(3) { animation-delay: 0.6s; }

.hero__title .accent {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.hero__sub {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Ticker */
.hero__ticker {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.ticker__inner span { padding-right: 0; }

/* ==========================================
   SECTIONS
   ========================================== */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--bg-alt);
}

.section__header {
  margin-bottom: 4rem;
}

.section__tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
  margin-bottom: 1.5rem;
}

.section__title em {
  font-style: normal;
  color: var(--accent);
}

.section__desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
}

.section__desc a {
  color: var(--accent);
}

/* ==========================================
   FILTER BAR
   ========================================== */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.filter:hover, .filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* ==========================================
   ARTISTS GRID
   ========================================== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5px;
}

.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.artist-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.artist-card.hidden {
  display: none;
}

.artist-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--surface-2);
}

.artist-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--surface-2) 0%, #0d0d0d 100%);
}

.artist-card__placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 60%);
}

.artist-card:not([data-type="colectivo"]) .artist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artist-card:not([data-type="colectivo"]):hover .artist-card__img img {
  transform: scale(1.04);
}

.artist-card__body {
  padding: 1.5rem;
}

.artist-card__tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.artist-card__bio {
  display: none;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.artist-card__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  opacity: 1;
}

/* ==========================================
   EVENTS LIST
   ========================================== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.event-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

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

.event-item:hover {
  background: var(--surface);
}

.event-item--past {
  opacity: 0.45;
}

.event-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.event-item__day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.event-item__month {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 2px;
}

.event-item__venue {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.event-item__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.event-item__artists {
  font-size: 13px;
  color: var(--text-muted);
}

.event-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.event-item__genre {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 3px 8px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: var(--radius);
}

.event-item__price {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}

.past-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 2px 6px;
  background: var(--surface-2);
  color: var(--text-dim);
  border-radius: var(--radius);
  margin-left: 6px;
}

/* ==========================================
   REVIEWS GRID
   ========================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: var(--accent);
}

.review-card--featured {
  grid-row: 1 / 3;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.review-card__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  text-transform: uppercase;
}

.review-card__score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.review-card__score small {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.review-card__cover {
  height: 220px;
  background: var(--surface-2);
  overflow: hidden;
}

.review-card--featured .review-card__cover {
  height: 280px;
}

.review-card__cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #0d0d0d 100%);
}

.review-card__cover-placeholder span {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
}

.review-card__body {
  padding: 1.5rem;
}

.review-card__meta {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.5rem;
}

.review-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.review-card--featured .review-card__title {
  font-size: 2rem;
}

.review-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.review-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.review-card__tags span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ==========================================
   ABOUT
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 14px;
  line-height: 1.8;
}

.about__text .btn {
  margin-top: 0.5rem;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 13px;
  max-width: 280px;
}

.footer__links h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding: 3rem 1.5rem 2rem; }

  .artists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .event-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
  }
  .event-item__meta { display: none; }
  .event-item .btn { grid-column: 2; }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card--featured { grid-row: auto; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand { grid-column: 1 / -1; }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .container { padding: 0 1.25rem; }

  .section { padding: 4rem 0; }

  .artists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } /* mobile */

  .event-item { padding: 1.25rem; }

  .about__stats { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr; }
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.pag-btn:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.pag-btn:disabled {
  cursor: default;
}

.pag-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.pag-current {
  color: var(--accent);
  min-width: 1.5ch;
  text-align: center;
}

.pag-sep {
  color: var(--text-dim);
  font-size: 1.2rem;
}

.pag-total {
  color: var(--text-dim);
  min-width: 1.5ch;
  text-align: center;
}

/* ==========================================
   EVENTS — COUNTDOWN & SORTING
   ========================================== */
.event-item__countdown {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.countdown--soon {
  background: rgba(200,255,0,0.15);
  color: var(--accent);
  border: 1px solid rgba(200,255,0,0.3);
}

.countdown--days {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.countdown--today {
  background: rgba(255,60,0,0.15);
  color: var(--accent-2);
  border: 1px solid rgba(255,60,0,0.3);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.event-item--next {
  border-left: 3px solid var(--accent);
}

.next-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 2px 6px;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius);
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* ==========================================
   ARTIST NAME — CLICKABLE
   ========================================== */
.artist-card__name {
  cursor: pointer;
  transition: color var(--transition);
}
.artist-card__name:hover {
  color: var(--accent);
}

/* ==========================================
   BIO MODAL
   ========================================== */
.bio-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.bio-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.bio-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s ease;
  margin: auto;
}
.bio-modal-backdrop.open .bio-modal {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .bio-modal-backdrop { padding: 1rem; }
  .bio-modal { padding: 1.5rem; margin: 0.5rem auto; }
  .bio-modal__name { font-size: 2rem !important; padding-right: 2.5rem; }
}
.bio-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
  line-height: 1;
}
.bio-modal__close:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.bio-modal__tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.bio-modal__name {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.bio-modal__bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* ==========================================
   ARTIST PHOTO — DARK MOODY B&W FILTER
   ========================================== */
.artist-card:not([data-type="colectivo"]) .artist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.75);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.artist-card:not([data-type="colectivo"]):hover .artist-card__img img {
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
  transform: scale(1.04);
}

/* ── DE LA A A LA Z ── */
.section__az {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.az-letter {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  display: inline-block;
  animation: azPulse 2.5s ease-in-out infinite;
}

.az-letter:last-child {
  animation-delay: 1.25s;
}

@keyframes azPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* ── MODAL MOBILE SCROLL ── */
@media (max-width: 600px) {
  .bio-modal-backdrop {
    padding: 0.75rem !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .bio-modal {
    padding: 1.25rem !important;
    margin: 0.5rem auto !important;
    max-height: none !important;
  }
  .bio-modal__name {
    font-size: 1.8rem !important;
    padding-right: 2.5rem;
  }
}

/* ==========================================
   SPOTIFY PLAYER
   ========================================== */
.player-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.player-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.player-live {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #1db954;
  text-transform: uppercase;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.player-name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.player-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-dim);
}

.player-footer a {
  color: #1db954;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.player-footer a:hover {
  opacity: 0.7;
}

/* ==========================================
   REVIEW MOOD BADGE
   ========================================== */
.review-card__mood {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  line-height: 1;
  padding: 4px 12px;
  border: 1px solid rgba(200,255,0,0.3);
  background: rgba(200,255,0,0.07);
  border-radius: var(--radius);
  display: inline-block;
}

.review-card--featured .review-card__mood {
  font-size: 1.6rem;
}

/* ==========================================
   STICKY BOTTOM PLAYER
   ========================================== */
.sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #0d0d0d;
  border-top: 1px solid var(--accent);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.sticky-player__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  cursor: pointer;
}

.sticky-player__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-player__icon {
  font-size: 16px;
  color: #1db954;
  animation: blink 2s ease-in-out infinite;
}

.sticky-player__label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.sticky-player__sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.sticky-player__toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--accent);
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.sticky-player__toggle:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.sticky-player__content {
  display: none;
  border-top: 1px solid var(--border);
}

.sticky-player__content.open {
  display: block;
}

@media (max-width: 600px) {
  .sticky-player__bar { padding: 0.75rem 1rem; }
  .sticky-player__sub { display: none; }
  .sticky-player__label { font-size: 0.85rem; }
}
