    :root {
      --bg-color: #080809;
      --bg-elevated: #0e0e11;
      --text-main: #fafafa;
      --text-muted: #9ca3af;
      --accent: #d45d27;
      --accent-dim: #a3441c;
      --accent-soft: rgba(212, 93, 39, 0.42);
      --accent-glow: rgba(212, 93, 39, 0.38);
      --glass: rgba(255, 255, 255, 0.035);
      --glass-strong: rgba(255, 255, 255, 0.07);
      --border-hairline: rgba(255, 255, 255, 0.09);
      --font-mono: 'IBM Plex Mono', monospace;
      --font-sans: 'Inter', sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
      --ease-dot-spring: cubic-bezier(0.32, 1.5, 0.48, 1);
      --transition: 0.45s var(--ease-out);
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 22px;
      --radius-pill: 999px;
      --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05);
      --shadow-inset-top: inset 0 1px 0 rgba(255, 255, 255, 0.1);
      --space-content-xs: 10px;
      --space-content-sm: 14px;
      --space-content-md: 20px;
      --space-content-lg: 28px;
      /* Punto nav activo (carrusel horizontal por slide) */
      --nav-dot-active-top: #ff8a4d;
      --nav-dot-active-mid: #d45d27;
      --nav-dot-active-bot: #8a3010;
      --nav-dot-active-glow: rgba(212, 93, 39, 0.38);
    }

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

    html {
      color-scheme: dark;
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .screen .bg-image,
      .screen .bg-video-container,
      .screen.is-active .bg-image,
      .screen.is-active .bg-video-container {
        transition: none !important;
        transform: none !important;
      }
      .floating-mini-player { transition: none !important; }
      .floating-mini-player.fmp-corner-settle { transition: none !important; }
      .floating-mini-player:hover:not(.fmp-dragging) { transform: none; }
      .noise-overlay { opacity: 0.02; }
    }

    .skip-link {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .skip-link:focus {
      position: fixed;
      left: 16px;
      top: 16px;
      z-index: 10001;
      width: auto;
      height: auto;
      margin: 0;
      clip: auto;
      overflow: visible;
      white-space: normal;
      padding: 12px 18px;
      border-radius: var(--radius-sm);
      background: var(--accent);
      color: #0a0a0b;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-decoration: none;
      text-transform: uppercase;
      box-shadow: var(--shadow-lift);
    }

    body, html {
      width: 100%; height: 100%;
      max-width: 100%;
      background-color: var(--bg-color);
      color: var(--text-main);
      font-family: var(--font-sans);
      overflow: hidden;
      overscroll-behavior-y: none;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    /* Efecto Ruido Analógico */
    .noise-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 9999; opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    /* Marco fijo: puntos de navegación van aquí dentro (fixed en RDM/Safari se pegaba al borde de la ventana, no al móvil simulado). */
    .app-stage {
      position: fixed;
      inset: 0;
      z-index: 5;
      overflow: hidden;
    }

    /* Contenedor tipo Reels */
    .reels-container {
      height: 100%;
      min-height: 0;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      overflow-y: scroll; scroll-snap-type: y mandatory; scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .reels-container::-webkit-scrollbar { display: none; }

    .screen {
      height: 100dvh; width: 100%; max-width: 100%; scroll-snap-align: start; position: relative;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 40px 24px; overflow: hidden;
    }

    /* Fondos: imagen (con filtro) vs vídeo (sin filtro en el contenedor — si no, se pierde detalle p. ej. vinilo) */
    .bg-image, .bg-video-container {
      position: absolute; top: -5%; left: -5%; width: 110%; height: 110%;
      background-size: cover; background-position: center; z-index: 0;
      transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease, opacity 0.5s ease;
      will-change: transform;
      pointer-events: none;
    }

    .bg-image {
      opacity: 0.3;
      filter: brightness(0.7) contrast(1.1) saturate(1.05);
    }

    .bg-video-container {
      opacity: 0.58;
      overflow: hidden;
      pointer-events: none;
      filter: none;
    }

    /* Manifiesto: fundido suave imagen → vídeo (evita salto al primer frame) */
    #screen-2 #manifesto-poster {
      opacity: 0.32;
      transition: opacity 0.55s ease, filter 0.55s ease;
    }
    #screen-2 .manifesto-video-layer {
      opacity: 0;
      transition: opacity 0.55s ease;
    }
    #screen-2.manifesto-bg-video-playing .manifesto-video-layer {
      opacity: 0.72;
    }
    #screen-2.manifesto-bg-video-playing #manifesto-poster {
      opacity: 0;
    }

    .bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    /* Truco para que el iframe actúe como fondo cover (Zoom del 150%) */
    .bg-video-iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150vw;
      height: 84.37vw;
      min-height: 150vh;
      min-width: 266.6vh;
      transform: translate(-50%, -50%); 
      pointer-events: none;
    }

    /* YouTube: negro hasta que play/pause de YT desaparezca; luego fundido del velo */
    #screen-video:not(.yt-bg-under-veil):not(.yt-bg-playing) .bg-video-container {
      opacity: 0;
    }
    #screen-video .yt-bg-veil {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background: #0a0a0c;
      opacity: 1;
      transition: none;
    }
    #screen-video:not(.yt-bg-under-veil):not(.yt-bg-playing) .bg-video-iframe,
    #screen-video:not(.yt-bg-under-veil):not(.yt-bg-playing) .bg-video-iframe iframe {
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }
    #screen-video.yt-bg-under-veil .bg-video-container,
    #screen-video.yt-bg-playing .bg-video-container {
      opacity: 0.58;
    }
    #screen-video.yt-bg-under-veil .bg-video-iframe,
    #screen-video.yt-bg-under-veil .bg-video-iframe iframe,
    #screen-video.yt-bg-playing .bg-video-iframe,
    #screen-video.yt-bg-playing .bg-video-iframe iframe {
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: none !important;
    }
    #screen-video.yt-bg-under-veil .yt-bg-veil {
      opacity: 1;
    }
    #screen-video.yt-bg-playing .yt-bg-veil {
      opacity: 0;
      transition: opacity 1.15s ease 0.12s;
    }
    #screen-video.yt-bg-playing .bg-video-container {
      transition: opacity 0.85s ease;
    }

    .screen.is-active .bg-image {
      filter: brightness(0.88) contrast(1.13) saturate(1.18);
      transform: scale(1.05);
    }

    .screen.is-active .bg-video-container {
      transform: scale(1.05);
      filter: none;
    }

    .screen.is-active .bg-light {
      opacity: 0.22;
    }

    .bg-light {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: 0.35;
      background: radial-gradient(circle at 80% 72%, var(--accent-soft), transparent 55%);
      transform: translateZ(0);
      transition: opacity 0.5s ease;
    }
    .bg-gradient {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 72%;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.97) 0%, rgba(8, 8, 10, 0.5) 42%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
    /* Cabecera Global */
    .app-header {
      position: fixed; top: 0; left: 0; width: 100%; display: flex;
      justify-content: space-between; align-items: center;
      padding: max(20px, calc(env(safe-area-inset-top, 0px) + 12px)) 24px 18px;
      z-index: 100;
      background: none;
      border: none;
    }
    .brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
    .brand-circle { width: 12px; height: 12px; border: none; border-radius: 50%; background: rgba(255, 255, 255, 0.85); }

    .menu-btn {
      width: 44px; height: 44px;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      display: flex; justify-content: center; align-items: center;
      cursor: pointer;
      border-radius: var(--radius-pill);
      transition: transform 0.35s var(--ease-out), background 0.35s ease, color 0.25s ease;
      box-shadow: none;
    }
    .menu-btn:hover, .menu-btn:active {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      transform: scale(1.04);
    }
    .menu-btn svg { 
      width: 24px; height: 24px; 
      stroke: currentColor; 
      fill: none; 
      stroke-width: 1.2; 
      stroke-linecap: round; 
    }

    .menu-panel {
      position: fixed;
      top: max(68px, calc(env(safe-area-inset-top, 0px) + 52px));
      right: max(16px, env(safe-area-inset-right, 0px));
      z-index: 120;
      width: min(300px, calc(100vw - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
      max-height: calc(100svh - max(68px, calc(env(safe-area-inset-top, 0px) + 52px)) - max(12px, env(safe-area-inset-bottom, 0px)));
      display: flex;
      flex-direction: column;
      padding: 0;
      overflow: hidden;
      border: none;
      border-radius: var(--radius-lg);
      background: #121214;
      box-shadow: var(--shadow-lift), 0 0 50px rgba(0, 0, 0, 0.55);
    }
    .menu-panel__scroll {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      padding: 8px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 5px;
      align-content: start;
    }
    .menu-panel__scroll::-webkit-scrollbar {
      width: 5px;
    }
    .menu-panel__scroll::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.12);
      border-radius: 99px;
    }
    .menu-panel[hidden] { display: none; }
    .menu-link {
      display: flex; justify-content: space-between; align-items: center;
      min-height: 44px;
      padding: 10px 12px;
      box-sizing: border-box;
      border-radius: 12px;
      text-decoration: none;
      color: #fff;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.85px;
      text-transform: uppercase;
      border: none;
      line-height: 1.2;
      transition: var(--transition);
    }
    .menu-link:hover {
      background: rgba(212, 93, 39, 0.1);
    }

    /* Móvil: rejilla del menú */
    @media (max-width: 768px) {
      .menu-panel {
        width: min(352px, calc(100vw - 20px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
      }
      .menu-panel__scroll {
        grid-template-columns: 1fr 1fr;
        column-gap: 8px;
        row-gap: 4px;
        overflow-y: visible;
        flex: 0 1 auto;
        min-height: 0;
      }
      .menu-link > span:last-child {
        display: none;
      }
      .menu-link {
        min-height: 40px;
        padding: 8px 9px;
        font-size: 8px;
        letter-spacing: 0.55px;
      }
    }

    @media (max-width: 768px) and (max-height: 520px) {
      .menu-panel__scroll {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 6px;
        row-gap: 3px;
        padding: 6px;
      }
      .menu-link {
        min-height: 36px;
        padding: 6px 6px;
        font-size: 7px;
        letter-spacing: 0.4px;
      }
    }

    @media (max-width: 768px) and (max-height: 400px) {
      .menu-panel__scroll {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 4px;
        row-gap: 2px;
        padding: 5px;
      }
      .menu-link {
        min-height: 32px;
        padding: 5px 4px;
        font-size: 6.5px;
        letter-spacing: 0.25px;
      }
    }

    /* Puntos de Navegación — blob líquido naranja */
    .nav-dots {
      position: absolute;
      right: max(4px, env(safe-area-inset-right, 0px));
      top: 50%;
      transform: translateY(-50%);
      z-index: 90;
      pointer-events: none;
    }
    .nav-dots-filter-def {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }
    .nav-dots-inner {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .nav-dots-goo {
      position: absolute;
      inset: 0;
      pointer-events: none;
      filter: url(#nav-dot-goo);
    }
    .nav-dots-track {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 6px 4px;
    }
    .nav-dot-liquid-blob {
      position: absolute;
      left: 50%;
      top: 0;
      border-radius: var(--radius-pill);
      background: linear-gradient(
        180deg,
        var(--nav-dot-active-top) 0%,
        var(--nav-dot-active-mid) 48%,
        var(--nav-dot-active-bot) 100%
      );
      box-shadow:
        0 0 18px var(--nav-dot-active-glow),
        0 0 1px rgba(255, 255, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
      will-change: transform;
      transform: translate3d(-50%, 0, 0) translateY(-50%);
    }
    .nav-dot-liquid-blob::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.38) 0%,
        transparent 42%,
        transparent 58%,
        rgba(255, 140, 80, 0.12) 100%
      );
      pointer-events: none;
    }
    .nav-dot-liquid-blob--trail {
      width: 7px;
      height: 7px;
      opacity: 0.82;
      z-index: 1;
      transition:
        transform 0.52s cubic-bezier(0.28, 1.15, 0.42, 1),
        background 0.45s ease,
        box-shadow 0.45s ease,
        opacity 0.35s ease;
    }
    .nav-dot-liquid-blob--head {
      width: 6px;
      height: 22px;
      z-index: 2;
      transition:
        transform 0.82s cubic-bezier(0.34, 1.42, 0.56, 1),
        background 0.45s ease,
        box-shadow 0.45s ease;
    }
    .nav-dots-goo.is-scrolling .nav-dot-liquid-blob--head {
      transition: none;
    }
    .nav-dots-goo:not(.is-scrolling) .nav-dot-liquid-blob--head {
      animation: nav-liquid-breathe 3.4s ease-in-out infinite;
    }
    .nav-dots-goo:not(.is-scrolling) .nav-dot-liquid-blob--trail {
      opacity: 0;
    }
    @keyframes nav-liquid-breathe {
      0%, 100% { filter: brightness(1) saturate(1); }
      50% { filter: brightness(1.1) saturate(1.08); }
    }
    .nav-dots .dot {
      pointer-events: auto;
      position: relative;
      z-index: 3;
    }
    .dot {
      width: 6px;
      height: 6px;
      padding: 0;
      border: none;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      background: rgba(255, 255, 255, 0.24);
      border-radius: var(--radius-pill);
      transition:
        background 0.38s ease,
        transform 0.5s var(--ease-dot-spring),
        box-shadow 0.4s ease,
        opacity 0.35s ease;
    }
    .dot:hover {
      background: rgba(255, 255, 255, 0.32);
      transform: scale(1.2);
    }
    .dot:focus-visible {
      outline: 2px solid var(--nav-dot-active-mid);
      outline-offset: 4px;
    }
    /* Activo: solo el blob líquido; el botón queda invisible para no duplicar el punto */
    .dot.active,
    .dot.active:hover {
      background: transparent;
      transform: none;
      box-shadow: none;
    }
    @media (prefers-reduced-motion: reduce) {
      .nav-dots-goo { filter: none; }
      .nav-dot-liquid-blob--head,
      .nav-dot-liquid-blob--trail {
        transition: none !important;
        animation: none !important;
      }
    }

    /* Textos */
    .content {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 620px;
      margin: 0 auto;
      padding-inline: clamp(4px, 1.3vw, 10px);
      transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    }
    .kicker {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--accent);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: var(--space-content-sm);
      display: block;
      opacity: 0.9;
      font-weight: 500;
    }
    h1, h2 {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: clamp(2rem, 7.2vw, 2.6rem);
      line-height: 1.08;
      margin-bottom: var(--space-content-sm);
      letter-spacing: -0.03em;
      text-wrap: balance;
    }
    h1 {
      font-size: clamp(2.65rem, 9vw, 3.5rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      margin-bottom: var(--space-content-md);
    }
    p {
      font-size: clamp(0.97rem, 3.8vw, 1.08rem);
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.74);
      margin-bottom: var(--space-content-md);
      font-weight: 400;
      max-width: 48ch;
      text-wrap: pretty;
    }

    .art-site-tagline {
      margin-top: 42px !important;
      font-family: var(--font-sans) !important;
      font-size: clamp(11px, 2.5vw, 13px) !important;
      font-weight: 400 !important;
      letter-spacing: 0.04em !important;
      line-height: 1.5 !important;
      max-width: 36ch;
      margin-left: auto;
      margin-right: auto;
      color: rgba(255, 255, 255, 0.4) !important;
    }
    /* Pantalla 1 — hero AETHER: jerarquía y wordmark */
    #screen-1 .content {
      max-width: min(36rem, 92vw);
      display: flex;
      flex-direction: column;
    }
    #screen-1 .kicker {
      margin-bottom: 10px;
      letter-spacing: 0.24em;
      font-size: clamp(9px, 2.15vw, 11px);
      font-weight: 500;
      opacity: 1;
    }
    #screen-1 h1 {
      font-size: clamp(3rem, 11.5vw, 4.85rem);
      font-weight: 400;
      letter-spacing: 0.06em;
      line-height: 0.94;
      margin-bottom: 14px;
      font-feature-settings: 'kern' 1, 'liga' 1;
    }
    #screen-1 .content > p {
      font-size: clamp(1.02rem, 3.5vw, 1.14rem);
      line-height: 1.62;
      letter-spacing: 0;
      max-width: 38ch;
      color: rgba(255, 255, 255, 0.76);
      font-weight: 400;
    }
    #screen-1 .genre-block {
      margin-top: 18px;
      margin-bottom: 20px;
      font-size: clamp(9px, 2vw, 10.5px);
      letter-spacing: 0.2em;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.52);
    }
    #screen-1 .genre-block span {
      margin-bottom: 10px;
    }
    #screen-1 .genre-block span:last-child {
      margin-bottom: 0;
    }
    #screen-1 .btn-primary {
      margin-top: 6px;
      min-height: 40px;
      padding: 11px 22px;
      font-size: 10px;
      letter-spacing: 0.16em;
      font-weight: 500;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      white-space: normal;
      text-align: center;
      line-height: 1.28;
      max-width: min(100%, 22rem);
    }

    #screen-1 .action-row--hero {
      margin-top: clamp(32px, 7vh, 48px);
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    #screen-1 .action-row--hero .swipe-text {
      font-size: 10px;
      letter-spacing: 0.18em;
      color: rgba(255, 255, 255, 0.9);
    }
    #screen-1 .action-row--hero .circle-btn {
      color: var(--accent);
      background: rgba(212, 93, 39, 0.14);
      border: 1px solid rgba(212, 93, 39, 0.32);
    }
    #screen-1 .action-row--hero .circle-btn svg {
      width: 20px;
      height: 20px;
      stroke-width: 2;
    }

    /* Acciones Generales */
    .action-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: var(--space-content-lg);
      border: none;
      padding-top: var(--space-content-md);
    }
    .swipe-text {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.72);
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .swipe-text::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.75;
      flex-shrink: 0;
      box-shadow: 0 0 10px var(--accent-glow);
    }
    .section-link {
      margin-top: 14px;
      display: inline-flex; align-items: center; gap: 10px;
      color: #fff; text-decoration: none;
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
      transition: var(--transition);
    }
    .section-link::after {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: var(--accent);
      opacity: 0.85;
    }
    .section-link:hover { color: var(--accent); transform: translateX(2px); }

    /* MIXCLOUD: AETHER 022 */
    #screen-mixcloud.screen {
      justify-content: center;
    }
    #screen-mixcloud .content {
      max-width: 640px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding-top: 0;
    }
    #screen-mixcloud .mixcloud-panel {
      width: 100%;
      max-width: min(560px, 100%);
      margin-left: auto;
      margin-right: auto;
      align-self: center;
      text-align: left;
    }
    .mixcloud-panel {
      border: none;
      border-radius: var(--radius-lg);
      padding: 20px 20px 18px;
      background: linear-gradient(168deg, rgba(22, 22, 26, 0.88) 0%, rgba(8, 8, 10, 0.75) 100%);
      backdrop-filter: blur(18px) saturate(1.35);
      -webkit-backdrop-filter: blur(18px) saturate(1.35);
      box-shadow: var(--shadow-lift), var(--shadow-inset-top), 0 0 80px rgba(212, 93, 39, 0.04);
    }
    /* Panel AETHER 022: mismo cristal que pantalla YouTube, halo accent naranja */
    #screen-mixcloud .mixcloud-panel {
      background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(22, 22, 28, 0.14) 42%,
        rgba(8, 8, 12, 0.12) 100%
      );
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(28px) saturate(1.45);
      -webkit-backdrop-filter: blur(28px) saturate(1.45);
      box-shadow:
        var(--shadow-lift),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 56px rgba(212, 93, 39, 0.07);
    }
    .mixcloud-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .mixcloud-kicker {
      margin: 0;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border: none;
      border-radius: 999px;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.88);
      background: rgba(255,255,255,0.03);
    }
    .mixcloud-badge {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      color: var(--accent);
      border: none;
      border-radius: 999px;
      padding: 5px 9px;
      background: rgba(212, 93, 39, 0.08);
      white-space: nowrap;
    }
    .mixcloud-title {
      font-size: clamp(1.85rem, 5.1vw, 2.45rem);
      font-weight: 400;
      line-height: 1.03;
      letter-spacing: -0.55px;
      margin-bottom: 8px;
      text-wrap: balance;
    }
    /* Pantalla YouTube (#screen-video): panel casi invisible; el vídeo se ve detrás */
    #screen-video .content,
    #screen-10 .content {
      max-width: 480px;
      margin: 0 auto;
      width: 100%;
    }
    #screen-video .yt-stream-panel {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border-radius: var(--radius-lg);
      padding: 22px 22px 20px;
      background:
        radial-gradient(120% 90% at 10% 0%, rgba(255, 69, 64, 0.04) 0%, transparent 58%),
        radial-gradient(90% 70% at 100% 100%, rgba(120, 180, 255, 0.02) 0%, transparent 48%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.006) 45%, rgba(0, 0, 0, 0.05) 100%);
      border: 1px solid rgba(255, 255, 255, 0.09);
      backdrop-filter: blur(3px) saturate(1.12);
      -webkit-backdrop-filter: blur(3px) saturate(1.12);
      box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    /* Pantallas legales / contacto: cristal legible */
    #screen-10 .legal-yt-panel,
    #screen-11 .contact-yt-panel {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border-radius: var(--radius-lg);
      padding: 22px 22px 20px;
      background:
        radial-gradient(120% 90% at 10% 0%, rgba(255, 69, 64, 0.14) 0%, transparent 52%),
        radial-gradient(90% 70% at 100% 100%, rgba(120, 180, 255, 0.06) 0%, transparent 45%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.14) 100%);
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(10px) saturate(1.25);
      -webkit-backdrop-filter: blur(10px) saturate(1.25);
      box-shadow:
        0 4px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(255, 59, 48, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.15),
        0 0 72px rgba(255, 59, 48, 0.08);
    }
    #screen-video .yt-stream-panel > *,
    #screen-10 .legal-yt-panel > *,
    #screen-11 .contact-yt-panel > * {
      position: relative;
      z-index: 1;
    }
    #screen-video .yt-stream-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.02) 0%,
        transparent 38%,
        transparent 65%,
        rgba(255, 59, 48, 0.02) 100%
      );
    }
    #screen-10 .legal-yt-panel::before,
    #screen-11 .contact-yt-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 32%,
        transparent 68%,
        rgba(255, 59, 48, 0.05) 100%
      );
    }
    #screen-video .yt-stream-panel::after {
      content: '';
      position: absolute;
      left: 12%;
      right: 12%;
      top: 0;
      height: 1px;
      border-radius: 2px;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 22%,
        rgba(255, 82, 72, 0.35) 50%,
        rgba(255, 255, 255, 0.18) 78%,
        transparent 100%
      );
      opacity: 0.35;
      box-shadow: none;
    }
    #screen-10 .legal-yt-panel::after,
    #screen-11 .contact-yt-panel::after {
      content: '';
      position: absolute;
      left: 12%;
      right: 12%;
      top: 0;
      height: 1px;
      border-radius: 2px;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 22%,
        rgba(255, 82, 72, 0.95) 50%,
        rgba(255, 255, 255, 0.35) 78%,
        transparent 100%
      );
      opacity: 0.85;
      box-shadow: 0 0 24px rgba(255, 69, 64, 0.35);
    }
    #screen-video .yt-stream-panel .mixcloud-title,
    #screen-10 .legal-yt-panel .mixcloud-title,
    #screen-11 .contact-yt-panel .mixcloud-title {
      text-shadow:
        0 0 40px rgba(0, 0, 0, 0.55),
        0 2px 14px rgba(0, 0, 0, 0.45),
        0 1px 2px rgba(0, 0, 0, 0.6);
    }
    #screen-video .yt-stream-panel .mixcloud-subtitle,
    #screen-10 .legal-yt-panel .mixcloud-subtitle,
    #screen-11 .contact-yt-panel .mixcloud-subtitle {
      color: rgba(255, 255, 255, 0.9);
      text-shadow:
        0 0 20px rgba(0, 0, 0, 0.5),
        0 1px 8px rgba(0, 0, 0, 0.55);
    }
    #screen-video .yt-stream-panel .yt-stream-hero__en,
    #screen-10 .legal-yt-panel .yt-stream-hero__en,
    #screen-11 .contact-yt-panel .yt-stream-hero__en {
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
    }
    #screen-video .yt-stream-panel .mixcloud-chip,
    #screen-10 .legal-yt-panel .mixcloud-chip,
    #screen-11 .contact-yt-panel .mixcloud-chip {
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    #screen-video .yt-stream-panel .mixcloud-kicker,
    #screen-10 .legal-yt-panel .mixcloud-kicker,
    #screen-11 .contact-yt-panel .mixcloud-kicker {
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    #screen-video .yt-stream-panel .yt-stream-badge,
    #screen-10 .legal-yt-panel .yt-stream-badge,
    #screen-11 .contact-yt-panel .yt-stream-badge {
      color: #ff5a52;
      background: rgba(255, 59, 48, 0.14);
      border: 1px solid rgba(255, 82, 72, 0.28);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    #screen-video .yt-stream-panel .yt-wordmark,
    #screen-10 .legal-yt-panel .yt-wordmark,
    #screen-11 .contact-yt-panel .yt-wordmark {
      filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
    }
    .yt-stream-hero {
      margin-bottom: 6px;
    }
    .yt-stream-hero__main {
      display: block;
    }
    .yt-stream-hero__platform {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 0.45rem 0.65rem;
      margin-top: 0.28em;
    }
    .yt-stream-hero__en {
      font-family: var(--font-mono);
      font-size: clamp(0.52rem, 2.6vw, 0.62rem);
      letter-spacing: 0.42em;
      font-weight: 500;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.38);
    }
    .yt-wordmark {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: clamp(1.05rem, 4.2vw, 1.35rem);
      letter-spacing: -0.035em;
      color: #ff4540;
      text-shadow: 0 0 48px rgba(255, 69, 64, 0.22);
    }
    #screen-video .mixcloud-subtitle,
    #screen-10 .legal-yt-panel .mixcloud-subtitle,
    #screen-11 .contact-yt-panel .mixcloud-subtitle {
      margin-bottom: 12px;
    }
    .yt-stream-actions {
      margin-top: 16px;
      align-items: center;
    }
    .yt-stream-actions .mixcloud-primary-link {
      min-height: 42px;
      padding: 10px 16px;
    }
    .yt-sound-btn {
      margin-left: auto;
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .yt-sound-btn:hover,
    .yt-sound-btn:active {
      background: rgba(255, 69, 64, 0.12);
      border-color: rgba(255, 69, 64, 0.28);
    }
    .yt-sound-btn svg {
      width: 20px;
      height: 20px;
    }
    .mixcloud-subtitle {
      color: rgba(255,255,255,0.76);
      font-size: 0.88rem;
      line-height: 1.45;
      margin-bottom: 14px;
      max-width: 52ch;
    }
    .mixcloud-meta {
      margin-bottom: 14px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .mixcloud-chip {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      border: none;
      border-radius: 999px;
      padding: 5px 10px;
      background: rgba(255,255,255,0.03);
    }
    .mixcloud-widget {
      width: 100%;
      height: 60px;
      max-height: 60px;
      border: none;
      border-radius: 14px;
      overflow: hidden;
      line-height: 0;
      background: #0a0a0c;
      box-shadow: 0 12px 28px rgba(0,0,0,0.34);
    }
    .mixcloud-widget iframe {
      display: block;
      width: 100%;
      height: 60px;
      border: 0;
      pointer-events: auto;
      position: relative;
      z-index: 2;
      background: #0a0a0c;
    }
    #screen-mixcloud .action-row--catalog {
      width: 100%;
      max-width: min(560px, 100%);
      margin-left: auto;
      margin-right: auto;
      justify-content: space-between;
      align-items: center;
      box-sizing: border-box;
    }
    #screen-mixcloud .action-row--catalog .circle-btn {
      margin-left: auto;
      flex-shrink: 0;
    }
    .mixcloud-actions {
      margin-top: 14px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    #screen-mixcloud .mixcloud-actions {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    #screen-mixcloud .mixcloud-actions::-webkit-scrollbar {
      display: none;
    }
    #screen-mixcloud .mixcloud-primary-link {
      flex: 0 0 auto;
      width: auto;
      min-width: 0;
      max-width: none;
      white-space: nowrap;
    }
    .mixcloud-primary-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 9px 13px;
      border-radius: 11px;
      border: none;
      background: rgba(255,255,255,0.03);
      color: #fff;
      text-decoration: none;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      transition: var(--transition);
    }
    .mixcloud-primary-link:hover {
      color: var(--accent);
      transform: translateY(-2px);
      background: rgba(212, 93, 39, 0.09);
    }
    .mixcloud-primary-link.mixcloud-archive-cta {
      background: rgba(212, 93, 39, 0.1);
      color: rgba(255, 255, 255, 0.96);
    }
    .mixcloud-primary-link.mixcloud-archive-cta:hover {
      color: rgba(255, 248, 242, 0.98);
      background: rgba(212, 93, 39, 0.16);
      transform: translateY(-2px);
    }

    /* Botones Íconos Circulares */
    .circle-btn {
      width: 46px; height: 46px;
      border: none;
      border-radius: 50%;
      display: flex; justify-content: center; align-items: center; color: #fff; text-decoration: none;
      transition: transform 0.4s var(--ease-out), background 0.35s ease;
      cursor: pointer;
      background: transparent;
      flex-shrink: 0;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: none;
    }
    .circle-btn:active, .circle-btn:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-3px) scale(1.03);
      box-shadow: none;
    }
    .circle-btn svg { width: 18px; height: 18px; fill: currentColor; }

    /* Botón de avance en action-row: más legible como affordance de scroll */
    .action-row .circle-btn {
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 0 0 1px rgba(212, 93, 39, 0.08), 0 8px 24px rgba(0, 0, 0, 0.28);
    }
    .action-row .circle-btn svg path {
      stroke: currentColor;
    }

    /* Botones de Texto */
    .btn-ghost {
      display: inline-block;
      border: none;
      color: #fff;
      padding: 14px 24px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--radius-pill);
      transition: transform 0.4s var(--ease-out), background 0.35s ease, color 0.25s ease;
      background: transparent;
      box-shadow: none;
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
    }
    .btn-ghost:active { background: #fff; color: #000; }
    .btn-primary {
      position: relative;
      display: inline-block;
      overflow: hidden;
      background: linear-gradient(145deg, #f0783a 0%, var(--accent) 38%, var(--accent-dim) 100%);
      color: #fff;
      border: none;
      padding: 14px 26px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--radius-pill);
      transition: transform 0.4s var(--ease-out), box-shadow 0.45s ease, filter 0.35s ease;
      box-shadow:
        var(--shadow-inset-top),
        0 14px 36px rgba(212, 93, 39, 0.38);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
      box-shadow:
        var(--shadow-inset-top),
        0 20px 44px rgba(212, 93, 39, 0.48),
        0 0 32px rgba(212, 93, 39, 0.22);
    }
    .btn-primary:active {
      transform: translateY(0) scale(0.98);
    }

    /* Reproductor Integrado (Global) */
    .player-ui {
      margin-top: 24px;
      background: rgba(255, 255, 255, 0.035);
      border: none;
      padding: 20px;
      border-radius: var(--radius-md);
      backdrop-filter: blur(16px) saturate(1.25);
      -webkit-backdrop-filter: blur(16px) saturate(1.25);
      box-shadow: var(--shadow-lift), var(--shadow-inset-top);
      transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
    }
    .player-ui:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.42);
    }
    .player-controls { display: flex; align-items: center; gap: 16px;
      margin-bottom: 16px; }
      .play-btn { position: relative; width: 50px; height: 50px; border-radius: 50%; border: none; background: rgba(212, 93, 39, 0.18); color: var(--accent); display: flex; justify-content: center; align-items: center; cursor: pointer; transition: var(--transition); flex-shrink: 0;}
    .play-btn svg { width: 20px; height: 20px; fill: currentColor; }
    .play-btn.is-playing { background: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(212, 93, 39, 0.4); }
    .play-btn--small { width: 36px; height: 36px; }
    .play-btn--small svg { width: 14px; height: 14px; }
    
    .waveform {
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      gap: 3px;
      height: 30px;
      flex-grow: 1;
      overflow: hidden;
      padding: 2px 0;
      filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
    }
    .bar {
      --eq-level: 0.4;
      width: 3px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.46) 100%);
      opacity: 0.16;
      transform-origin: center bottom;
      transform: scaleY(1);
      transition: opacity 220ms ease;
      will-change: opacity;
    }
    .bar.active {
      opacity: calc(0.22 + (var(--eq-level) * 0.38));
    }
    .play-stats { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); text-transform: uppercase; }
    .headphones-note {
      margin-top: 10px;
      font-family: var(--font-mono);
      font-size: 9px !important;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--accent);
      opacity: 0.95;
    }
    .timeline-wrap {
      margin-top: 4px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .catalog-item .timeline-wrap {
      margin-top: 6px;
      gap: 8px;
    }
    .catalog-item .timeline {
      height: 3px;
    }
    .catalog-item .timeline-time {
      min-width: 56px;
      font-size: 8px;
      letter-spacing: 0.6px;
    }
    .timeline {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--progress, 0%), rgba(255,255,255,0.2) var(--progress, 0%), rgba(255,255,255,0.2) 100%);
      cursor: pointer;
      outline: none;
    }
    .timeline::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid #fff;
      background: var(--accent);
      box-shadow: 0 0 10px rgba(212, 93, 39, 0.35);
    }
    .timeline::-moz-range-thumb {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid #fff;
      background: var(--accent);
      box-shadow: 0 0 10px rgba(212, 93, 39, 0.35);
    }
    .timeline-time {
      min-width: 64px;
      text-align: right;
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    /* Archivo Profundo: fundido imagen → vídeo (evita saltito al primer frame) */
    #screen-5 .bg-video-container {
      opacity: 0;
      transition: opacity 0.55s ease;
    }
    #screen-5.catalog-bg-video-playing .bg-video-container {
      opacity: 0.86;
    }
    #screen-5 .bg-image,
    #screen-5 .bg-video-container {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: none;
    }
    #screen-5.is-active .bg-image,
    #screen-5.is-active .bg-video-container {
      animation: none;
      transform: none;
    }
    #screen-5 .bg-image {
      opacity: 0.12;
      transition: opacity 0.5s ease;
    }
    #screen-5.catalog-bg-video-playing .bg-image {
      opacity: 0.06;
    }
    #screen-5 .bg-light {
      opacity: 0.15;
      background: radial-gradient(circle at 78% 88%, var(--accent-soft), transparent 52%);
    }
    #screen-5.is-active .bg-light {
      opacity: 0.13;
    }
    #screen-5 .bg-gradient {
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to top,
        rgba(10, 10, 12, 0.94) 0%,
        rgba(10, 10, 12, 0.78) 22%,
        rgba(10, 10, 12, 0.42) 48%,
        transparent 82%
      );
    }
    /* Newsletter: velo sin aclarados bruscos; opacidad moderada para que siga viéndose la foto bajo el velo. */
    #screen-9 {
      background-color: var(--bg-color);
    }
    #screen-9 .bg-gradient {
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
      min-height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(8, 8, 10, 0.74) 0%,
        rgba(8, 8, 10, 0.74) 40%,
        rgba(10, 10, 12, 0.82) 100%
      );
    }
    #screen-5 {
      justify-content: flex-end;
      padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    }
    #screen-5 .content {
      max-width: 680px;
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      min-height: 0;
      max-height: 100%;
      overflow: hidden;
      width: 100%;
      margin-bottom: 0;
      transform: translateY(-14px);
    }
    #screen-5 .content > .kicker {
      margin-bottom: 6px;
      flex-shrink: 0;
    }
    #screen-5 .content > h2 {
      font-size: clamp(1.55rem, 5.5vw, 2.1rem);
      margin-bottom: 4px;
      line-height: 1.06;
      flex-shrink: 0;
    }
    #screen-5 .content > p {
      margin-bottom: 5px;
      font-size: clamp(0.8rem, 2.9vw, 0.92rem);
      line-height: 1.38;
      flex-shrink: 0;
    }
    #screen-5 .catalog-panel {
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
      margin-top: 6px;
      overflow: hidden;
    }
    #screen-5 .catalog-topline,
    #screen-5 .headphones-note,
    #screen-5 .streaming-links,
    #screen-5 .action-row {
      flex-shrink: 0;
    }
    #screen-5 .headphones-note {
      margin-top: 0;
    }
    #screen-5 .streaming-links {
      margin-top: 8px;
      gap: 6px;
      justify-content: flex-start;
    }
    #screen-5 .streaming-link-btn {
      flex: 0 0 auto;
      width: auto;
      min-width: 0;
      padding: 7px 10px;
      font-size: 8px;
    }
    #screen-5 .action-row {
      margin-top: 8px;
      padding-top: 6px;
    }
    /* Panel catálogo: cristal ligero (un paso por encima de YouTube) */
    .catalog-panel {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      margin-top: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-lg);
      padding: 14px 14px 12px;
      background:
        radial-gradient(120% 90% at 10% 0%, rgba(212, 93, 39, 0.06) 0%, transparent 58%),
        radial-gradient(90% 70% at 100% 100%, rgba(120, 180, 255, 0.035) 0%, transparent 48%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.012) 42%, rgba(0, 0, 0, 0.07) 100%);
      backdrop-filter: blur(8px) saturate(1.28);
      -webkit-backdrop-filter: blur(8px) saturate(1.28);
      box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(212, 93, 39, 0.06),
        0 0 48px rgba(212, 93, 39, 0.04);
    }
    .catalog-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 36%,
        transparent 62%,
        rgba(212, 93, 39, 0.035) 100%
      );
    }
    .catalog-panel::after {
      content: '';
      position: absolute;
      left: 12%;
      right: 12%;
      top: 0;
      height: 1px;
      border-radius: 2px;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 22%,
        rgba(212, 93, 39, 0.4) 50%,
        rgba(255, 255, 255, 0.22) 78%,
        transparent 100%
      );
      opacity: 0.45;
    }
    .catalog-panel > * {
      position: relative;
      z-index: 1;
    }
    .catalog-topline {
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .catalog-note {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.66);
    }
    .catalog-badge {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(212,93,39,0.35);
      border-radius: 999px;
      padding: 5px 9px;
      background: rgba(212,93,39,0.08);
    }

    /* Lista de Catálogo */
    .catalog-list {
      max-height: 42vh;
      overflow-y: auto;
      overscroll-behavior: contain;
      margin-top: 0;
      padding-top: 14px;
      padding-bottom: 6px;
      margin-bottom: 10px;
      scroll-padding-top: 12px;
      padding-right: 4px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .catalog-list::-webkit-scrollbar { display: none; }
    #screen-5 .catalog-list {
      flex: 1 1 auto;
      min-height: 0;
      max-height: min(52vh, calc(100dvh - 300px));
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      margin-bottom: 4px;
      padding-top: 8px;
      gap: 6px;
    }
    #screen-5 .catalog-list::-webkit-scrollbar {
      display: none;
    }
    #screen-5 .catalog-panel {
      padding: 10px 12px 8px;
    }
    #screen-5 .catalog-item {
      padding: 9px 10px;
      gap: 10px;
    }

    .catalog-item {
      display: flex; align-items: center; gap: 12px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.022);
      backdrop-filter: blur(6px) saturate(1.18);
      -webkit-backdrop-filter: blur(6px) saturate(1.18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
      transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .catalog-item:hover {
      border-color: rgba(212, 93, 39, 0.32);
      background: rgba(255, 255, 255, 0.045);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.08);
      transform: translateY(-1px);
    }
    .catalog-info { flex-grow: 1; display: flex; flex-direction: column; gap: 4px; }
    .catalog-info h3 { font-size: 13px; margin: 0; font-weight: 500; font-family: var(--font-mono); letter-spacing: 0.3px; line-height: 1.2; }
    .catalog-info span { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
    .catalog-wave { width: 40px; height: 20px; display: flex; align-items: flex-end; gap: 2px; overflow: hidden; }

    /* Enlaces de Plataformas Streaming */
    .streaming-links {
      display: flex; align-items: center; gap: 8px; margin-top: 16px; flex-wrap: wrap;
    }
    .streaming-link-btn {
      display: inline-flex; justify-content: center; align-items: center;
      border: 1px solid rgba(255,255,255,0.15); color: #fff;
      padding: 10px 14px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none; border-radius: 12px; transition: var(--transition);
      background: rgba(255,255,255,0.02);
    }
    .streaming-link-btn:hover, .streaming-link-btn:active {
      border-color: var(--accent); color: var(--accent); background: rgba(212, 93, 39, 0.08);
      transform: translateY(-2px);
    }

    /* Lista Gigs & Contextos */
    .list-items { margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
    .list-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .list-item .list-item__text { font-size: 14px; margin: 0; font-weight: 500;}
    .list-item span { font-family: var(--font-mono); font-size: 18px; color: var(--text-muted); }
    
    /* Modales */
    .legal-modal {
      position: fixed; inset: 0; z-index: 180;
      display: grid; place-items: center; padding: 20px;
      background: rgba(0, 0, 0, 0.58);
      -webkit-backdrop-filter: blur(18px) saturate(1.12);
      backdrop-filter: blur(18px) saturate(1.12);
    }
    .legal-modal[hidden] { display: none; }
    .legal-card {
      width: min(560px, 100%); max-height: 80dvh; overflow-y: auto;
      padding: 18px; border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(16,16,16,0.92);
    }
    .legal-close { margin-top: 8px; width: 100%; }
    .legal-card__title { font-size: 1.125rem; font-weight: 600; margin: 0.4em 0 0.6em; line-height: 1.25; }

    /* Colección sonora — carril (discos mismo tamaño; sombras sin recorte) */
    .records-shelf-wrap {
      margin-top: 12px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      margin-left: 0;
      padding: 0 4px 4px;
      position: relative;
      box-sizing: border-box;
    }
    .records-shelf-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      padding: 0 2px 8px 2px;
    }
    .records-shelf-head > div:first-child {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      min-width: 0;
    }
    .records-shelf-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .records-shelf-count {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      padding: 5px 10px;
      background: rgba(255,255,255,0.04);
    }
    .records-shelf-hint {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .records-shelf-hint svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.2;
    }
    .records-shelf {
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-x;
      overscroll-behavior-x: contain;
      overscroll-behavior-y: none;
      scroll-padding-inline: 16px;
      scrollbar-width: none;
      padding: 12px 16px 20px;
      max-width: 100%;
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
      transform: translateZ(0);
    }
    .records-shelf::-webkit-scrollbar { display: none; }
    .records-shelf__track {
      --disc-size: clamp(104px, 28vw, 124px);
      display: flex;
      gap: clamp(12px, 3.2vw, 18px);
      align-items: stretch;
      padding: 4px 8px 8px;
      box-sizing: border-box;
      min-width: min-content;
    }
    .records-shelf__card {
      flex: 0 0 auto;
      width: clamp(136px, 37vw, 172px);
      height: calc(var(--disc-size) + 8.75rem);
      position: relative;
      perspective: 1000px;
      -webkit-perspective: 1000px;
      cursor: pointer;
      touch-action: pan-x;
      overflow: hidden;
      border-radius: 18px;
      background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 55%, transparent 100%);
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 12px 28px rgba(0,0,0,0.38), 0 0 0 1px rgba(0,0,0,0.25);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: border-color 0.35s ease, box-shadow 0.45s ease;
      outline: none;
    }
    .records-shelf__card:focus-visible {
      box-shadow: 0 12px 28px rgba(0,0,0,0.38), 0 0 0 2px var(--accent);
    }
    .records-shelf__card:not(.is-flipped):hover {
      border-color: rgba(212, 93, 39, 0.45);
      box-shadow: 0 18px 36px rgba(0,0,0,0.45), 0 0 0 1px rgba(212, 93, 39, 0.18);
    }
    .records-shelf__flip {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
      transition: transform 0.65s cubic-bezier(0.34, 1.1, 0.34, 1);
      touch-action: inherit;
    }
    .records-shelf__card.is-flipped {
      touch-action: pan-y;
    }
    .records-shelf__card.is-flipped .records-shelf__flip {
      transform: rotateY(180deg);
    }
    .records-shelf__face {
      position: absolute;
      inset: 0;
      padding: 10px 8px 12px;
      border-radius: 17px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      box-sizing: border-box;
      overflow: hidden;
    }
    .records-shelf__face--front {
      justify-content: center;
      gap: 8px;
      background: transparent;
    }
    .records-shelf__front-meta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      padding: 0 4px;
    }
    .records-shelf__front-artist {
      font-family: var(--font-mono);
      font-size: 7px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.44);
      line-height: 1.3;
      text-align: center;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }
    .records-shelf__front-album {
      font-family: var(--font-sans);
      font-size: 8.5px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.92);
      line-height: 1.28;
      text-align: center;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      overflow: hidden;
    }
    .records-shelf__face--back {
      transform: rotateY(180deg);
      justify-content: flex-start;
      align-items: stretch;
      padding: 8px 6px 8px;
      background: linear-gradient(200deg, rgba(18,18,20,0.92) 0%, rgba(10,10,12,0.88) 100%);
      border: 1px solid rgba(255,255,255,0.08);
      gap: 0;
      overflow: hidden;
    }
    .records-shelf__flip-hint {
      font-family: var(--font-mono);
      font-size: 8px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      pointer-events: none;
    }
    .records-shelf__back-kicker {
      font-family: var(--font-mono);
      font-size: 7px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 4px;
      flex-shrink: 0;
    }
    .records-shelf__back-artist {
      font-family: var(--font-mono);
      font-size: 7.5px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.48);
      line-height: 1.3;
      margin-bottom: 5px;
      flex-shrink: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }
    .records-shelf__back-body {
      flex: 1 1 auto;
      min-height: 0;
      width: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      touch-action: pan-y;
      margin-bottom: 6px;
      padding-right: 4px;
      scrollbar-width: thin;
      scrollbar-color: rgba(212, 93, 39, 0.35) transparent;
    }
    .records-shelf__back-body::-webkit-scrollbar {
      width: 3px;
    }
    .records-shelf__back-body::-webkit-scrollbar-thumb {
      background: rgba(212, 93, 39, 0.4);
      border-radius: 999px;
    }
    .records-shelf__back-title {
      display: block;
      overflow: visible;
      font-size: 9.5px;
      font-weight: 500;
      line-height: 1.32;
      color: rgba(255,255,255,0.96);
      margin: 0 0 5px;
      text-align: left;
    }
    .records-shelf__back-desc {
      display: block;
      overflow: visible;
      width: 100%;
      font-size: 8.5px;
      font-weight: 300;
      line-height: 1.42;
      color: rgba(255,255,255,0.58);
      text-align: left;
      margin: 0;
    }
    .records-shelf__disc {
      position: relative;
      width: var(--disc-size);
      height: var(--disc-size);
      box-sizing: border-box;
      border-radius: 50%;
      margin: 0;
      padding: 4px;
      flex-shrink: 0;
      background: conic-gradient(from 210deg, #1a1a1c 0%, #2d2d32 18%, #0e0e10 38%, #3a3a40 55%, #121214 78%, #252528 100%);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.06),
        inset 0 2px 6px rgba(0,0,0,0.55),
        0 12px 28px rgba(0,0,0,0.55),
        0 0 0 1px rgba(0,0,0,0.4);
    }
    .records-shelf__disc::after {
      content: '';
      position: absolute;
      inset: 14%;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .records-shelf__disc img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.35);
      pointer-events: none;
    }
    .records-shelf__links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
      margin-top: auto;
      padding-top: 4px;
      flex-shrink: 0;
    }
    .records-shelf__link {
      font-family: var(--font-mono);
      font-size: 7px;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      padding: 4px 7px;
      border-radius: 999px;
      border: 1px solid rgba(212, 93, 39, 0.35);
      background: rgba(212, 93, 39, 0.08);
      transition: var(--transition);
      pointer-events: auto;
    }
    .records-shelf__link:hover {
      background: rgba(212, 93, 39, 0.18);
      color: #fff;
    }
    .records-shelf__back-foot {
      font-family: var(--font-mono);
      font-size: 6.5px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.26);
      margin-top: 4px;
      flex-shrink: 0;
      text-align: center;
    }

    #screen-11 {
      justify-content: center;
    }
    #screen-4 {
      justify-content: flex-end;
      overflow: hidden;
    }
    #screen-11 .content {
      flex: 0 1 auto;
      overflow: visible;
      max-height: none;
    }
    #screen-4 .content {
      display: flex;
      flex-direction: column;
      flex: 0 1 auto;
      overflow: visible;
      max-height: none;
    }
    #screen-4 .content > p {
      margin-bottom: 5px;
      max-width: 52ch;
      font-size: clamp(0.8rem, 2.9vw, 0.92rem);
      line-height: 1.38;
      flex-shrink: 0;
    }
    #screen-4 .content > h2 {
      font-size: clamp(1.5rem, 5.2vw, 2rem);
      margin-bottom: 4px;
      line-height: 1.06;
      flex-shrink: 0;
    }
    #screen-4 .content > .kicker {
      margin-top: 0 !important;
      margin-bottom: 6px !important;
      flex-shrink: 0;
    }
    #screen-4 .records-shelf-wrap {
      flex: 0 1 auto;
      display: flex;
      flex-direction: column;
      margin-top: 4px;
      overflow: hidden;
    }
    #screen-4 .records-shelf-head {
      flex-shrink: 0;
      padding-bottom: 4px;
    }
    #screen-4 .records-shelf {
      flex: 0 0 auto;
      padding: 6px 12px 10px;
      align-content: flex-start;
      overflow-x: auto;
      overflow-y: hidden;
      touch-action: pan-x;
      overscroll-behavior-y: none;
    }
    #screen-4 .records-shelf__card.is-flipped {
      touch-action: pan-y;
    }
    #screen-4 .records-shelf__card.is-flipped .records-shelf__back-body {
      touch-action: pan-y;
    }
    #screen-4 .action-row {
      flex-shrink: 0;
      margin-top: 8px;
      padding-top: 6px;
    }
    @media (max-height: 720px) {
      #screen-4 .records-shelf__track {
        --disc-size: clamp(92px, 26vw, 112px);
      }
      #screen-4 .records-shelf__card {
        width: clamp(124px, 36vw, 158px);
        height: calc(var(--disc-size) + 7.75rem);
      }
      #screen-4 .records-shelf-wrap {
        margin-top: 6px;
      }
    }

    /* Tarjetas vinilo — reverso: texto de historia legible en móvil */
    @media (max-width: 540px) {
      #screen-4 .records-shelf__face--back {
        padding: 10px 8px 10px;
      }
      #screen-4 .records-shelf__back-kicker {
        font-size: 9px;
        letter-spacing: 0.12em;
      }
      #screen-4 .records-shelf__back-artist {
        font-size: 9.5px;
      }
      #screen-4 .records-shelf__back-title {
        font-size: 11px;
        line-height: 1.32;
      }
      #screen-4 .records-shelf__back-desc {
        font-size: 10px;
        font-weight: 400;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.72);
      }
      #screen-4 .records-shelf__back-body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
      }
      #screen-4 .records-shelf__link {
        font-size: 8.5px;
        padding: 5px 9px;
      }
      #screen-4 .records-shelf__back-foot {
        font-size: 8px;
      }
      #screen-4 .records-shelf__flip-hint {
        font-size: 9px;
      }
    }

    /* Gigs */
    .gig-stack {
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .gig-row {
      display: flex;
      gap: 20px;
      padding: 18px 16px 18px 14px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 48%, transparent 100%);
      box-shadow: 0 14px 32px rgba(0,0,0,0.28);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .gig-row--next {
      border-color: rgba(212, 93, 39, 0.42);
      background: linear-gradient(135deg, rgba(212, 93, 39, 0.12) 0%, rgba(255,255,255,0.04) 45%, rgba(0,0,0,0.08) 100%);
      box-shadow: 0 18px 42px rgba(0,0,0,0.38), 0 0 52px -6px rgba(212, 93, 39, 0.45);
    }
    .gig-date {
      font-family: var(--font-mono);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 52px;
      padding: 10px 8px;
      border-radius: 12px;
      background: rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.12);
    }
    .gig-date .day { font-size: 9px; color: var(--text-muted); letter-spacing: 0.12em; }
    .gig-date .num { font-size: 26px; font-weight: 500; color: #fff; margin: 2px 0; line-height: 1; }
    .gig-date .month { font-size: 9px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; }
    .gig-info { flex: 1; min-width: 0; }
    .gig-info-head {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 10px;
      margin-bottom: 8px;
    }
    .gig-badge {
      font-family: var(--font-mono);
      font-size: 8px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(212, 93, 39, 0.55);
      color: var(--accent);
      background: rgba(212, 93, 39, 0.12);
    }
    .gig-info h3 { font-size: 14px; letter-spacing: 1px; font-family: var(--font-mono); margin: 0; }
    .gig-info p { font-size: 12px; margin-bottom: 6px; line-height: 1.45; color: rgba(255,255,255,0.82); }
    .gig-info .tag { color: var(--accent); font-size: 11px; display: inline-block; margin-top: 2px; }
    .gigs-lead { max-width: 40ch; opacity: 0.92; }

    /* Dónde suena / Gigs — capa cálida arriba (desde el borde superior, sin hueco bajo el header) */
    #screen-6::before,
    #screen-7::before {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 1;
      top: 0;
      left: -40%;
      right: -40%;
      height: 56%;
      background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(212, 93, 39, 0.2) 0%, transparent 65%);
      opacity: 0.9;
      animation: venueAuraShift 10s ease-in-out infinite alternate;
    }
    #screen-7::before {
      height: 62%;
      background: radial-gradient(ellipse 85% 72% at 30% 0%, rgba(212, 93, 39, 0.18) 0%, transparent 68%),
        radial-gradient(ellipse 60% 55% at 85% 8%, rgba(255,255,255,0.06) 0%, transparent 58%);
      animation-duration: 12s;
    }
    @keyframes venueAuraShift {
      0% { opacity: 0.75; transform: translateX(-2%) scale(1); }
      100% { opacity: 1; transform: translateX(2%) scale(1.03); }
    }
    #screen-6:not(.is-active)::before,
    #screen-7:not(.is-active)::before {
      animation-play-state: paused;
    }
    #screen-6.is-active .bg-image,
    #screen-7.is-active .bg-image {
      animation: none;
      transform: scale(1.02);
      filter: brightness(0.72) contrast(1.06) saturate(1.02);
    }
    #screen-7 .content {
      position: relative;
      z-index: 2;
    }
    #screen-7 h2 {
      font-weight: 400;
      letter-spacing: -0.025em;
      margin-bottom: 0.45rem;
    }
    #screen-7 .gigs-lead {
      margin-top: 0;
      margin-bottom: 0.85rem;
      font-size: clamp(0.92rem, 3.4vw, 1.02rem);
      line-height: 1.5;
      opacity: 0.82;
      max-width: 36ch;
    }
    #screen-7 .gig-stack {
      margin-top: 4px;
      gap: 12px;
    }
    #screen-7 .gig-row {
      padding: 15px 14px 15px 12px;
      border-radius: 14px;
    }
    /* Dónde suena — sin scroll: grid 2×2 + flecha fija abajo */
    #screen-6.screen {
      overflow: hidden;
      justify-content: flex-end;
      padding-top: max(72px, calc(env(safe-area-inset-top, 0px) + 52px));
      padding-bottom: max(10px, calc(env(safe-area-inset-bottom, 0px) + 6px));
    }
    #screen-6 .content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      flex: 0 1 auto;
      min-height: 0;
      max-height: 100%;
      width: 100%;
      max-width: 620px;
      margin: 0 auto;
      overflow: hidden;
      padding-top: 0;
      padding-bottom: 0;
    }
    #screen-6 h2 {
      font-size: clamp(1.2rem, 4.6vw, 1.75rem);
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-top: 0;
      margin-bottom: clamp(10px, 2vh, 16px);
      text-transform: none;
      flex-shrink: 0;
    }
    #screen-6 .venues-lead {
      margin: 0 0 clamp(14px, 2.5vh, 20px) 0;
      font-size: clamp(0.8rem, 2.8vw, 0.92rem);
      line-height: 1.55;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.72);
      max-width: 44ch;
      flex-shrink: 0;
    }
    #screen-6 .venues-grid {
      flex: 0 1 auto;
      min-height: 0;
      margin-top: 0;
      margin-bottom: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      align-items: stretch;
      gap: clamp(10px, 2.2vw, 14px);
      overflow: visible;
    }
    #screen-6 .kicker {
      margin-bottom: 8px;
    }
    #screen-6 .context-card {
      display: flex;
      flex-direction: column;
      width: 100%;
      aspect-ratio: 1 / 1;
      min-height: 0;
      padding: clamp(10px, 2.2vw, 13px) clamp(9px, 2vw, 12px);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-hairline);
      border-left: 2px solid rgba(212, 93, 39, 0.42);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 45%, rgba(0, 0, 0, 0.12) 100%);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    }
    @media (hover: hover) {
      #screen-6.is-active .context-card:hover {
        border-color: rgba(255, 255, 255, 0.14);
        border-left-color: rgba(212, 93, 39, 0.62);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34), 0 0 28px -12px rgba(212, 93, 39, 0.22);
      }
    }
    #screen-6 .context-card__body {
      flex: 1;
      min-width: 0;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: clamp(6px, 1.2vw, 9px);
    }
    #screen-6 .context-card__body h3 {
      font-family: var(--font-sans);
      font-size: clamp(0.76rem, 2.6vw, 0.9rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.3;
      margin: 0;
      color: rgba(255, 255, 255, 0.95);
      overflow-wrap: anywhere;
    }
    #screen-6 .context-card__body p {
      font-family: var(--font-sans);
      font-size: clamp(0.7rem, 2.3vw, 0.82rem);
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.66);
      margin: 0;
      overflow: visible;
      overflow-wrap: anywhere;
    }
    #screen-6 .action-row {
      flex-shrink: 0;
      margin-top: clamp(8px, 2vh, 12px);
      padding-top: 4px;
      padding-bottom: 0;
    }

    .venues-grid {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .context-card {
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 10px 12px;
    }
    .context-card__body { min-width: 0; }
    .context-card__body h3 {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      margin: 0 0 4px 0;
      font-family: var(--font-mono);
    }
    .context-card__body p {
      font-size: 11px;
      line-height: 1.45;
      color: rgba(255,255,255,0.62);
      margin: 0;
    }

    /* Formulario (Newsletter) — AETHER CIRCLE: bloque tipo ticket / rail */
    #screen-9 .content {
      max-width: 520px;
    }
    #screen-9 h2 {
      letter-spacing: -0.02em;
    }
    #screen-9 .aether-lead {
      margin-top: 12px;
      margin-bottom: 0;
      max-width: 40ch;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.62;
      color: rgba(255, 255, 255, 0.72);
    }
    .aether-signup {
      margin-top: 22px;
      display: flex;
      align-items: stretch;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(8, 8, 10, 0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    }
    .aether-signup__rail {
      width: 5px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.14);
    }
    .aether-signup__inner {
      flex: 1;
      min-width: 0;
      padding: 16px 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    #screen-9 .subscribe-form {
      margin-top: 0;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: 0;
      flex-wrap: nowrap;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 12px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.28);
    }
    #screen-9 .subscribe-form input[type="email"] {
      flex: 1 1 auto;
      min-width: 0;
      border: 0;
      border-radius: 0;
      padding: 14px 14px;
      font-size: 11px;
    }
    #screen-9 .aether-submit {
      flex: 0 0 auto;
      width: auto;
      min-width: 7.5rem;
      border-radius: 0;
      padding: 14px 16px;
      font-size: 9px;
      letter-spacing: 0.18em;
      border: 0;
      border-left: 1px solid rgba(255,255,255,0.12);
      box-shadow: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .subscribe-form { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; transition: opacity 0.3s; }
    input[type="email"] {
      width: 100%; background: transparent; border: 1px solid rgba(255,255,255,0.2); padding: 16px; color: #fff;
      font-family: var(--font-mono); font-size: 12px; border-radius: 12px; outline: none; transition: border-color 0.3s;
    }
    input[type="email"]:focus { border-color: var(--accent); }
    #screen-9 .subscribe-count {
      margin-top: 0;
      text-align: left;
      font-family: var(--font-mono);
      font-size: 7px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    #screen-9 .subscribe-count #member-count {
      color: rgba(255,255,255,0.78);
    }
    @media (max-width: 420px) {
      #screen-9 .subscribe-form {
        flex-direction: column;
        border-radius: 12px;
      }
      #screen-9 .subscribe-form input[type="email"] {
        border-radius: 0;
      }
      #screen-9 .aether-submit {
        width: 100%;
        min-width: 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.12);
      }
    }

    /* Pantalla 10 — datos / newsletter: panel centrado */
    #screen-10.screen {
      padding-bottom: clamp(72px, 14vh, 108px);
      justify-content: center;
    }
    #screen-10 .content {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    #screen-10.is-active .content {
      transform: none;
    }
    #screen-10 .legal-yt-panel {
      width: 100%;
      max-width: min(480px, 100%);
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #screen-10 .legal-yt-panel .mixcloud-header {
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      width: 100%;
    }
    #screen-10 .legal-yt-panel .yt-stream-hero__main {
      display: block;
      text-align: center;
      text-wrap: balance;
      line-height: 1.03;
    }
    #screen-10 .legal-yt-panel .mixcloud-subtitle {
      max-width: min(40ch, 100%);
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      line-height: 1.52;
      text-wrap: balance;
    }
    #screen-10 .legal-yt-panel .list-items {
      margin-top: 14px;
      width: 100%;
      text-align: left;
      align-self: stretch;
    }
    #screen-10 .legal-yt-panel .mixcloud-header {
      justify-content: center;
    }
    #screen-10 .legal-yt-panel .list-item {
      justify-content: flex-start;
    }
    #screen-10 .legal-yt-panel .list-item .list-item__text {
      font-size: 12px;
      font-weight: 400;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.78);
    }
    #screen-10 .action-row--legal {
      width: 100%;
      max-width: min(480px, 100%);
      margin-left: auto;
      margin-right: auto;
      margin-top: 12px;
      padding-top: 6px;
      justify-content: space-between;
      align-items: center;
      box-sizing: border-box;
    }
    #screen-10 .action-row--legal .circle-btn {
      margin-left: auto;
      flex-shrink: 0;
    }
    #screen-10 .legal-yt-panel .section-link,
    #screen-10 #legal-read-more {
      margin-top: 10px;
      align-self: flex-start;
      font-size: 8px;
      letter-spacing: 1px;
      gap: 6px;
      opacity: 0.72;
    }
    #screen-10 .legal-yt-panel .section-link::after {
      width: 6px;
      height: 6px;
    }
    #screen-10 .legal-yt-panel .section-link:hover {
      opacity: 1;
    }

    /* Pantalla 11 — contacto (panel centrado vertical y horizontal) */
    #screen-11 .content {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: min(94vw, 620px);
      margin: 0 auto;
      width: 100%;
    }
    #screen-11 .contact-yt-panel {
      width: 100%;
      padding: 32px 28px 28px;
    }
    #screen-11 .contact-yt-panel .mixcloud-title {
      font-size: clamp(2.15rem, 8vw, 3rem);
      margin-bottom: 12px;
    }
    #screen-11 .contact-yt-panel .yt-stream-hero__main {
      display: block;
      text-align: center;
      text-wrap: balance;
      line-height: 1.03;
    }
    #screen-11 .contact-yt-panel .mixcloud-subtitle {
      max-width: min(42ch, 100%);
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      font-size: clamp(0.95rem, 3.2vw, 1.05rem);
      line-height: 1.52;
      text-wrap: balance;
    }
    #screen-11 .contact-presets {
      margin-top: 18px;
      width: 100%;
    }
    #screen-11 .contact-presets__label {
      margin: 0 0 10px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
    }
    #screen-11 .contact-presets__chips {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }
    #screen-11 .contact-preset {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      padding: 8px 12px;
      background: rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
    #screen-11 .contact-preset:hover {
      border-color: rgba(212, 93, 39, 0.35);
      color: rgba(255, 255, 255, 0.9);
    }
    #screen-11 .contact-preset.is-active {
      border-color: rgba(212, 93, 39, 0.55);
      background:
        radial-gradient(120% 120% at 0% 0%, rgba(212, 93, 39, 0.18), transparent 56%),
        rgba(0, 0, 0, 0.28);
      color: #fff;
      box-shadow: 0 0 18px rgba(212, 93, 39, 0.2);
    }
    #screen-11 .contact-yt-panel .mixcloud-actions {
      margin-top: 22px;
      justify-content: center;
      gap: 12px;
    }
    #screen-11 .contact-yt-panel .mixcloud-actions .mixcloud-primary-link {
      min-height: 48px;
      padding: 14px 22px;
      font-size: 11px;
    }
    #screen-11 .contact-yt-social {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-top: 24px;
      padding-top: 4px;
    }
    #screen-11 .contact-yt-social .circle-btn {
      width: 56px;
      height: 56px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    #screen-11 .contact-yt-social .circle-btn:hover,
    #screen-11 .contact-yt-social .circle-btn:active {
      border-color: rgba(255, 82, 72, 0.35);
      background: rgba(255, 59, 48, 0.1);
    }
    #screen-11 .art-site-tagline {
      margin-top: clamp(14px, 3vh, 24px) !important;
      margin-bottom: 0;
      flex-shrink: 0;
    }

    .form-msg { margin-top: 20px; padding: 16px; border: 1px solid; border-radius: 12px; font-size: 13px; text-align: left;}
    .form-msg--success { border-color: #2e7d32; background: rgba(46, 125, 50, 0.1); color: #81c784; }
    .form-msg--error { border-color: #c62828; background: rgba(198, 40, 40, 0.1); color: #e57373; }
    
    /* Animación Entrada Pantallas */
    .screen .content {
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.72s var(--ease-out),
        transform 0.82s var(--ease-out);
    }
    .screen.is-active .content {
      opacity: 1;
      transform: translateY(0);
    }

    /* Carrusel Horizontal */
    .horizontal-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      width: 100%;
      max-width: 100%;
      height: 100%;
      position: relative;
      z-index: 10;
    }
    .horizontal-slider::-webkit-scrollbar { display: none; }
    
    .slider-item {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      flex: 0 0 100%;
      height: 100%;
      scroll-snap-align: center;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px 24px;
      box-sizing: border-box;
      position: relative;
      overflow: hidden; 
    }

    /* Slide sin imagen de fondo: el vídeo es el fondo visible al dar play */
    .slider-item.slider-item--video-only .bg-image {
      opacity: 0 !important;
      visibility: hidden !important;
    }
    .slider-item.slider-item--video-only .bg-video-container {
      opacity: 0.78 !important;
    }

    /* Luminiscencia: fondo cálido, un poco más contenido */
    .slider-item--luminiscencia .bg-video-container {
      opacity: 0.68;
    }
    .slider-item--luminiscencia .bg-image {
      opacity: 0.24 !important;
      filter: brightness(0.82) contrast(1.16) saturate(1.32) !important;
    }
    .slider-item--luminiscencia .bg-light {
      opacity: 0.28;
      background:
        radial-gradient(circle at 78% 68%, rgba(255, 148, 72, 0.24), transparent 52%),
        radial-gradient(circle at 18% 38%, rgba(196, 108, 255, 0.12), transparent 48%),
        radial-gradient(circle at 50% 88%, rgba(255, 92, 120, 0.08), transparent 40%);
    }
    .slider-item--luminiscencia .bg-gradient {
      background: linear-gradient(to top, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.54) 44%, transparent 100%);
    }
    #screen-8.is-active .slider-item--luminiscencia .bg-image {
      filter: brightness(0.86) contrast(1.2) saturate(1.4) !important;
    }
    #screen-8.is-active .slider-item--luminiscencia .bg-light {
      opacity: 0.22;
    }

    /* Between Frequencies: fondo más vivo (soulful lounge / espacial) */
    .slider-item--between-frequencies .bg-video-container {
      opacity: 0.74;
    }
    .slider-item--between-frequencies .bg-image {
      opacity: 0.28 !important;
      filter: brightness(0.9) contrast(1.18) saturate(1.55) !important;
    }
    .slider-item--between-frequencies .bg-light {
      opacity: 0.48;
      background:
        radial-gradient(circle at 72% 64%, rgba(92, 210, 255, 0.38), transparent 52%),
        radial-gradient(circle at 20% 36%, rgba(150, 110, 255, 0.3), transparent 48%),
        radial-gradient(circle at 52% 88%, rgba(255, 130, 200, 0.14), transparent 40%);
    }
    .slider-item--between-frequencies .bg-gradient {
      background: linear-gradient(to top, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.42) 44%, transparent 100%);
    }
    #screen-8.is-active .slider-item--between-frequencies .bg-image {
      filter: brightness(0.95) contrast(1.22) saturate(1.68) !important;
    }
    #screen-8.is-active .slider-item--between-frequencies .bg-light {
      opacity: 0.38;
    }

    /* Manifiesto (Between Frequencies): mismo tratamiento de color */
    #screen-2 #manifesto-poster {
      filter: brightness(0.9) contrast(1.15) saturate(1.5);
    }
    #screen-2 .bg-light {
      opacity: 0.46;
      background:
        radial-gradient(circle at 72% 64%, rgba(92, 210, 255, 0.36), transparent 52%),
        radial-gradient(circle at 20% 36%, rgba(150, 110, 255, 0.28), transparent 48%),
        radial-gradient(circle at 52% 88%, rgba(255, 130, 200, 0.12), transparent 40%);
    }
    #screen-2.is-active .bg-light {
      opacity: 0.34;
    }
    #screen-2.is-active #manifesto-poster {
      filter: brightness(0.94) contrast(1.2) saturate(1.62);
    }

    /* Carrusel + CHILL: vídeo al fondo (debajo de la imagen); mismo orden DOM + z-index base que el resto de pantallas */
    #screen-chill > .bg-video-container,
    .horizontal-slider .slider-item > .bg-video-container {
      z-index: 0;
    }
    #screen-chill > .bg-image,
    .horizontal-slider .slider-item > .bg-image {
      z-index: 1;
    }
    
    /* SOLUCIÓN AL "DESAPARECIDO" - Usamos margin-bottom en vez de position absolute */
    .slider-item .content > div:first-child {
      margin-bottom: 30px; 
    }

    /* Hint horizontal en cabecera de slide */
    .swipe-hint {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      padding: 6px 12px 6px 10px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(8, 8, 10, 0.42);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      opacity: 0.92;
      flex-shrink: 0;
    }
    .swipe-hint span {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.16em;
      color: rgba(255, 255, 255, 0.88);
      text-transform: uppercase;
      white-space: nowrap;
    }
    .swipe-hint svg {
      width: 18px;
      height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }
    #sets-slider-1 .action-row .circle-btn {
      margin-top: 12px;
    }
    
    .slider-indicators {
      position: absolute;
      bottom: max(14px, env(safe-area-inset-bottom, 0px));
      left: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      z-index: 15;
      pointer-events: none;
    }
    .slider-indicators__track {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      pointer-events: auto;
    }
    .slider-indicators .indicator {
      width: 18px;
      height: 2px;
      background: rgba(255,255,255,0.2);
      transition: var(--transition);
      border-radius: 2px;
    }
    .slider-indicators .indicator.active {
      background: var(--accent);
      width: 24px;
    }

    /* --- MINI REPRODUCTOR FLOTANTE --- */
    .floating-mini-player,
    .floating-mini-player .fmp-main,
    .floating-mini-player .fmp-action {
      appearance: none;
      -webkit-appearance: none;
      font: inherit;
      color: inherit;
      margin: 0;
    }
    .floating-mini-player {
      --fmp-pad-left: max(24px, calc(16px + env(safe-area-inset-left, 0px)));
      --fmp-pad-right: max(36px, calc(24px + env(safe-area-inset-right, 0px)));
      --fmp-pad-top: max(24px, calc(16px + env(safe-area-inset-top, 0px)));
      --fmp-pad-bottom: max(24px, calc(16px + env(safe-area-inset-bottom, 0px)));
      --fmp-max-w: 260px;
      --fmp-thumb-size: 32px;
      --fmp-action-size: 36px;
      position: fixed;
      right: var(--fmp-pad-right);
      bottom: var(--fmp-pad-bottom);
      left: auto;
      top: auto;
      z-index: 150;
      background: rgb(12, 12, 12);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 4px;
      display: flex;
      align-items: stretch;
      gap: 2px;
      width: fit-content;
      max-width: min(var(--fmp-max-w), calc(100dvw - var(--fmp-pad-left) - var(--fmp-pad-right)));
      box-sizing: border-box;
      cursor: grab;
      touch-action: none;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, border-color 0.3s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .floating-mini-player .fmp-main {
      flex: 1 1 auto;
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 2px 4px 2px 2px;
      background: transparent;
      border: 0;
      border-radius: 8px;
      text-align: left;
      cursor: pointer;
      touch-action: manipulation;
    }
    .floating-mini-player .fmp-main:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    .floating-mini-player .fmp-actions {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
      padding-right: 2px;
      border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
    .floating-mini-player .fmp-action {
      position: relative;
      width: var(--fmp-action-size);
      height: var(--fmp-action-size);
      min-width: var(--fmp-action-size);
      min-height: var(--fmp-action-size);
      padding: 0;
      border: 0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: rgba(255, 255, 255, 0.42);
      cursor: pointer;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    }
    .floating-mini-player .fmp-action:focus-visible {
      outline: 1px solid rgba(255, 255, 255, 0.35);
      outline-offset: 1px;
    }
    .floating-mini-player .fmp-action:active {
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.72);
    }
    .floating-mini-player .fmp-action-play {
      color: rgba(255, 255, 255, 0.5);
    }
    .floating-mini-player .fmp-action-play:active,
    .floating-mini-player.is-playing .fmp-action-play {
      color: rgba(212, 93, 39, 0.75);
    }
    .floating-mini-player .fmp-action-close:active {
      color: rgba(255, 255, 255, 0.55);
    }
    .floating-mini-player .fmp-action svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
      pointer-events: none;
      opacity: 0.92;
    }
    .floating-mini-player .fmp-icon-pause {
      display: none;
    }
    .floating-mini-player.is-playing .fmp-icon-play {
      display: none;
    }
    .floating-mini-player.is-playing .fmp-icon-pause {
      display: block;
    }
    .floating-mini-player.fmp-dragging {
      cursor: grabbing;
      transition: opacity 0.4s ease, border-color 0.3s ease !important;
      transform: none !important;
    }
    /* Tras soltar: acomodo suave a esquina (estilo miniatura YouTube) */
    .floating-mini-player.fmp-corner-settle {
      transition:
        left 0.24s cubic-bezier(0.25, 0.46, 0.45, 1),
        top 0.24s cubic-bezier(0.25, 0.46, 0.45, 1),
        right 0.24s cubic-bezier(0.25, 0.46, 0.45, 1),
        bottom 0.24s cubic-bezier(0.25, 0.46, 0.45, 1),
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease,
        border-color 0.3s ease !important;
    }
    .floating-mini-player:hover:not(.fmp-dragging) {
      border-color: var(--accent);
      transform: translateY(-3px);
    }
    .floating-mini-player[hidden] {
      display: flex !important; 
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px) scale(0.95);
    }
    .fmp-thumb {
      position: relative;
      width: var(--fmp-thumb-size);
      height: var(--fmp-thumb-size);
      border-radius: 6px;
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(255,255,255,0.1);
      overflow: hidden;
      flex-shrink: 0;
    }
    .fmp-thumb-eq {
      display: none;
    }
    .fmp-info {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 7px;
      min-width: 0;
      flex: 1 1 auto;
    }
    .fmp-title {
      font-family: var(--font-mono);
      font-size: 9px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      max-width: min(9rem, 42vw);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex: 1 1 0;
      min-width: 0;
    }
    .fmp-wave {
      display: flex;
      align-items: flex-end;
      gap: 2px;
      height: 11px;
      flex-shrink: 0;
    }
    .fmp-wave .bar {
      width: 2px;
      height: 6px;
      background: var(--accent);
      border-radius: 2px;
      transform-origin: center bottom;
      opacity: 0.35;
      will-change: transform, opacity;
    }
    .floating-mini-player.is-playing .fmp-wave .bar {
      opacity: 0.88;
      animation: fmp-wave-bar 2.1s cubic-bezier(0.42, 0.08, 0.58, 0.92) infinite;
    }
    .floating-mini-player.is-playing .fmp-wave .bar:nth-child(1) { animation-delay: 0s; }
    .floating-mini-player.is-playing .fmp-wave .bar:nth-child(2) { animation-delay: 0.22s; }
    .floating-mini-player.is-playing .fmp-wave .bar:nth-child(3) { animation-delay: 0.44s; }
    @keyframes fmp-wave-bar {
      0%, 100% { transform: scaleY(0.38); opacity: 0.45; }
      50% { transform: scaleY(0.88); opacity: 0.92; }
    }

    @media (max-width: 540px), (pointer: coarse) and (max-width: 820px) {
      .floating-mini-player {
        --fmp-pad-left: max(10px, env(safe-area-inset-left, 0px));
        --fmp-pad-right: max(48px, calc(36px + env(safe-area-inset-right, 0px)));
        --fmp-pad-top: max(10px, env(safe-area-inset-top, 0px));
        --fmp-pad-bottom: max(10px, env(safe-area-inset-bottom, 0px));
        --fmp-max-w: calc(100dvw - var(--fmp-pad-left) - var(--fmp-pad-right));
        --fmp-thumb-size: 30px;
        --fmp-action-size: 34px;
        padding: 3px;
        border-radius: 9px;
      }
      .floating-mini-player .fmp-main {
        gap: 6px;
        padding: 2px 3px 2px 2px;
      }
      .fmp-title {
        font-size: clamp(8px, 2.4vw, 9px);
        max-width: none;
        letter-spacing: 0.3px;
      }
      .fmp-wave {
        height: 10px;
      }
    }

    @media (max-width: 380px) {
      .floating-mini-player {
        --fmp-pad-right: max(44px, calc(32px + env(safe-area-inset-right, 0px)));
        --fmp-thumb-size: 28px;
        --fmp-action-size: 32px;
      }
      .floating-mini-player .fmp-action svg {
        width: 13px;
        height: 13px;
      }
    }

    /* --- FIX FONDOS CARRUSEL PANTALLA COMPLETA --- */
    #screen-3, #screen-8 {
      padding: 0 !important;
    }

    /* --- ESTADO DE CARGA (BOTÓN PLAY) --- */
    .play-btn.is-loading svg {
      opacity: 0;
    }
    .play-btn.is-loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 14px;
      height: 14px;
      margin: -7px 0 0 -7px;
      border-radius: 50%;
      border: 2px solid rgba(212, 93, 39, 0.22);
      border-top-color: var(--accent);
      border-right-color: rgba(212, 93, 39, 0.55);
      background: transparent;
      box-sizing: border-box;
      animation: play-btn-loader-spin 0.62s linear infinite;
    }
    @keyframes play-btn-loader-spin {
      to { transform: rotate(360deg); }
    }

    @media (prefers-reduced-motion: reduce) {
      .floating-mini-player.is-playing .fmp-wave .bar,
      .play-btn.is-loading::after {
        animation: none !important;
      }
      .play-btn.is-loading::after {
        border: none;
        width: 8px;
        height: 8px;
        margin: -4px 0 0 -4px;
        background: var(--accent);
      }
      .bg-image, .bg-video, .screen .content, .player-ui, .circle-btn, .swipe-hint {
        transition: none !important;
      }
      #screen-2 #manifesto-poster,
      #screen-2 .manifesto-video-layer {
        transition: none !important;
      }
      .context-card,
      .gig-row,
      #screen-6 .context-card {
        transition: none !important;
      }
      #screen-6::before,
      #screen-7::before {
        animation: none !important;
      }
    }


    /* --- FIX RESPONSIVE: AJUSTES SIN ROMPER EL SCROLL VERTICAL --- */
    .screen, .slider-item {
      padding-top: 88px !important; /* Protegemos la zona del logo superior */
      padding-bottom: 30px !important;
    }
    #screen-5.screen {
      padding-bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
    }
    #screen-6.screen {
      padding-top: max(72px, calc(env(safe-area-inset-top, 0px) + 52px)) !important;
      padding-bottom: max(10px, calc(env(safe-area-inset-bottom, 0px) + 6px)) !important;
      overflow: hidden !important;
      justify-content: flex-end !important;
    }
    #screen-6 .action-row {
      margin-top: 10px !important;
      padding-top: 4px !important;
    }
    #screen-10.screen {
      padding-bottom: clamp(56px, 12vh, 80px) !important;
    }
    #screen-10.is-active .content {
      transform: none;
    }

    /* En pantallas bajas o pequeñas, encogemos todo para que quepa sin hacer scroll */
    @media (max-height: 750px), (max-width: 420px) {
      .screen, .slider-item { padding-top: 78px !important; padding-bottom: 20px !important; }
      #screen-5.screen { padding-bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important; }
      #screen-6.screen {
        padding-top: max(68px, calc(env(safe-area-inset-top, 0px) + 48px)) !important;
        padding-bottom: max(8px, calc(env(safe-area-inset-bottom, 0px) + 4px)) !important;
        justify-content: flex-end !important;
      }
      #screen-6 h2 { margin-bottom: 10px !important; font-size: clamp(1.1rem, 4.2vw, 1.5rem) !important; }
      #screen-6 .venues-lead { margin-bottom: 12px !important; line-height: 1.52 !important; font-size: 0.78rem !important; }
      #screen-6 .venues-grid { gap: 9px !important; overflow: visible !important; align-items: stretch !important; grid-auto-rows: 1fr !important; }
      #screen-6 .context-card { padding: 9px 10px !important; aspect-ratio: 1 / 1 !important; width: 100% !important; }
      #screen-6 .context-card__body { gap: 6px !important; justify-content: center !important; }
      #screen-6 .context-card__body h3 { font-size: 0.74rem !important; line-height: 1.3 !important; }
      #screen-6 .context-card__body p { font-size: 0.7rem !important; line-height: 1.52 !important; overflow: visible !important; }
      #screen-6 .action-row { margin-top: 8px !important; padding-top: 4px !important; padding-bottom: 0 !important; }
      #screen-10.screen { padding-bottom: clamp(48px, 10vh, 64px) !important; }
      #screen-10.is-active .content { transform: none !important; }
      #screen-mixcloud.screen,
      #screen-10.screen {
        justify-content: center !important;
        align-items: center;
        padding-top: max(68px, calc(env(safe-area-inset-top, 0px) + 56px)) !important;
        padding-bottom: max(16px, env(safe-area-inset-bottom, 0px)) !important;
      }
      #screen-mixcloud .content,
      #screen-10 .content {
        align-items: center !important;
        padding-top: 0 !important;
      }
      #screen-mixcloud .mixcloud-panel,
      #screen-10 .legal-yt-panel {
        margin-left: auto !important;
        margin-right: auto !important;
      }
      #screen-6.screen {
        justify-content: flex-end !important;
        padding-top: max(68px, calc(env(safe-area-inset-top, 0px) + 48px)) !important;
        padding-bottom: max(8px, calc(env(safe-area-inset-bottom, 0px) + 4px)) !important;
        overflow: hidden !important;
      }
      #screen-6 .content {
        flex: 0 1 auto !important;
        min-height: 0 !important;
        max-height: 100% !important;
        overflow: hidden !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
      }
      #screen-6 h2 {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
      }
      #screen-6 .venues-lead {
        margin-bottom: 12px !important;
        line-height: 1.52 !important;
      }
      #screen-6 .venues-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 1fr !important;
        flex: 0 1 auto !important;
        min-height: 0 !important;
        gap: 9px !important;
        overflow: visible !important;
        align-items: stretch !important;
      }
      #screen-6 .context-card {
        padding: 9px 10px !important;
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
      }
      #screen-6 .context-card__body {
        gap: 6px !important;
      }
      #screen-6 .context-card__body h3 {
        font-size: 0.76rem !important;
        line-height: 1.3 !important;
      }
      #screen-6 .context-card__body p {
        font-size: 0.7rem !important;
        line-height: 1.52 !important;
        overflow: visible !important;
      }
      #screen-6 .action-row {
        margin-top: 8px !important;
        padding-top: 4px !important;
        padding-bottom: 0 !important;
      }
      #screen-10 .legal-yt-panel {
        padding: 14px 12px 12px !important;
      }
      #screen-10 .legal-yt-panel .mixcloud-title {
        font-size: clamp(1.5rem, 7.5vw, 1.8rem) !important;
        margin-bottom: 6px !important;
      }
      #screen-10 .legal-yt-panel .mixcloud-subtitle {
        margin-bottom: 8px !important;
        font-size: 0.82rem !important;
      }
      #screen-10 .legal-yt-panel .list-items {
        margin-top: 8px !important;
      }
      #screen-10 .legal-yt-panel .list-item {
        padding: 6px 0 !important;
      }
      #screen-10 .legal-yt-panel .list-item .list-item__text {
        font-size: 11px !important;
        line-height: 1.42 !important;
      }
      #screen-10 .action-row--legal {
        margin-top: 10px !important;
        padding-top: 6px !important;
      }
      h1 { font-size: 2.4rem !important; margin-bottom: 12px !important; }
      #screen-1 h1 {
        font-size: clamp(2.55rem, 10vw, 3.35rem) !important;
        letter-spacing: 0.09em !important;
        line-height: 0.94 !important;
      }
      #screen-1 .content > p {
        font-size: 0.95rem !important;
        line-height: 1.62 !important;
      }
      h2 { font-size: 1.9rem !important; margin-bottom: 10px !important; }
      p, .session-text { font-size: 0.92rem !important; line-height: 1.5 !important; margin-bottom: 12px !important; }
      .set-note {
        font-size: clamp(1.06rem, 4.6vw, 1.12rem) !important;
        line-height: 1.54 !important;
        margin-bottom: 12px !important;
      }
      .set-poem {
        font-size: clamp(11.5px, 3.2vw, 12.5px) !important;
        line-height: 1.56 !important;
        margin-bottom: 14px !important;
      }
      .slider-item .session-meta.compact,
      #screen-chill .session-meta.compact {
        font-size: clamp(9.5px, 2.65vw, 10.5px) !important;
      }
      .slider-item .play-stats,
      #screen-chill .play-stats {
        font-size: clamp(9.5px, 2.6vw, 10.5px) !important;
      }
      .kicker { margin-bottom: 10px !important; letter-spacing: 1.5px !important; }
      .player-ui { margin-top: 10px !important; padding: 12px !important; }
      .catalog-list { max-height: 33vh !important; }
      #screen-5 .catalog-list {
        max-height: min(46vh, calc(100dvh - 280px)) !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow-y: auto !important;
      }
      #screen-5 .content {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
      }
      #screen-5 .catalog-panel {
        flex: 1 1 auto !important;
        min-height: 0 !important;
      }
      #screen-5 {
        justify-content: flex-end !important;
        padding-bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
      }
      #screen-5 .content { transform: translateY(-10px) !important; }
      #screen-5 .content > p + p { display: none; }
      #screen-5 .content > .kicker { margin-bottom: 4px !important; }
      #screen-5 h2 { font-size: clamp(1.45rem, 5.2vw, 1.85rem) !important; margin-bottom: 2px !important; }
      #screen-5 .content > p { margin-bottom: 4px !important; font-size: 0.8rem !important; }
      #screen-5 .catalog-panel { margin-top: 2px !important; padding: 8px 10px 6px !important; }
      #screen-5 .catalog-item { padding: 8px !important; gap: 8px !important; }
      #screen-5 .catalog-info h3 { font-size: 11px !important; }
      #screen-5 .action-row { margin-top: 6px !important; padding-top: 4px !important; }
      .action-row { margin-top: 16px !important; padding-top: 12px !important; }
      #screen-1 .action-row--hero { margin-top: 22px !important; padding-top: 14px !important; }
      .gig-row { padding: 12px 12px !important; gap: 12px !important; }
      .gig-stack { gap: 10px !important; margin-top: 4px !important; }
      .gig-date { min-width: 46px !important; padding: 8px 6px !important; }
      .gig-date .num { font-size: 22px !important; }
      .venues-grid { margin-top: 12px !important; gap: 8px !important; }
      #screen-6 .venues-grid {
        margin-top: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 1fr !important;
        align-items: stretch !important;
        gap: 9px !important;
        overflow: visible !important;
      }
      #screen-6 .context-card {
        padding: 9px 10px !important;
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
      }
      #screen-6 .context-card__body { gap: 6px !important; }
      #screen-6 .action-row { margin-top: 8px !important; padding-top: 4px !important; padding-bottom: 0 !important; }
      .context-card { padding: 11px 10px !important; gap: 10px !important; }
      .context-card__icon { width: 36px !important; }
      .context-card__body h3 { font-size: 12px !important; }
      .context-card__body p { font-size: 10px !important; }
      .list-items { margin-top: 10px !important; }
      .list-item { padding: 8px 0 !important; }
      .list-item .list-item__text { font-size: 12px !important; }
      /* Acercamos el texto "Desliza" al título */
      .horizontal-slider .content > div:first-child { margin-bottom: 15px !important; }
      #screen-mixcloud .content { padding-top: 0 !important; }
      #screen-mixcloud .mixcloud-panel {
        padding: 14px 12px 12px !important;
      }
      #screen-mixcloud .mixcloud-title {
        font-size: clamp(1.5rem, 7.5vw, 1.8rem) !important;
        margin-bottom: 6px !important;
      }
      #screen-mixcloud .mixcloud-kicker { margin-bottom: 8px !important; }
      #screen-mixcloud .mixcloud-subtitle { margin-bottom: 10px !important; font-size: 0.78rem !important; }
      #screen-mixcloud .mixcloud-meta { margin-bottom: 8px !important; }
      #screen-mixcloud .mixcloud-widget {
        height: 60px !important;
        max-height: 60px !important;
      }
      #screen-mixcloud .mixcloud-widget iframe { height: 60px !important; }
      #screen-mixcloud .mixcloud-actions {
        margin-top: 8px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
      }
      #screen-mixcloud .mixcloud-primary-link {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
      }
      #screen-mixcloud .action-row--catalog {
        margin-top: 10px !important;
        padding-top: 6px !important;
      }
      .mixcloud-kicker { margin-bottom: 10px !important; }
      .mixcloud-subtitle { margin-bottom: 16px !important; font-size: 0.78rem !important; }
      #screen-11 .contact-yt-panel .mixcloud-title {
        font-size: clamp(2rem, 8.5vw, 2.65rem) !important;
        margin-bottom: 10px !important;
      }
      #screen-11 .contact-yt-panel .mixcloud-subtitle {
        font-size: clamp(0.9rem, 3.4vw, 1rem) !important;
      }
      #screen-11 .contact-yt-panel {
        padding: 26px 22px 24px !important;
      }
      .mixcloud-actions { margin-top: 16px !important; }
      #screen-4 { justify-content: flex-end !important; }
      #screen-4 .content > p + p { display: none; }
      #screen-4 .content > h2 { margin-bottom: 2px !important; }
      #screen-4 .records-shelf__track { --disc-size: clamp(88px, 24vw, 108px); }
      #screen-4 .records-shelf__card {
        width: clamp(118px, 34vw, 150px);
        height: calc(var(--disc-size) + 7.25rem);
      }
      #screen-6 h2 {
        font-size: clamp(1.05rem, 4vw, 1.35rem) !important;
        line-height: 1.18 !important;
        margin-bottom: 10px !important;
      }
      #screen-6 .venues-lead {
        font-size: clamp(0.76rem, 2.6vw, 0.88rem) !important;
        line-height: 1.52 !important;
        margin-bottom: 12px !important;
      }
      #screen-6 .venues-grid { gap: 9px !important; overflow: visible !important; align-items: stretch !important; grid-auto-rows: 1fr !important; }
      #screen-6 .context-card {
        padding: 7px 8px !important;
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
      }
      #screen-6 .context-card__body h3 { font-size: 0.72rem !important; }
      #screen-6 .context-card__body p { font-size: 0.7rem !important; line-height: 1.42 !important; overflow: visible !important; }
      #screen-6 .action-row { margin-top: 8px !important; padding-top: 4px !important; }
    }

    /* En pantallas EXTREMADAMENTE bajas (ej. iPhone SE) */
    @media (max-height: 600px) {
      h1 { font-size: 2rem !important; }
      #screen-1 h1 {
        font-size: clamp(2.2rem, 9.5vw, 2.85rem) !important;
        letter-spacing: 0.08em !important;
      }
      h2 { font-size: 1.55rem !important; line-height: 1.13 !important; }
      p, .session-text { line-height: 1.42 !important; margin-bottom: 10px !important; }
      .set-note {
        font-size: clamp(1.02rem, 4.4vw, 1.08rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
      }
      .set-poem {
        font-size: clamp(11px, 3vw, 12px) !important;
        line-height: 1.52 !important;
        margin-bottom: 12px !important;
      }
      .player-ui { padding: 8px !important; margin-top: 6px !important; }
      .play-btn { width: 40px !important; height: 40px !important; }
      .circle-btn { width: 36px !important; height: 36px !important; }
      .catalog-list { max-height: 28vh !important; }
      #screen-5 .catalog-list { max-height: min(40vh, calc(100dvh - 260px)) !important; overflow-y: auto !important; }
      #screen-5 .streaming-links { margin-top: 6px !important; }
      #screen-5 .streaming-link-btn { padding: 6px 8px !important; }
      .gig-info h3 { font-size: 12px !important; }
      #screen-4 .records-shelf__track { --disc-size: clamp(80px, 22vw, 96px); }
      #screen-4 .records-shelf__card {
        height: calc(var(--disc-size) + 6.75rem);
        width: clamp(108px, 32vw, 138px);
      }
      #screen-6 h2 {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem) !important;
        margin-bottom: 8px !important;
      } 
      #screen-6 .venues-lead {
        font-size: clamp(0.72rem, 2.3vw, 0.82rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
      }
      #screen-6 .venues-grid { margin-top: 0 !important; gap: 8px !important; overflow: visible !important; align-items: stretch !important; grid-auto-rows: 1fr !important; }
      #screen-6 .context-card {
        padding: 8px 9px !important;
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
      }
      #screen-6 .context-card__body { gap: 5px !important; }
      #screen-6 .context-card__body h3 { font-size: 0.72rem !important; line-height: 1.28 !important; }
      #screen-6 .context-card__body p { font-size: 0.66rem !important; line-height: 1.5 !important; overflow: visible !important; }
      #screen-6 .action-row { margin-top: 6px !important; padding-top: 4px !important; padding-bottom: 0 !important; }
    }
