/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050508;
  --bg-alt: #0a0c12;
  --bg-card: #0e1219;
  --text: #f0f4ff;
  --text-muted: #8b9bb8;
  --accent: #00c3ff;
  --accent-soft: #3d9eff;
  --accent-glow: rgba(0, 195, 255, 0.35);
  --border: #1a2233;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --radius: 12px;
}

/* ===== PARTICLES ===== */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}


/* ===== CURSOR GLOW ===== */
.cursor-glow,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-glow.visible,
.cursor-dot.visible {
  opacity: 1;
}

.cursor-glow {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 195, 255, 0.2) 0%, rgba(0, 180, 255, 0.08) 40%, transparent 68%);
  mix-blend-mode: screen;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow:
    0 0 8px rgba(0, 220, 255, 1),
    0 0 18px rgba(0, 195, 255, 0.9),
    0 0 36px rgba(0, 195, 255, 0.45);
  border: 1px solid rgba(255,255,255,0.8);
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow,
  .cursor-dot {
    display: none !important;
  }
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: #03050a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
  overflow: hidden;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.05);
}

.loader-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: loaderOrbFloat 6s ease-in-out infinite;
}

.loader-orb.o1 {
  width: 320px;
  height: 320px;
  background: rgba(0, 195, 255, 0.35);
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.loader-orb.o2 {
  width: 280px;
  height: 280px;
  background: rgba(61, 158, 255, 0.3);
  bottom: 15%;
  right: 15%;
  animation-delay: -2s;
}

.loader-orb.o3 {
  width: 200px;
  height: 200px;
  background: rgba(100, 80, 255, 0.25);
  top: 50%;
  left: 55%;
  animation-delay: -4s;
}

@keyframes loaderOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.15); }
}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.loader-ring {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Glow redondo sin cortes (no usa filter del SVG) */
.loader-ring::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 195, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ringGlowPulse 1.8s ease-in-out infinite;
}

@keyframes ringGlowPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loader-ring-svg {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transform: rotate(-90deg);
  overflow: visible;
  z-index: 1;
}

.loader-ring-bg {
  fill: none;
  stroke: rgba(0, 195, 255, 0.15);
  stroke-width: 2;
}

.loader-ring-progress {
  fill: none;
  stroke: #00c3ff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  animation: ringLoad 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ringLoad {
  to { stroke-dashoffset: 0; }
}

.loader-logo-img {
  height: 100px;
  width: auto;
  max-width: 150px;
  position: relative;
  z-index: 2;
  animation: logoGlow 1.8s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 18px rgba(0, 195, 255, 0.5));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(0, 195, 255, 0.85));
    transform: scale(1.05);
  }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  color: var(--text);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(0, 195, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00c3ff, #3d9eff, #00c3ff);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: loadProgress 1.3s ease-in-out forwards, shimmerBar 1.5s linear infinite;
  box-shadow: 0 0 12px rgba(0, 195, 255, 0.5);
}

@keyframes loadProgress {
  0% { width: 0%; }
  50% { width: 65%; }
  100% { width: 100%; }
}

@keyframes shimmerBar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Skeleton helpers */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, #1e1e1e 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Smooth reveal animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50% { box-shadow: 0 0 20px 2px rgba(255,255,255,0.08); }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.section-header {
  margin-bottom: 32px;
}

.section-header.centered {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 195, 255, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #00c3ff 0%, #3d9eff 100%);
  color: #050508;
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #33d1ff 0%, #5aadff 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(0, 195, 255, 0.35);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0, 195, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 195, 255, 0.12);
}

.btn-full {
  width: 100%;
}

.btn-nav {
  padding: 8px 20px !important;
  background: linear-gradient(135deg, #00c3ff 0%, #3d9eff 100%);
  color: #050508 !important;
  border-radius: 50px;
  font-weight: 600;
}

.btn-nav:hover {
  background: linear-gradient(135deg, #33d1ff 0%, #5aadff 100%) !important;
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.04);
  filter: brightness(1.15);
}

.logo-img-footer {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 150, 255, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0, 200, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(40, 100, 220, 0.12) 0%, transparent 50%);
  animation: gradientShift 12s ease-in-out infinite alternate;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 180, 255, 0.4);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(0, 220, 255, 0.3);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

.hero-orb-3 {
  width: 260px;
  height: 260px;
  background: rgba(60, 140, 255, 0.28);
  top: 40%;
  left: 50%;
  animation-delay: -12s;
}

@keyframes gradientShift {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.4) 50%, var(--bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.hero-year {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
  animation: fadeUp 1s ease 0.2s both;
}

.hero-tagline {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.55s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 0;
  background: transparent;
}

/* ===== ABOUT ===== */
.about {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about-text strong {
  color: var(--text);
  font-weight: 500;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SKY SECTION ===== */
.sky-section {
  background: transparent;
}

.sky-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.sky-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 420px;
}

.sky-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.sky-role {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
}

.sky-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

/* ===== ARTISTS ===== */
.artists {
  background: transparent;
}

.artists-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.filter-btn.active {
  background: linear-gradient(135deg, #00c3ff 0%, #3d9eff 100%);
  border-color: transparent;
  color: #050508;
  font-weight: 600;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.artists-scroll-wrap {
  position: relative;
}

.artists-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 195, 255, 0.4) transparent;
}

/* Carrusel infinito cuando hay más de 4 artistas visibles */
.artists-scroll-wrap {
  position: relative;
  overflow: hidden;
}

.artists-scroll-wrap.is-carousel::before,
.artists-scroll-wrap.is-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.artists-scroll-wrap.is-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg, #050508) 0%, transparent 100%);
}

.artists-scroll-wrap.is-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg, #050508) 0%, transparent 100%);
}

.artists-grid.is-scrolling {
  justify-content: flex-start;
  width: max-content;
  max-width: none;
  overflow: visible;
  scroll-snap-type: none;
  scrollbar-width: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.artists-grid.is-scrolling::-webkit-scrollbar {
  display: none;
}

/* Evita conflicto de transforms en hover durante el scroll */
.artists-grid.is-scrolling .artist-card:hover {
  transform: translateY(-4px);
}

.artists-grid::-webkit-scrollbar {
  height: 6px;
}

.artists-grid::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

.artists-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 195, 255, 0.4);
  border-radius: 6px;
}

.artists-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 195, 255, 0.6);
}

.artist-card {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              max-width 0.4s ease,
              margin 0.4s ease,
              flex-basis 0.4s ease,
              box-shadow var(--transition),
              border-color var(--transition);
}

.artist-card.is-hidden {
  /* Sacadas del flex: si no, el gap entre items de ancho 0 descentra el roster */
  display: none !important;
  pointer-events: none;
}

.artist-card.is-showing {
  animation: cardSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateX(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.artist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 195, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 100, 180, 0.2), 0 0 30px rgba(0, 195, 255, 0.08);
}

.artist-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.artist-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 195, 255, 0.9);
  color: #050508;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
  box-sizing: border-box;
}

.artists-grid.is-scrolling .artist-badge {
  font-size: 11px;
  padding: 5px 12px;
  transform: translateZ(0);
}

.artist-badge.badge-cantante {
  background: rgba(180, 100, 255, 0.9);
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.05);
}

.artist-info {
  padding: 20px;
  text-align: center;
}

.artist-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.artist-info a.artist-handle {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-block; /* solo el texto es clickeable, no todo el ancho */
  margin-bottom: 12px;
  max-width: 100%;
}

.artist-info a.artist-handle:hover {
  color: var(--accent);
}

/* Evitar selección / drag nativo de imágenes en el roster */
.artists-grid .artist-card,
.artists-grid .artist-card img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.artists-grid .artist-card img {
  pointer-events: none; /* el drag lo maneja el wrap; links/botones siguen activos */
}
.artists-grid .artist-info a,
.artists-grid .artist-info button,
.artists-grid .artist-socials a {
  pointer-events: auto;
}

.artist-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.artist-socials a {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition), filter var(--transition);
  display: flex;
  align-items: center;
}

.artist-socials a:hover {
  color: var(--accent);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px var(--accent-glow));
}

.btn-saber-mas {
  margin-top: 14px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: transparent;
  border: 1px solid rgba(0, 195, 255, 0.3);
  border-radius: 50px;
  color: var(--accent);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-saber-mas:hover {
  border-color: var(--accent);
  color: #050508;
  background: linear-gradient(135deg, #00c3ff 0%, #3d9eff 100%);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* ===== RECENT / SETS ===== */
.recent {
  background: transparent;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.recent-card {
  cursor: pointer;
  border: none;
  text-align: left;
  font: inherit;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
}

.recent-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 195, 255, 0.3);
  box-shadow: 0 16px 32px rgba(0, 100, 180, 0.22), 0 0 24px rgba(0, 195, 255, 0.1);
}

.recent-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.recent-card:hover .recent-thumb img {
  transform: scale(1.08);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.recent-card:hover .play-icon {
  opacity: 1;
}

.recent-info {
  padding: 18px;
}

.recent-artist {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.recent-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.recent-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-presskit {
  background: linear-gradient(135deg, #00c3ff 0%, #3d9eff 100%) !important;
  color: #050508 !important;
  border-color: transparent !important;
  font-weight: 600;
}

.btn-presskit:hover {
  background: linear-gradient(135deg, #33d1ff 0%, #5aadff 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.4;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2;
}

.modal-close:hover {
  background: rgba(255,255,255,0.15);
}

.modal-content {
  padding: 40px 32px 32px;
}

.modal-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.modal-photo {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.modal-header .modal-handle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.modal-bio {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-links a,
.modal-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.modal-links a:hover,
.modal-social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 195, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 195, 255, 0.15);
}

.modal-social-btn svg {
  flex-shrink: 0;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.modal-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.modal-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.modal-photos img:hover {
  transform: scale(1.03);
}

.modal-releases {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-release {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all var(--transition);
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.modal-release:hover {
  border-color: rgba(0, 195, 255, 0.35);
  background: rgba(0, 195, 255, 0.06);
}

.release-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 55px;
}

.release-title {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.release-platform {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sky socials */
.sky-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.sky-socials .social-btn {
  width: 42px;
  height: 42px;
}

/* ===== SHOWS ===== */
.shows {
  background: transparent;
}

.section-subtitle {
  max-width: 520px;
  margin: -8px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.show-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.show-card:hover {
  border-color: rgba(0, 195, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 100, 180, 0.2), 0 0 20px rgba(0, 195, 255, 0.08);
}

.show-card.featured {
  border-color: rgba(255,255,255,0.25);
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  text-align: center;
}

.show-day {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
}

.show-month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.show-artist {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.show-venue {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.show-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.shows-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 32px;
  opacity: 0.8;
}

/* Social bar in contact */
.social-bar {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(0, 195, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 195, 255, 0.2);
}

/* ===== OBJECTIVES ===== */
.objectives {
  background: transparent;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.objective-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.objective-card:hover {
  border-color: rgba(0, 195, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 100, 180, 0.12);
}

.objective-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  opacity: 0.5;
}

.objective-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.objective-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  background: transparent;
}


/* Firma Sky Agency */
.sky-signature {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  letter-spacing: 0.04em;
}

.sky-signature .sig-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #00c3ff;
  text-shadow: 0 0 18px rgba(0, 195, 255, 0.35);
}

.sky-signature .sig-tagline {
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  color: #7dd3fc;
  opacity: 0.95;
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(0, 195, 255, 0.25);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 195, 255, 0.08);
}

.tab-btn.active {
  background: linear-gradient(135deg, #00c3ff 0%, #3d9eff 100%);
  border-color: transparent;
  color: #050508;
  font-weight: 600;
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Ambos paneles ocupan el mismo alto → no salta la sección de abajo */
.services-panels {
  display: grid;
  grid-template-columns: 1fr;
}

.services-panels > .tab-content {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.services-panels > .tab-content.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* fallback si no hay wrapper */
.tab-content:not(.services-panels > .tab-content) {
  display: none;
}
.tab-content.active:not(.services-panels > .tab-content) {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #00c3ff, #3d9eff);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 195, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 100, 180, 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== BRANDS / COLLABORATORS ===== */
.brands {
  background: transparent;
  overflow: hidden;
}

.brands-carousel {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Siempre en una sola fila horizontal */
.brands-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: max-content;
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Si desborda: carrusel infinito */
.brands-carousel {
  position: relative;
}

.brands-carousel.is-scrolling::before,
.brands-carousel.is-scrolling::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.brands-carousel.is-scrolling::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg, #050508) 0%, transparent 100%);
}

.brands-carousel.is-scrolling::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg, #050508) 0%, transparent 100%);
}

.brands-carousel.is-scrolling .brands-track {
  justify-content: flex-start;
  margin: 0;
  /* MISMO gap que en reposo — si cambia, el loop salta */
  gap: 40px;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.brand-item {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box {
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 195, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 195, 255, 0.04);
  padding: 16px;
  overflow: hidden;
  transition: all var(--transition);
  box-sizing: border-box;
}

.brand-box img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* A color por defecto */
  filter: none;
  opacity: 0.95;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/*
  MONOCROMO OPCIONAL (blanco/gris):
  Sumá la clase "mono" al brand-box si querés ese logo en blanco.
  Ejemplo: <div class="brand-box mono">...</div>
*/
.brand-box.mono img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.brand-box:hover {
  border-color: rgba(0, 195, 255, 0.45);
  background: rgba(0, 195, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 100, 180, 0.12);
}

.brand-box:hover img {
  opacity: 1;
}

.brand-placeholder span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.brands-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 28px;
  opacity: 0.7;
}

/* brands/artists marquee: movimiento por JS (rAF) */

/* ===== CONTACT ===== */
.contact {
  background: transparent;
  padding-bottom: 56px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color var(--transition);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-icon {
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Email copiable (Contacto) */
.contact-email-copy {
  position: relative;
  flex-wrap: wrap;
  row-gap: 4px;
}
.contact-email-copy .contact-email-text {
  word-break: break-all;
}
.contact-copy-hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-left: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  background: rgba(0, 195, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.contact-email-copy:hover .contact-copy-hint {
  opacity: 1;
  background: rgba(0, 195, 255, 0.16);
  border-color: var(--accent);
}
.contact-email-copy.is-copied,
.contact-email-copy.is-copied .contact-email-text {
  color: #22c55e;
}
.contact-copy-hint.is-copied {
  color: #04140a;
  background: #22c55e;
  border-color: #22c55e;
  opacity: 1;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #555;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #070a10 100%);
  border-top: 1px solid rgba(0, 195, 255, 0.15);
  padding: 48px 0 32px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 195, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .artist-card {
    flex: 0 0 240px;
    width: 240px;
  }
  
  .about-grid,
  .sky-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sky-image {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .objectives-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    border-left: 1px solid var(--border);
    transition: right var(--transition);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .hero-title {
    font-size: clamp(4rem, 20vw, 7rem);
  }
  
  .artist-card {
    flex: 0 0 220px;
    width: 220px;
  }
  
  .artists-grid {
    gap: 16px;
  }
  
  .shows-grid {
    grid-template-columns: 1fr;
  }
  
  .show-card {
    flex-wrap: wrap;
  }
  
  .contact-form-wrapper {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .artist-card {
    flex: 0 0 200px;
    width: 200px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

.btn-flyer {
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-flyer[href="#"],
.btn-flyer[href=""],
.btn-flyer[data-flyer="#"] {
  opacity: 0.55;
  pointer-events: none;
}


/* Release modal centrado */
.modal--media {
  max-width: 640px;
  width: min(92vw, 640px);
}
.modal--media .modal-content {
  padding: 28px 24px 32px;
}
.release-modal-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.release-modal-header {
  text-align: center;
  margin-bottom: 18px;
  width: 100%;
}
.release-modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.03em;
  margin: 0 0 6px;
}
.release-modal-artist {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.release-modal-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 36ch;
}

.release-embed {
  width: 100%;
  margin: 8px 0 18px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.release-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.release-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}
.release-platform {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 195, 255, 0.22);
  background: rgba(0, 195, 255, 0.05);
  text-align: left;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}
.release-platform:hover {
  border-color: rgba(0, 195, 255, 0.5);
  background: rgba(0, 195, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 100, 180, 0.15);
  transform: translateY(-2px);
}
.release-platform-cover {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #12161f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.release-platform-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.release-platform-fallback {
  color: var(--accent);
  font-size: 1.4rem;
}
.release-platform-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.release-platform-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.release-platform-info strong {
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.release-platform-cta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.release-links a {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  color: var(--accent);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
.release-links a:hover {
  background: rgba(0, 195, 255, 0.1);
  border-color: var(--accent);
}


/* Modal release más grande y centrado */
.modal--media {
  max-width: min(960px, 96vw) !important;
  width: min(960px, 96vw) !important;
}
.modal--media .modal-content {
  padding: 32px 28px 36px !important;
}
.release-modal-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.release-modal-header {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.release-modal-header h2 {
  text-align: center;
}
.release-loading {
  color: var(--text-muted);
  padding: 40px 0;
}

.release-embed,
.release-embed-lg {
  width: 100%;
  max-width: 100%;
  margin: 4px auto 20px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  position: relative;
}
@media (min-width: 768px) {
  .release-embed-lg {
    min-height: 420px;
  }
}
.release-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.release-platforms {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.release-platform {
  text-align: left;
}


/* ===== Release modal redesign ===== */
.modal--media {
  max-width: min(920px, 94vw) !important;
  width: min(920px, 94vw) !important;
  background: #0a0e16 !important;
  border: 1px solid rgba(0, 195, 255, 0.2) !important;
  overflow: hidden;
}
.modal--media .modal-content {
  padding: 0 !important;
}
.rm-inner {
  position: relative;
  text-align: center;
}
.rm-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(1.2);
  opacity: 0.35;
  pointer-events: none;
}
.rm-body {
  position: relative;
  z-index: 1;
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rm-artist {
  color: #00c3ff;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 600;
}
.rm-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: #f0f4ff;
  line-height: 1.15;
}
.rm-desc {
  color: #8b9bb8;
  font-size: 0.95rem;
  margin: 0 0 22px;
  max-width: 40ch;
}
.rm-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 40px rgba(0,195,255,0.12);
  margin-bottom: 24px;
}
.rm-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.rm-cover-hero {
  width: min(280px, 70%);
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,195,255,0.15);
}
.rm-cover-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
.rm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}
.rm-btn:hover {
  transform: translateY(-2px);
}
.rm-btn-icon {
  font-size: 1rem;
  line-height: 1;
}
.rm-btn-yt {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,0,0,0.3);
}
.rm-btn-yt:hover {
  box-shadow: 0 12px 32px rgba(255,0,0,0.45);
}
.rm-btn-sp {
  background: linear-gradient(135deg, #1ed760, #1db954);
  color: #04140a;
  box-shadow: 0 8px 24px rgba(30, 215, 96, 0.28);
}
.rm-btn-sp:hover {
  box-shadow: 0 12px 32px rgba(30, 215, 96, 0.42);
}
.rm-btn-sc {
  background: linear-gradient(135deg, #ff7700, #ff5500);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 85, 0, 0.28);
}
.rm-btn-sc:hover {
  box-shadow: 0 12px 32px rgba(255, 85, 0, 0.42);
}


/* Force center release modal content */
.modal--media {
  max-width: min(880px, 94vw) !important;
  width: min(880px, 94vw) !important;
  margin: auto !important;
}
.modal--media .modal-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  padding: 0 !important;
}
.rm-inner {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}
.rm-body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 36px 32px 40px !important;
  box-sizing: border-box !important;
}
.rm-title, .rm-artist, .rm-desc {
  text-align: center !important;
  width: 100% !important;
}
.rm-video {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.rm-actions {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ===== Artist modal (Saber más) — layout estable ===== */
#artistModal .modal {
  max-width: 560px;
  width: 100%;
}
#artistModal .modal-content {
  padding: 36px 28px 28px;
}
#artistModal .modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
#artistModal .modal-photo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
#artistModal .modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
  color: var(--text);
}
#artistModal .modal-handle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}
#artistModal .modal-bio {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 22px;
}
#artistModal .modal-section {
  margin-bottom: 22px;
}
#artistModal .modal-section-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}
#artistModal .modal-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
#artistModal .modal-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Filas de música — clases propias, sin conflicto */
#artistModal .artist-tracks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#artistModal .artist-track {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg, #050508);
  border: 1px solid var(--border, #1a2233);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
}
#artistModal .artist-track:hover {
  border-color: rgba(0, 195, 255, 0.35);
  background: rgba(0, 195, 255, 0.06);
}
#artistModal .artist-track-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted, #8b9bb8);
}
#artistModal .artist-track-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text, #f0f4ff);
  line-height: 1.35;
  min-width: 0;
}
#artistModal .artist-track-platform {
  font-size: 0.75rem;
  color: var(--accent, #00c3ff);
  border: 1px solid rgba(0, 195, 255, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
#artistModal .modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
@media (max-width: 480px) {
  #artistModal .artist-track {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  #artistModal .artist-track-type {
    grid-column: 1 / -1;
  }
}


/* Handle clickeable en Saber más */
#artistModal .modal-handle-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
#artistModal .modal-handle-link:hover {
  color: var(--accent);
}

/* Lightbox fotos */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.photo-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.photo-lightbox img {
  max-width: min(920px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.photo-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-lightbox-close:hover {
  background: rgba(0, 195, 255, 0.25);
}


/* Brands track GPU */
#brandsTrack {
  will-change: transform;
}



/* ===== Marquee CSS: desplazamiento EXACTO en px (no % ) ===== */
@keyframes sky-marquee-px {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(var(--marquee-distance, -300px), 0, 0); }
}

#brandsTrack.marquee-running,
#artistsGrid.marquee-running {
  width: max-content !important;
  max-width: none !important;
  animation: sky-marquee-px var(--marquee-duration, 20s) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.brands-carousel.is-scrolling:hover #brandsTrack.marquee-running,
.artists-scroll-wrap.is-carousel:hover #artistsGrid.marquee-running {
  animation-play-state: paused;
}

.brands-carousel.is-scrolling .brands-track,
#artistsGrid.is-scrolling {
  justify-content: flex-start !important;
  margin: 0 !important;
}


/* ===== Control manual roster ===== */
.artists-scroll-wrap {
  position: relative;
}
.artists-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 195, 255, 0.35);
  background: rgba(8, 12, 20, 0.85);
  color: var(--accent, #00c3ff);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.artists-nav:hover {
  background: rgba(0, 195, 255, 0.15);
  border-color: var(--accent, #00c3ff);
}
.artists-nav:active {
  transform: translateY(-50%) scale(0.94);
}
.artists-nav-prev { left: 6px; }
.artists-nav-next { right: 6px; }
.artists-drag-hint {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 8px;
  opacity: 0.7;
}
#artistsGrid.is-scrolling {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  /* sin animación CSS: lo mueve JS */
  animation: none !important;
}
#artistsGrid.is-scrolling.is-dragging {
  cursor: grabbing;
}
#artistsGrid.is-scrolling.is-dragging,
#artistsGrid.is-scrolling.is-dragging * {
  user-select: none !important;
  -webkit-user-select: none !important;
}
#artistsGrid.is-scrolling .artist-card {
  pointer-events: auto;
}
@media (max-width: 640px) {
  .artists-nav {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .artists-nav-prev { left: 2px; }
  .artists-nav-next { right: 2px; }
}


/* ===== Flechas: pulse al click ===== */
.artists-nav.nav-pulse {
  animation: navPulse 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes navPulse {
  0%   { transform: translateY(-50%) scale(1); box-shadow: 0 0 0 0 rgba(0, 195, 255, 0.0); }
  35%  { transform: translateY(-50%) scale(1.12); box-shadow: 0 0 0 10px rgba(0, 195, 255, 0.18); }
  100% { transform: translateY(-50%) scale(1); box-shadow: 0 0 0 0 rgba(0, 195, 255, 0); }
}

/* Cards: cascade al mover con flechas */
.artist-card.card-nudge-in {
  animation: cardNudgeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.artist-card.card-nudge-out {
  animation: cardNudgeOut 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cardNudgeIn {
  0%   { transform: scale(0.92) translateY(10px); filter: brightness(0.85); }
  55%  { transform: scale(1.04) translateY(-4px); filter: brightness(1.08); }
  100% { transform: scale(1) translateY(0); filter: brightness(1); }
}
@keyframes cardNudgeOut {
  0%   { transform: scale(1) translateY(0); }
  40%  { transform: scale(0.96) translateY(6px); filter: brightness(0.9); }
  100% { transform: scale(1) translateY(0); filter: brightness(1); }
}

/* Durante is-scrolling el hover de card no debe pelear con nudge */
.artists-grid.is-scrolling .artist-card.card-nudge-in:hover,
.artists-grid.is-scrolling .artist-card.card-nudge-out:hover {
  transform: none;
}

/* Flechas ocultas por defecto (HTML hidden + CSS por si acaso) */
.artists-nav[hidden] {
  display: none !important;
}


/* ===== Roster transport controls (altura fija = sin salto de layout) ===== */
.artists-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px; /* reserva siempre el espacio — evita salto al filtrar */
  margin: 16px 0 0; /* debajo de las slides */
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.artists-controls.is-active {
  opacity: 1;
  pointer-events: auto;
}

.artists-transport {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(420px, 92%);
}

.artists-skip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 195, 255, 0.28);
  background: rgba(8, 12, 20, 0.75);
  color: var(--accent, #00c3ff);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.artists-skip:hover:not(:disabled) {
  background: rgba(0, 195, 255, 0.14);
  border-color: var(--accent, #00c3ff);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
}
.artists-skip:active:not(:disabled) {
  transform: scale(0.96);
}
.artists-skip:disabled {
  opacity: 0.4;
  cursor: default;
}
.artists-skip .skip-label {
  line-height: 1;
}
.artists-skip svg {
  display: block;
  flex-shrink: 0;
}

.artists-skip.skip-pulse {
  animation: skipPulse 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes skipPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 195, 255, 0); }
  40%  { box-shadow: 0 0 0 12px rgba(0, 195, 255, 0.2); background: rgba(0, 195, 255, 0.2); }
  100% { box-shadow: 0 0 0 0 rgba(0, 195, 255, 0); }
}

/* Rail = timeline tipo seek de canción (click + drag) */
.artists-rail {
  flex: 1;
  min-width: 0;
  height: 28px;
  display: flex;
  align-items: center;
  outline: none;
}
.artists-rail:focus-visible .artists-rail-track {
  box-shadow: 0 0 0 2px rgba(0, 195, 255, 0.35);
}
.artists-rail-track {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 195, 255, 0.12);
  overflow: visible;
  cursor: pointer;
  touch-action: none;
  /* hit area más grande para arrastrar fácil */
  padding: 12px 0;
  margin: -12px 0;
  background-clip: content-box;
  box-sizing: content-box;
  background-color: transparent;
}
.artists-rail-track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(0, 195, 255, 0.12);
  pointer-events: none;
}
.artists-controls:not(.is-active) .artists-rail-track {
  cursor: default;
  pointer-events: none;
}
.artists-rail-fill {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  width: 100%;
  margin-top: -2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 195, 255, 0.35), #00c3ff);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  pointer-events: none;
  z-index: 1;
}
.artists-rail-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00c3ff;
  box-shadow: 0 0 12px rgba(0, 195, 255, 0.7), 0 0 4px #fff;
  transform: translate(-50%, -50%);
  pointer-events: none; /* el track captura el drag */
  z-index: 2;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.artists-rail-track:hover .artists-rail-thumb,
.artists-rail.is-scrubbing .artists-rail-thumb {
  transform: translate(-50%, -50%) scale(1.25);
  box-shadow: 0 0 18px rgba(0, 195, 255, 0.9), 0 0 6px #fff;
}
.artists-rail.is-scrubbing .artists-rail-track::before {
  background: rgba(0, 195, 255, 0.22);
}
.artists-rail.is-scrubbing .artists-rail-fill {
  background: linear-gradient(90deg, rgba(0, 210, 255, 0.5), #5adfff);
}

.artists-drag-hint {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  min-height: 1.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.artists-drag-hint.is-visible {
  opacity: 0.7;
}

/* Ocultar flechas laterales viejas si quedaran en el DOM */
.artists-nav {
  display: none !important;
}

@media (max-width: 480px) {
  .artists-skip .skip-label {
    display: none;
  }
  .artists-skip {
    padding: 10px 12px;
  }
  .artists-transport {
    width: min(360px, 96%);
    gap: 10px;
  }
}


/* YouTube embed en modal releases */
.rm-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 40px rgba(0,195,255,0.12);
  margin-bottom: 12px;
}
.rm-video iframe,
.rm-yt-iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}
.rm-embed-hint {
  font-size: 0.78rem;
  color: var(--text-muted, #8b9bb8);
  margin: 0 0 16px;
  text-align: center;
  opacity: 0.85;
}
