:root {
      --orange: #ff6800;
      --orange-2: #ff8a1f;
      --orange-soft: rgba(255, 104, 0, 0.14);
      --line: rgba(255, 104, 0, 0.34);
      --white: #f6f1eb;
      --muted: #aaa39d;
      --muted-2: #756f69;
      --danger: #ff2424;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
      --max: 1480px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 15% 12%, rgba(255, 89, 0, 0.08), transparent 24%),
        radial-gradient(circle at 85% 22%, rgba(255, 89, 0, 0.05), transparent 25%),
        linear-gradient(180deg, #030303 0%, #080604 48%, #030303 100%);
      color: var(--white);
      font-family: Arial, Helvetica, sans-serif;
    }

    button,
    a,
    input {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .shell {
      width: min(calc(100% - 40px), var(--max));
      margin-inline: auto;
    }

    /* =========================
       HEADER
    ========================= */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(4, 4, 4, 0.88);
      backdrop-filter: blur(18px);
    }

    .header-inner {
      min-height: 84px;
      display: grid;
      grid-template-columns: 1fr auto auto auto;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 0;
    }

    .brand-mark {
      width: 58px;
      height: 58px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 16px;
      background:
        radial-gradient(circle, rgba(255, 104, 0, 0.18), transparent 65%),
        #0b0908;
      box-shadow:
        0 0 30px rgba(255, 104, 0, 0.10),
        inset 0 0 24px rgba(255, 104, 0, 0.04);
      font-size: 31px;
    }

    .brand-mark img {
      width: 46px;
      height: 46px;
      object-fit: contain;
      filter:
        drop-shadow(0 0 5px rgba(255, 104, 0, 0.9))
        drop-shadow(0 0 16px rgba(255, 70, 0, 0.42));
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-kicker {
      margin-bottom: 3px;
      color: #c9c0b8;
      font-size: 10px;
      letter-spacing: 0.36em;
    }

    .brand-name {
      font-weight: 900;
      font-size: 19px;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 38px;
      color: #bdb6b0;
      font-size: 13px;
      letter-spacing: 0.08em;
    }

    .main-nav a {
      position: relative;
      padding: 31px 0 27px;
      transition: color 0.2s ease;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--orange);
    }

    .main-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 17px;
      height: 2px;
      background: var(--orange);
      box-shadow: 0 0 12px rgba(255, 104, 0, 0.7);
    }

    .irc-link {
      justify-self: end;
      padding: 12px 17px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: #c7beb7;
      font-size: 12px;
      transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
    }

    .irc-link:hover {
      color: var(--orange);
      border-color: var(--orange);
      background: var(--orange-soft);
    }

    /* =========================
       HERO (estructura base)
    ========================= */

    .hero {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: 720px;
      background-color: #050403;
      border-bottom: 1px solid rgba(255, 104, 0, 0.20);
    }

    .hero-inner {
      min-height: 720px;
      display: grid;
      grid-template-columns: 0.92fr 1.28fr;
      align-items: center;
      gap: 58px;
      padding-block: 58px;
      position: relative;
      z-index: 3;
    }

    /* Video de fondo (solo escritorio, ver media query más abajo) */
    .hero-video-suavizado {
      display: none;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      pointer-events: none;
      z-index: -4;
      background: #050403;
      transition: opacity 1.1s linear;
    }

    /* Velo oscuro por defecto (aplica a la foto en mobile/tablet) */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(
          90deg,
          rgba(0, 0, 0, .24) 0%,
          rgba(0, 0, 0, .34) 28%,
          rgba(0, 0, 0, .58) 52%,
          rgba(0, 0, 0, .42) 100%
        ),
        linear-gradient(
          180deg,
          rgba(0, 0, 0, .12) 0%,
          rgba(0, 0, 0, .08) 48%,
          rgba(0, 0, 0, .72) 100%
        ),
        url("bar-zorro-fondo.webp") center 38% / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background:
        radial-gradient(circle at 17% 48%, rgba(255, 92, 0, .15), transparent 26%),
        radial-gradient(circle at 73% 45%, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38) 72%),
        linear-gradient(90deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .22));
    }

    .hero-story {
      position: relative;
      z-index: 2;
      min-height: 470px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 22px 0;
      text-shadow: 0 3px 22px rgba(0, 0, 0, .88);
    }

    .hero-glow {
      position: absolute;
      left: -90px;
      top: 50%;
      width: 430px;
      height: 430px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: radial-gradient(
        circle,
        rgba(255, 85, 0, 0.16),
        rgba(255, 85, 0, 0.04) 38%,
        transparent 70%
      );
      filter: blur(8px);
      pointer-events: none;
    }

    /* El zorro de neón ya está presente en la foto/video de fondo,
       así que ocultamos el duplicado en CSS pero conservamos su
       espacio geométrico para no romper el layout. */
    .fox-stage {
      position: relative;
      width: 270px;
      height: 215px;
      margin-bottom: 4px;
      display: grid;
      place-items: center;
      visibility: hidden;
      pointer-events: none;
    }

    .fox-neon {
      position: relative;
      z-index: 2;
      width: 238px;
      height: 200px;
      object-fit: contain;
    }

    .hero-title {
      margin: 14px 0 4px;
      max-width: 540px;
      font-size: clamp(54px, 6vw, 92px);
      line-height: 0.90;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .hero-title span {
      color: var(--orange);
      display: inline-block;
      position: relative;
      text-shadow:
        0 0 10px rgba(255, 104, 0, 0.45),
        0 0 22px rgba(255, 104, 0, 0.25);
      animation: title-neon-breath 4s ease-in-out infinite;
      will-change: opacity;
    }

    @keyframes title-neon-breath {
      0%, 100% { opacity: 0.92; }
      50% { opacity: 1; }
    }

    .hero-tagline {
      margin: 22px 0 28px;
      color: var(--orange-2);
      font-family: Georgia, "Times New Roman", serif;
      font-style: italic;
      font-size: clamp(25px, 2.6vw, 39px);
    }

    .live-strip {
      width: fit-content;
      max-width: 100%;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.44);
      color: #aaa29c;
      font-size: 12px;
      letter-spacing: 0.05em;
    }

    .live-strip span {
      white-space: nowrap;
    }

    .live-dot {
      width: 10px;
      height: 10px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--danger);
      box-shadow: 0 0 14px rgba(255, 36, 36, 0.75);
      animation: pulse 1.8s infinite;
    }

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

    .live-strong {
      color: var(--orange);
      font-weight: 900;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      cursor: pointer;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      border-color: var(--orange);
      background: var(--orange);
      color: white;
      box-shadow: 0 12px 28px rgba(255, 104, 0, 0.20);
    }

    .btn-secondary {
      background: rgba(0, 0, 0, 0.45);
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .btn-secondary:hover {
      border-color: var(--orange);
    }

    /* =========================
       NOW PLAYING — REPRODUCTOR VINILO
    ========================= */

    .section-label {
      margin-bottom: 22px;
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .vinyl-info .section-label {
      margin-bottom: 6px;
      font-size: 11px;
    }

    .track-title {
      margin: 0 0 3px;
      color: var(--orange);
      font-size: clamp(16px, 1.35vw, 21px);
      line-height: 1.12;
      letter-spacing: -0.02em;
      overflow-wrap: anywhere;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .track-artist {
      margin: 0;
      font-size: clamp(13px, 1.05vw, 16px);
      font-weight: 500;
      line-height: 1.15;
      overflow-wrap: anywhere;
    }

    .track-source {
      margin-top: 4px;
      color: var(--muted);
      font-size: 10.5px;
    }

    .vinyl-player {
      position: relative;
      z-index: 2;
      padding: 14px 44px;
      border-radius: 18px;
      border: 1px solid #060606;
      background:
        linear-gradient(155deg, #2c2c2c, #111111 22%, #0a0a0a 78%, #262626);
      box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -2px 0 rgba(0, 0, 0, 0.6);
    }

    /*
      Brillo naranja sutil y estático alrededor del reproductor.
      Antes esto era una animación de borde que recorría el marco,
      pero animar background-position sobre el video de fondo era
      demasiado costoso y cortaba el video. Ahora es un halo fijo
      que da el toque de "equipo encendido" sin costo de repintado.
    */
    .vinyl-player::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: -1;
      border-radius: 19px;
      background: linear-gradient(
        120deg,
        rgba(255, 104, 0, 0.4),
        rgba(255, 138, 31, 0.15) 45%,
        rgba(255, 104, 0, 0.35)
      );
      opacity: 0.5;
    }

    .vinyl-main {
      position: relative;
      overflow: hidden;
      padding: 14px 18px;
      border-radius: 13px;
      background:
        radial-gradient(circle at 95% 0%, rgba(255, 83, 0, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(15, 15, 15, 0.98), rgba(3, 3, 3, 0.99));
      border: 1px solid rgba(255, 104, 0, 0.42);
      box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.5);
    }

    .vinyl-screw {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #7a7a7a, #1a1a1a 70%);
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), inset 0 0 2px rgba(255, 255, 255, 0.25);
      z-index: 3;
    }

    .vinyl-screw-tl { top: 12px; left: 14px; }
    .vinyl-screw-tr { top: 12px; right: 14px; }
    .vinyl-screw-bl { bottom: 12px; left: 14px; }
    .vinyl-screw-br { bottom: 12px; right: 14px; }

    .vinyl-grille {
      position: absolute;
      top: 12px;
      bottom: 12px;
      width: 24px;
      pointer-events: none;
      border-radius: 8px;
      background-color: rgba(0, 0, 0, 0.3);
      background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.09) 1.1px, transparent 1.3px);
      background-size: 6px 6px;
    }

    .vinyl-grille-left { left: 9px; }
    .vinyl-grille-right { right: 9px; }

    .vinyl-chevron {
      position: absolute;
      top: 50%;
      z-index: 3;
      transform: translateY(-50%);
      display: flex;
      width: 21px;
      height: 21px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      color: var(--muted);
      font-size: 12px;
      cursor: default;
    }

    .vinyl-chevron-left { left: 11px; }
    .vinyl-chevron-right { right: 11px; }

    .vinyl-top-row {
      display: grid;
      grid-template-columns: auto minmax(140px, 1fr) auto minmax(112px, 126px);
      grid-template-areas:
        "disc info fox meta"
        "disc eq   eq  meta";
      align-items: center;
      gap: 8px 14px;
      min-width: 0;
    }

    .vinyl-disc-wrap { grid-area: disc; }
    .vinyl-info { grid-area: info; align-self: end; }
    .vinyl-fox { grid-area: fox; align-self: end; }
    .vinyl-meta { grid-area: meta; }
    .vinyl-eq-bar { grid-area: eq; align-self: start; }

    .vinyl-disc-wrap {
      position: relative;
      width: 112px;
      height: 112px;
      flex: 0 0 auto;
    }

    /*
      Destello de luz fijo sobre el disco: como el disco gira
      debajo y el brillo queda quieto, se ve como luz ambiente
      reflejándose en un vinilo real.
    */
    .vinyl-disc-wrap::after {
      content: "";
      position: absolute;
      inset: 11px;
      border-radius: 50%;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.04) 22%,
        transparent 40%,
        transparent 72%,
        rgba(255, 255, 255, 0.05) 100%
      );
    }

    .vu-ring {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }

    .vu-ring-track {
      fill: none;
      stroke: rgba(255, 104, 0, 0.18);
      stroke-width: 7;
    }

    .vu-ring-fill {
      fill: none;
      stroke: var(--orange);
      stroke-width: 7;
      stroke-linecap: round;
      stroke-dasharray: 553;
      stroke-dashoffset: 130;
      filter: drop-shadow(0 0 5px rgba(255, 104, 0, 0.75));
      transition: stroke-dashoffset 0.12s linear;
    }

    .vinyl-disc {
      position: absolute;
      inset: 11px;
      border-radius: 50%;
      overflow: hidden;
      background: #0c0c0c;
      border: 3px solid #1a1a1a;
      box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.5),
        inset 0 0 0 6px rgba(0, 0, 0, 0.35);
      animation: vinyl-spin 4s linear infinite;
      animation-play-state: paused;
    }

    .vinyl-disc.is-playing {
      animation-play-state: running;
    }

    @keyframes vinyl-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .vinyl-cover {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.4s ease;
    }

    .vinyl-hole {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 13px;
      height: 13px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: #050505;
      border: 2px solid #2a2a2a;
    }

    .vinyl-info {
      min-width: 0;
    }

    .vinyl-eq-bar {
      height: 26px;
      display: flex;
      align-items: end;
      gap: 2px;
    }

    .vinyl-eq-bar span {
      flex: 1 1 0;
      min-width: 2px;
      min-height: 3px;
      border-radius: 2px 2px 0 0;
      background: linear-gradient(to top, #b84100, var(--orange-2));
      transition: height 0.09s linear;
    }

    @media (prefers-reduced-motion: reduce) {
      .vinyl-eq-bar span {
        transition: none;
      }
    }

    .vinyl-fox {
      flex: 0 0 auto;
      width: 66px;
      height: 66px;
      opacity: 0.95;
    }

    .vinyl-fox-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter:
        drop-shadow(0 0 6px rgba(255, 104, 0, 0.85))
        drop-shadow(0 0 18px rgba(255, 70, 0, 0.45));
    }

    .vinyl-meta {
      flex: 0 0 auto;
      min-width: 0;
      display: grid;
      gap: 6px;
    }

    .vinyl-tech {
      color: var(--muted-2);
      font-size: 9px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .vinyl-row {
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--muted);
      font-size: 11px;
    }

    .dj-led {
      width: 8px;
      height: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: #4a4a4a;
    }

    .vinyl-dj-row {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .vinyl-dj-row.is-live .dj-led {
      background: var(--danger);
      box-shadow: 0 0 10px rgba(255, 36, 36, 0.75);
      animation: pulse 1.8s infinite;
    }

    .vinyl-dj-row.is-live {
      color: var(--orange-2);
      font-weight: 700;
    }

    .vinyl-controls {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .vinyl-btn {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      cursor: pointer;
      font-size: 13px;
      transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    }

    .vinyl-btn:hover {
      transform: scale(1.05);
    }

    .vinyl-btn-play {
      border: 1px solid var(--orange);
      background: rgba(255, 104, 0, 0.10);
      color: var(--orange);
    }

    .vinyl-btn-pause {
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.03);
      color: var(--muted);
    }

    .vinyl-controls.is-playing .vinyl-btn-play {
      border-color: rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.03);
      color: var(--muted);
    }

    .vinyl-controls.is-playing .vinyl-btn-pause {
      border-color: var(--orange);
      background: rgba(255, 104, 0, 0.10);
      color: var(--orange);
    }

    .volume-line {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 7px;
      min-width: 0;
    }

    .volume-icon {
      color: #d7d1cc;
      font-size: 13px;
    }

    input[type="range"] {
      width: 100%;
      accent-color: var(--orange);
      cursor: pointer;
    }

    @media (prefers-reduced-motion: reduce) {
      .vinyl-disc {
        animation: none !important;
      }
    }

    /* =========================
       MAIN GRID
    ========================= */

    .content-zone {
      position: relative;
      padding: 34px 0 54px;
      background:
        radial-gradient(circle at 72% 0%, rgba(255, 104, 0, 0.035), transparent 25%),
        linear-gradient(180deg, #080706, #040404);
    }

    .dashboard {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.82fr);
      gap: 22px;
    }

    .panel {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 16px;
      background:
        linear-gradient(145deg, rgba(15, 15, 15, 0.97), rgba(5, 5, 5, 0.98));
      box-shadow: 0 20px 55px rgba(0, 0, 0, 0.30);
    }

    .intro-panel {
      min-height: 390px;
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .intro-panel::after {
      content: "";
      position: absolute;
      right: 5%;
      bottom: -22px;
      width: 210px;
      height: 210px;
      background: url("zorro-nocturno.webp") center / contain no-repeat;
      opacity: 0.045;
      filter: grayscale(1);
      transform: rotate(-5deg);
      pointer-events: none;
    }

    .panel-kicker {
      color: var(--orange);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .panel-title {
      margin: 12px 0 0;
      font-size: clamp(28px, 3vw, 45px);
      line-height: 1.05;
      letter-spacing: -0.035em;
    }

    .small-orange-line {
      width: 65px;
      height: 3px;
      margin: 24px 0;
      background: var(--orange);
      box-shadow: 0 0 12px rgba(255, 104, 0, 0.35);
    }

    .intro-copy {
      position: relative;
      z-index: 1;
      max-width: 700px;
      color: #c2bbb5;
      font-size: 16px;
      line-height: 1.78;
    }

    .intro-copy p {
      margin: 0 0 14px;
    }

    .history-panel {
      padding: 30px;
    }

    .history-list {
      display: grid;
      gap: 0;
    }

    .history-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
      align-items: center;
      min-height: 66px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }

    .history-item:last-child {
      border-bottom: 0;
    }

    .history-number {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: rgba(255, 104, 0, 0.055);
      color: var(--orange);
      font-size: 11px;
      font-weight: 900;
    }

    .history-text {
      min-width: 0;
      color: #e3ddd8;
      font-size: 13px;
      line-height: 1.34;
      overflow-wrap: anywhere;
    }

    /* =========================
       ATMOSPHERES + ABOUT
    ========================= */

    .lower-grid {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 1.42fr 0.95fr;
      gap: 22px;
    }

    .atmospheres {
      padding: 34px;
    }

    .atmosphere-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .atmo-card {
      min-height: 205px;
      padding: 24px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid var(--line);
      border-radius: 12px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
      transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
    }

    .atmo-card:hover {
      transform: translateY(-4px);
      border-color: var(--orange);
      background: rgba(255, 104, 0, 0.045);
    }

    .atmo-icon {
      min-height: 48px;
      display: grid;
      place-items: center;
      color: var(--orange);
      font-size: 36px;
      animation: atmo-glow 4s ease-in-out infinite;
      will-change: opacity;
    }

    .atmo-card:nth-child(1) .atmo-icon { animation-delay: 0s; }
    .atmo-card:nth-child(2) .atmo-icon { animation-delay: 1s; }
    .atmo-card:nth-child(3) .atmo-icon { animation-delay: 2s; }
    .atmo-card:nth-child(4) .atmo-icon { animation-delay: 3s; }

    @keyframes atmo-glow {
      0%, 100% { opacity: 0.75; }
      50% { opacity: 1; }
    }

    .atmo-card h3 {
      margin: 14px 0 6px;
      font-size: 14px;
      letter-spacing: 0.04em;
    }

    .atmo-time {
      color: #bcb4ad;
      font-family: Georgia, serif;
      font-size: 12px;
    }

    .atmo-card p {
      margin: 14px 0 0;
      color: #8f8882;
      font-size: 12px;
      line-height: 1.5;
    }

    .dynamic-note {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: #b9afa6;
      text-align: center;
      font-size: 12px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .about-panel {
      padding: 34px;
    }

    .about-stack {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .about-item {
      min-height: 84px;
      display: grid;
      grid-template-columns: 58px 1fr;
      align-items: center;
      gap: 16px;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.015);
    }

    .about-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255, 104, 0, 0.10);
      color: var(--orange);
      font-size: 24px;
    }

    .about-item strong {
      display: block;
      margin-bottom: 5px;
      font-size: 13px;
      letter-spacing: 0.03em;
    }

    .about-item span {
      display: block;
      color: #9e9690;
      font-size: 12px;
      line-height: 1.45;
    }

    /* =========================
       IRC / BAR SECTION
    ========================= */

    .bar-section {
      padding: 28px 0 52px;
      background: #040404;
    }

    .bar-card {
      position: relative;
      overflow: hidden;
      min-height: 270px;
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      border: 1px solid var(--line);
      border-radius: 16px;
      background:
        radial-gradient(circle at 82% 45%, rgba(255, 89, 0, 0.16), transparent 26%),
        linear-gradient(120deg, #0d0b09, #050505);
    }

    .bar-copy {
      padding: 42px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .bar-copy h2 {
      margin: 10px 0 14px;
      font-size: clamp(28px, 3vw, 44px);
    }

    .bar-copy p {
      max-width: 690px;
      margin: 0;
      color: #aaa29c;
      line-height: 1.65;
    }

    .bar-copy .btn {
      width: fit-content;
      margin-top: 22px;
    }

    .bar-sign {
      min-height: 270px;
      display: grid;
      place-items: center;
      border-left: 1px solid rgba(255, 104, 0, 0.18);
      background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.62)),
        repeating-linear-gradient(
          90deg,
          rgba(255,104,0,0.03) 0 2px,
          transparent 2px 42px
        );
    }

    .neon-sign {
      width: 190px;
      height: 190px;
      display: grid;
      place-items: center;
      border: 2px solid var(--orange);
      color: var(--orange);
      font-size: 31px;
      font-weight: 900;
      line-height: 0.95;
      text-align: center;
      box-shadow:
        0 0 12px rgba(255, 104, 0, 0.65),
        0 0 42px rgba(255, 104, 0, 0.20),
        inset 0 0 24px rgba(255, 104, 0, 0.10);
      text-shadow:
        0 0 7px rgba(255, 104, 0, 0.8),
        0 0 22px rgba(255, 104, 0, 0.45);
    }

    /* =========================
       FOOTER
    ========================= */

    .site-footer {
      position: relative;
      overflow: hidden;
      min-height: 230px;
      border-top: 1px solid rgba(255, 104, 0, 0.20);
      background:
        radial-gradient(circle at 50% 50%, rgba(255, 104, 0, 0.10), transparent 24%),
        linear-gradient(180deg, #080503, #020202);
    }

    .skyline {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 78px;
      height: 85px;
      opacity: 0.42;
      background:
        linear-gradient(
          90deg,
          transparent 0 2%,
          #1a120d 2% 4%,
          transparent 4% 6%,
          #24150d 6% 9%,
          transparent 9% 12%,
          #160f0b 12% 15%,
          transparent 15% 18%,
          #24150d 18% 22%,
          transparent 22% 26%,
          #160f0b 26% 31%,
          transparent 31% 35%,
          #25150c 35% 39%,
          transparent 39% 44%,
          #180f0a 44% 48%,
          transparent 48% 52%,
          #28170d 52% 57%,
          transparent 57% 61%,
          #1c110b 61% 66%,
          transparent 66% 70%,
          #29180e 70% 75%,
          transparent 75% 79%,
          #1a100a 79% 84%,
          transparent 84% 88%,
          #26160d 88% 93%,
          transparent 93%
        );
      clip-path: polygon(
        0 100%, 0 65%, 3% 65%, 3% 30%, 6% 30%, 6% 72%,
        10% 72%, 10% 45%, 13% 45%, 13% 15%, 16% 15%, 16% 68%,
        20% 68%, 20% 38%, 24% 38%, 24% 76%, 29% 76%, 29% 22%,
        33% 22%, 33% 60%, 37% 60%, 37% 8%, 40% 8%, 40% 72%,
        45% 72%, 45% 35%, 49% 35%, 49% 64%, 54% 64%, 54% 18%,
        58% 18%, 58% 74%, 62% 74%, 62% 42%, 66% 42%, 66% 12%,
        69% 12%, 69% 70%, 74% 70%, 74% 28%, 78% 28%, 78% 63%,
        82% 63%, 82% 17%, 86% 17%, 86% 71%, 90% 71%, 90% 36%,
        94% 36%, 94% 58%, 100% 58%, 100% 100%
      );
    }

    .wave-line {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 94px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      opacity: 0.75;
    }

    .wave-line i {
      display: block;
      width: 2px;
      border-radius: 3px;
      background: var(--orange);
      box-shadow: 0 0 8px rgba(255, 104, 0, 0.5);
    }

    .footer-inner {
      position: relative;
      z-index: 2;
      min-height: 230px;
      display: grid;
      place-items: end center;
      padding-bottom: 28px;
    }

    .footer-center {
      text-align: center;
    }

    .footer-fox {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .footer-fox img {
      width: 86px;
      height: 72px;
      object-fit: contain;
      filter:
        drop-shadow(0 0 5px rgba(255, 104, 0, 0.9))
        drop-shadow(0 0 18px rgba(255, 74, 0, 0.48));
    }

    .footer-phrase {
      margin-top: 8px;
      color: #d4cbc4;
      font-size: 11px;
      letter-spacing: 0.42em;
      text-transform: uppercase;
    }

    .footer-phrase span {
      color: var(--orange);
    }

    .copyright {
      margin-top: 16px;
      color: #69635e;
      font-size: 10px;
    }

    /* =========================
       STATUS
    ========================= */

    .status-message {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 200;
      max-width: min(360px, calc(100vw - 36px));
      padding: 12px 15px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: rgba(10, 10, 10, 0.95);
      color: #d6cec8;
      font-size: 12px;
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    }

    .status-message.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================================================
       HERO — ESCRITORIO (video real de fondo)
       Un solo bloque, sin capas superpuestas ni !important en cascada.
       ========================================================= */
    @media (min-width: 1101px) {
      .hero-video-suavizado {
        display: block;
      }

      .hero::before {
        background:
          linear-gradient(
            90deg,
            rgba(0, 0, 0, .50) 0%,
            rgba(0, 0, 0, .27) 24%,
            rgba(0, 0, 0, .08) 49%,
            rgba(0, 0, 0, .14) 70%,
            rgba(0, 0, 0, .30) 100%
          ),
          linear-gradient(
            180deg,
            rgba(0, 0, 0, .08) 0%,
            rgba(0, 0, 0, .02) 48%,
            rgba(0, 0, 0, .52) 100%
          );
      }

      .hero::after {
        background:
          radial-gradient(circle at 16% 48%, rgba(255, 92, 0, .10), transparent 25%),
          linear-gradient(90deg, rgba(0, 0, 0, .10), transparent 34%, transparent 72%, rgba(0, 0, 0, .12));
      }

      .hero-inner {
        grid-template-columns: minmax(390px, .86fr) minmax(560px, 1.14fr);
        gap: clamp(34px, 3.4vw, 64px);
      }

      .hero-story {
        min-height: 520px;
        padding-left: 210px;
      }

      .hero-title {
        max-width: 400px;
        margin-top: 0;
        font-size: clamp(42px, 3.6vw, 62px);
      }

      .hero-tagline {
        white-space: nowrap;
      }

      .vinyl-player {
        width: min(100%, 590px);
        max-width: 590px;
        justify-self: end;
        padding: 14px 42px;
        border-radius: 18px;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
      }

      .vinyl-top-row {
        gap: 8px 16px;
      }
    }

    @media (min-width: 1101px) and (max-width: 1350px) {
      .hero-inner {
        grid-template-columns: minmax(330px, .80fr) minmax(520px, 1.20fr);
        gap: 28px;
      }

      .hero-title { font-size: clamp(38px, 3.8vw, 56px); }
      .hero-tagline { font-size: clamp(25px, 2.6vw, 34px); }

      .vinyl-player {
        max-width: 540px;
        padding: 12px 38px;
      }

      .vinyl-fox {
        display: none;
      }

      .vinyl-meta {
        min-width: 150px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-video-suavizado {
        display: none;
      }
    }

    /* =========================
       RESPONSIVE (estructura general)
    ========================= */

    @media (max-width: 1100px) {
      .header-inner {
        grid-template-columns: 1fr auto auto auto auto;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .hero-story {
        min-height: auto;
      }

      .dashboard,
      .lower-grid {
        grid-template-columns: 1fr;
      }

      .history-panel {
        order: 2;
      }
    }

    @media (max-width: 760px) {
      .shell {
        width: min(calc(100% - 24px), var(--max));
      }

      .site-header {
        position: relative;
      }

      .header-inner {
        min-height: 72px;
        gap: 12px;
      }

      .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 13px;
        font-size: 25px;
      }

      .brand-kicker {
        font-size: 8px;
      }

      .brand-name {
        font-size: 15px;
      }

      .irc-link {
        padding: 9px 11px;
        font-size: 10px;
      }

      .hero,
      .hero-inner {
        min-height: auto;
      }

      .hero-inner {
        padding-block: 34px;
      }

      .hero-title {
        font-size: clamp(48px, 17vw, 72px);
      }

      .hero-tagline {
        font-size: 25px;
      }

      .live-strip {
        flex-wrap: wrap;
      }

      .vinyl-player {
        padding: 20px;
        border-radius: 16px;
      }

      .vinyl-grille {
        display: none;
      }

      /*
        Los chevrons decorativos se ocultan en móvil, pero
        eggHotLeft/eggHotRight deben seguir existiendo y ser
        clickeables (invisibles) para que el huevo de pascua
        de Sergio también funcione en celular.
      */
      .vinyl-chevron:not(#eggHotLeft):not(#eggHotRight) {
        display: none;
      }

      #eggHotLeft,
      #eggHotRight {
        opacity: 0;
      }

      .vinyl-main {
        padding: 16px;
      }

      .vinyl-top-row {
        grid-template-columns: 1fr;
        grid-template-areas:
          "disc"
          "info"
          "eq"
          "meta";
        justify-items: center;
        text-align: center;
        gap: 14px;
      }

      .vinyl-disc-wrap {
        width: 120px;
        height: 120px;
      }

      .vinyl-fox {
        display: none;
      }

      .vinyl-meta {
        width: 100%;
        justify-items: center;
      }

      .vinyl-row {
        justify-content: center;
      }

      .vinyl-controls {
        justify-content: center;
      }

      .track-title {
        font-size: 22px;
      }

      .track-artist {
        font-size: 17px;
      }

      .vinyl-eq-bar {
        height: 32px;
        width: 100%;
      }

      .content-zone {
        padding-top: 20px;
      }

      .intro-panel,
      .history-panel,
      .atmospheres,
      .about-panel {
        padding: 24px;
      }

      .intro-panel {
        min-height: 330px;
      }

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

      .bar-card {
        grid-template-columns: 1fr;
      }

      .bar-copy {
        padding: 28px;
      }

      .bar-sign {
        min-height: 230px;
        border-left: 0;
        border-top: 1px solid rgba(255, 104, 0, 0.18);
      }

      .hero::before {
        background:
          linear-gradient(180deg,
            rgba(0, 0, 0, .18) 0%,
            rgba(0, 0, 0, .46) 34%,
            rgba(0, 0, 0, .82) 72%,
            rgba(0, 0, 0, .94) 100%
          ),
          url("bar-zorro-fondo.webp") 38% top / auto 58vh no-repeat,
          #050403;
      }

      .hero::after {
        background:
          radial-gradient(circle at 22% 20%, rgba(255, 92, 0, .13), transparent 28%),
          linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .22) 42%, rgba(0, 0, 0, .68) 100%);
      }
    }

    @media (max-width: 480px) {
      .brand-name {
        max-width: 150px;
        white-space: normal;
        line-height: 1.05;
      }

      .irc-link {
        display: none;
      }

      .header-inner {
        grid-template-columns: 1fr auto auto;
      }

      .hero-title {
        font-size: 52px;
      }

      .vinyl-disc-wrap {
        width: 100px;
        height: 100px;
      }

      .track-title {
        margin-top: 2px;
      }

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

      .about-item {
        grid-template-columns: 48px 1fr;
      }

      .about-icon {
        width: 48px;
        height: 48px;
      }

      .footer-phrase {
        letter-spacing: 0.25em;
      }

      .hero::before {
        background:
          linear-gradient(180deg,
            rgba(0, 0, 0, .16) 0%,
            rgba(0, 0, 0, .50) 32%,
            rgba(0, 0, 0, .88) 66%,
            #050403 100%
          ),
          url("bar-zorro-fondo.webp") 34% top / auto 52vh no-repeat,
          #050403;
      }
    }

/* =========================
   HAMBURGER MENU (móvil)
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  z-index: 110;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: rgba(255, 104, 0, 0.08);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #050505;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 20px 0;
    font-size: 20px;
    letter-spacing: 0.14em;
    color: var(--white);
  }

  .main-nav a.active {
    color: var(--orange);
  }

  .main-nav a.active::after {
    display: none;
  }

  /* El botón de cerrar (hamburguesa en X) debe quedar sobre el overlay */
  .hamburger {
    position: relative;
    z-index: 210;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    z-index: 205;
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
  }
}

/* =========================
   REPRODUCTOR — TABLET (768–1100px)
   Disco + info lado a lado, meta abajo.
========================= */

@media (min-width: 761px) and (max-width: 1100px) {
  .vinyl-player {
    padding: 16px 48px;
    max-width: 540px;
    margin: 0 auto;
  }

  .vinyl-top-row {
    grid-template-columns: auto minmax(160px, 1fr) auto;
    grid-template-areas:
      "disc info fox"
      "eq   eq   eq"
      "meta meta meta";
    gap: 12px 18px;
    text-align: left;
    justify-items: start;
  }

  .vinyl-meta {
    width: 100%;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
  }

  .vinyl-controls {
    justify-content: center;
  }

  .vinyl-disc-wrap {
    width: 100px;
    height: 100px;
  }

  .vinyl-fox {
    width: 56px;
    height: 56px;
  }

  .vinyl-grille {
    display: none;
  }

  .vinyl-chevron:not(#eggHotLeft):not(#eggHotRight) {
    display: none;
  }

  #eggHotLeft,
  #eggHotRight {
    opacity: 0;
  }
}

/* =========================
   BOTÓN DE BRILLO
========================= */

.brightness-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 17px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.brightness-toggle:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(255, 104, 0, 0.08);
}

/* =========================
   MODO LECTURA (bright-mode)
   Solo afecta las secciones de contenido
   (paneles, historial, atmósferas, about).
   El hero y el reproductor quedan intactos.
========================= */

.bright-mode .panel,
.bright-mode .bar-card {
  background:
    linear-gradient(145deg, rgba(32, 30, 28, 0.98), rgba(18, 16, 14, 0.99));
}

.bright-mode .intro-copy,
.bright-mode .history-text,
.bright-mode .atmo-card p,
.bright-mode .about-item span,
.bright-mode .bar-copy p {
  color: #ddd8d3;
}

.bright-mode .panel-title,
.bright-mode .atmo-card h3,
.bright-mode .about-item strong,
.bright-mode .bar-copy h2 {
  color: #f0ebe6;
}

.bright-mode .atmo-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.bright-mode .dynamic-note {
  color: #d4ccc5;
}

@media (max-width: 1100px) {
  .brightness-toggle {
    order: -1;
  }
}

@media (max-width: 480px) {
  .brightness-toggle {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}

/* =========================
   REVEAL AL SCROLL
   Los paneles aparecen deslizándose suavemente
   cuando entran en pantalla.
========================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

      /* ==========================================
         HUEVO DE PASCUA
         17 clics en el zorro del footer despiertan
         al zorro de neón, que saluda y se despide.
      ========================================== */

      .footer-fox {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.15s ease;
      }

      .footer-fox.egg-pulse {
        animation: egg-pulse 0.25s ease;
      }

      @keyframes egg-pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.12); }
        100% { transform: scale(1); }
      }

      .egg-scene {
        position: fixed;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
        z-index: 500;
      }

      .egg-fox-stage {
        position: absolute;
        bottom: 80px;
        left: 50%;
        width: 240px;
        margin-left: -120px;
        opacity: 0;
      }

      .egg-scene.show .egg-fox-stage {
        opacity: 1;
      }

      .egg-fox-stage.walk-in {
        animation: egg-slide-in 1.4s cubic-bezier(.2, .8, .3, 1) forwards;
      }

      .egg-fox-stage.walk-out {
        animation: egg-slide-out 1.2s cubic-bezier(.5, 0, .75, 0) forwards;
      }

      @keyframes egg-slide-in {
        from { transform: translateX(-120vw); }
        to   { transform: translateX(0); }
      }

      @keyframes egg-slide-out {
        from { transform: translateX(0); }
        to   { transform: translateX(120vw); }
      }

      .egg-fox-visual {
        position: relative;
        transform-origin: 50% 0;
      }

      .egg-big-fox {
        display: block;
        width: 100%;
        position: relative;
        z-index: 2;
        filter:
          drop-shadow(0 0 10px rgba(255, 104, 0, 0.9))
          drop-shadow(0 0 34px rgba(255, 70, 0, 0.55))
          drop-shadow(0 0 70px rgba(255, 89, 0, 0.25));
      }

      .egg-fox-reflection {
        display: block;
        width: 100%;
        margin-top: -10px;
        transform: scaleY(-1);
        opacity: 0.22;
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 65%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 65%);
        filter: blur(1.5px) drop-shadow(0 0 10px rgba(255, 89, 0, 0.35));
        pointer-events: none;
      }

      /* balanceo sutil, como un letrero colgante, mientras saluda */
      .egg-fox-stage.greet .egg-fox-visual {
        animation: egg-sway 3s ease-in-out infinite;
      }

      @keyframes egg-sway {
        0%, 100% { transform: rotate(-1.3deg); }
        50%      { transform: rotate(1.3deg); }
      }

      /* parpadeo de neon al encender, mientras entra */
      .egg-fox-stage.walk-in .egg-big-fox {
        animation: egg-flicker-on 1.4s steps(1, end) forwards;
      }

      @keyframes egg-flicker-on {
        0%   { opacity: 0; }
        8%   { opacity: 1; }
        12%  { opacity: 0.2; }
        16%  { opacity: 1; }
        24%  { opacity: 0.3; }
        28%  { opacity: 1; }
        100% { opacity: 1; }
      }

      /* respiracion suave del neon + parpadeos aleatorios ocasionales, mientras saluda */
      .egg-fox-stage.greet .egg-big-fox {
        animation:
          egg-breathe 1.4s ease-in-out infinite,
          egg-blip 4.3s linear infinite;
      }

      @keyframes egg-blip {
        0%, 91%, 94%, 100% { opacity: 1; }
        92% { opacity: 0.35; }
        93% { opacity: 1; }
        96% { opacity: 0.15; }
        97% { opacity: 1; }
      }

      @keyframes egg-breathe {
        0%, 100% {
          filter:
            drop-shadow(0 0 10px rgba(255, 104, 0, 0.9))
            drop-shadow(0 0 34px rgba(255, 70, 0, 0.55))
            drop-shadow(0 0 70px rgba(255, 89, 0, 0.25));
        }
        50% {
          filter:
            drop-shadow(0 0 14px rgba(255, 104, 0, 1))
            drop-shadow(0 0 46px rgba(255, 70, 0, 0.75))
            drop-shadow(0 0 90px rgba(255, 89, 0, 0.4));
        }
      }

      /* parpadeo al apagarse, mientras sale */
      .egg-fox-stage.walk-out .egg-big-fox {
        animation: egg-flicker-off 1.2s steps(1, end) forwards;
      }

      @keyframes egg-flicker-off {
        0%   { opacity: 1; }
        70%  { opacity: 1; }
        76%  { opacity: 0.2; }
        80%  { opacity: 1; }
        86%  { opacity: 0.15; }
        100% { opacity: 1; }
      }

      .egg-speech-bubble {
        position: absolute;
        bottom: 92%;
        left: 50%;
        margin-bottom: 10px;
        transform: translateX(-50%) scale(0.6);
        background: var(--white);
        color: #1a0f0a;
        padding: 10px 22px;
        border-radius: 22px;
        border: 3px solid #1a0f0a;
        font-weight: 700;
        font-family: 'Comic Sans MS', 'Segoe UI', system-ui, sans-serif;
        font-size: 22px;
        white-space: nowrap;
        opacity: 0;
        box-shadow: 0 0 24px rgba(255, 104, 0, 0.5);
      }

      .egg-speech-bubble::before {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        background: var(--white);
        border-right: 3px solid #1a0f0a;
        border-bottom: 3px solid #1a0f0a;
        border-radius: 0 0 0 2px;
        clip-path: polygon(0 0, 100% 100%, 0 100%);
      }

      .egg-fox-stage.greet .egg-speech-bubble {
        animation: egg-bubble-in 0.4s cubic-bezier(.34, 1.56, .64, 1) forwards;
      }

      #eggBubbleText {
        display: inline-block;
        transition: opacity 0.18s ease, transform 0.18s ease;
      }

      #eggBubbleText.egg-swap {
        opacity: 0;
        transform: translateY(4px) scale(0.92);
      }

      @keyframes egg-bubble-in {
        to { opacity: 1; transform: translateX(-50%) scale(1); }
      }

      .egg-glow-backdrop {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 560px;
        height: 340px;
        background: radial-gradient(circle, rgba(255, 104, 0, 0.28), transparent 70%);
        opacity: 0;
        transition: opacity 0.8s ease;
      }

      .egg-scene.egg-greeting .egg-glow-backdrop {
        opacity: 1;
      }

      @media (max-width: 640px) {
        .egg-fox-stage {
          width: 170px;
          margin-left: -85px;
          bottom: 60px;
        }
        .egg-speech-bubble {
          font-size: 17px;
          padding: 8px 16px;
        }
      }

      /* ==========================================
         HUEVO DE PASCUA — SERGIO
         4 clics en cruz sobre el reproductor:
         arriba (disco) → abajo (ecualizador) →
         izquierda (‹) → derecha (›)
      ========================================== */

      .egg2-cross-layer {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
      }

      .egg2-cross-svg {
        width: 220px;
        height: 300px;
        overflow: visible;
      }

      .egg2-cross-svg path,
      .egg2-cross-svg circle {
        stroke: #fff;
        filter:
          drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 16px rgba(255, 235, 200, 0.6));
      }

      .egg2-cross-vertical,
      .egg2-cross-horizontal {
        fill: none;
        stroke-width: 5;
        stroke-linecap: round;
      }

      .egg2-cross-dot {
        fill: #fff;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .egg2-cross-dot.show {
        opacity: 1;
      }

      .egg2-reveal {
        position: fixed;
        inset: 0;
        z-index: 700;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(3, 2, 1, 0.86);
        padding: 20px;
      }

      .egg2-reveal.show {
        display: flex;
      }

      .egg2-reveal-panel {
        position: relative;
        width: min(720px, 92vw);
        opacity: 0;
        transform: scale(0.92);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .egg2-reveal.show .egg2-reveal-panel {
        opacity: 1;
        transform: scale(1);
      }

      .egg2-reveal-img {
        width: 100%;
        display: block;
        border-radius: 14px;
        border: 2px solid rgba(255, 200, 120, 0.4);
        box-shadow:
          0 0 50px rgba(255, 150, 50, 0.25),
          0 30px 80px rgba(0, 0, 0, 0.6);
      }

      .egg2-reveal-msg {
        text-align: center;
        margin-top: 18px;
        font-size: 17px;
        color: var(--white);
        letter-spacing: 0.02em;
      }

      .egg2-reveal-close {
        position: absolute;
        top: -14px;
        right: -14px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #100c09;
        border: 1px solid var(--line);
        color: var(--white);
        font-size: 16px;
        display: grid;
        place-items: center;
        cursor: pointer;
      }

      .egg2-confetti-layer {
        position: fixed;
        inset: 0;
        z-index: 690;
        overflow: hidden;
        pointer-events: none;
      }

      .egg2-confetti-piece {
        position: absolute;
        top: -20px;
        opacity: 0.9;
        animation-name: egg2-confetti-fall;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
      }

      @keyframes egg2-confetti-fall {
        to { transform: translateY(115vh) rotate(360deg); }
      }

      @media (max-width: 640px) {
        .egg2-cross-svg { width: 150px; height: 210px; }
        .egg2-reveal-msg { font-size: 14px; }
      }

      /* ==========================================
         PEDIR CANCIÓN — tarjeta fija en la página
      ========================================== */

      .request-zone {
        padding-top: 0;
        padding-bottom: 30px;
      }

      .request-card-panel {
        width: 100%;
        max-width: 640px;
        overflow: visible;
        padding: 32px 34px;
      }

      .request-search-wrap {
        position: relative;
        margin: 18px 0 4px;
      }

      .request-search-row input {
        width: 100%;
        background: #030303;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 13px 16px;
        color: var(--white);
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        outline: none;
      }
      .request-search-row input::placeholder { color: var(--muted-2); }
      .request-search-row input:focus { border-color: var(--orange); }

      /* Dropdown flotante: no empuja el resto de la página */
      .request-song-list {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        max-height: 360px;
        overflow-y: auto;
        display: none;
        flex-direction: column;
        gap: 4px;
        background: #0d0b09;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 8px;
        box-shadow: var(--shadow);
        z-index: 30;
      }

      .request-song-list.show {
        display: flex;
      }

      .request-song-list::-webkit-scrollbar { width: 6px; }
      .request-song-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

      .request-song-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 8px 10px;
        border-radius: 10px;
        transition: background 0.15s ease;
      }
      .request-song-item:hover {
        background: rgba(255, 104, 0, 0.08);
      }

      .request-song-cover {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: #1a1512;
        flex-shrink: 0;
        object-fit: cover;
      }

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

      .request-song-title {
        font-size: 13px;
        font-weight: 700;
        color: var(--white);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .request-song-artist {
        font-size: 11px;
        color: var(--muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .request-song-btn-action {
        background: transparent;
        border: 1px solid var(--orange);
        color: var(--orange-2);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 7px 14px;
        border-radius: 999px;
        cursor: pointer;
        white-space: nowrap;
        flex-shrink: 0;
      }
      .request-song-btn-action:hover { background: var(--orange); color: #0a0a0a; }
      .request-song-btn-action:disabled { opacity: 0.5; cursor: default; }
      .request-song-btn-action.done {
        background: var(--orange);
        color: #0a0a0a;
        border-color: var(--orange);
      }

      .request-panel-foot {
        margin-top: 14px;
        font-size: 11px;
        color: var(--muted-2);
        letter-spacing: 0.03em;
      }

      .request-loader,
      .request-empty {
        text-align: center;
        padding: 18px;
        color: var(--muted-2);
        font-size: 13px;
      }

      .request-error {
        text-align: center;
        padding: 16px;
        color: var(--danger);
        font-size: 12px;
        line-height: 1.5;
      }

      .request-more-hint {
        text-align: center;
        padding: 10px 8px 4px;
        color: var(--muted-2);
        font-size: 11px;
        font-style: italic;
      }

      .request-toast {
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: #0d0b09;
        border: 1px solid var(--orange);
        color: var(--white);
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 13px;
        opacity: 0;
        transition: all 0.25s ease;
        pointer-events: none;
        box-shadow: var(--shadow);
        max-width: 90%;
        text-align: center;
        z-index: 900;
      }
      .request-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
      .request-toast.error { border-color: var(--danger); }

      @media (max-width: 640px) {
        .request-song-list { max-height: 380px; }
        .request-song-title { font-size: 13px; }
      }
