    :root {
      --bg-main: #050509;
      --bg-card: #07060a;

      --accent: #dc143c;
      /* crimson */
      --danger: #ff1744;
      /* rojo fuerte */

      --accent-soft: #7f00ff;
      /* violeta para toques mínimos */
      --violet-glow: rgba(127, 0, 255, 0.3);

      --text-main: #f5f5f5;
      --text-muted: #787c9c;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --glow: 0 0 20px rgba(220, 20, 60, 0.7);
    }

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

    body {
      font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at 10% 0%, #14000a 0, #050509 40%, #000 100%);
      color: var(--text-main);
      min-height: 100vh;
      overflow: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      mix-blend-mode: soft-light;
      z-index: 0;
    }

    body::before {
      background-image: url("https://grainy-gradients.vercel.app/noise.svg");
      opacity: 0.25;
    }

    body::after {
      background: repeating-linear-gradient(to bottom,
          rgba(255, 255, 255, 0.08) 0,
          rgba(255, 255, 255, 0.08) 1px,
          transparent 2px,
          transparent 3px);
      opacity: 0.08;
    }

    .app {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 70px 1fr;
      height: 100vh;
      backdrop-filter: blur(20px);
    }

    /* Sidebar */
    .sidebar {
      background: linear-gradient(to bottom, #050509, #19000a);
      border-right: 1px solid var(--border-subtle);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 10px;
      gap: 30px;
    }

    .logo-stack {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-main {
      font-family: "Unica One", system-ui;
      letter-spacing: 0.4em;
      font-size: 18px;
      text-transform: uppercase;
      color: var(--text-main);
      text-shadow: 0 0 12px rgba(255, 0, 120, 0.7);
      position: relative;
    }

    .logo-main::after {
      content: "VESÁNICO";
      position: absolute;
      inset: 0;
      mix-blend-mode: screen;
      transform: translateX(2px);
      color: var(--danger);
      opacity: 0.7;
      clip-path: inset(0 0 40% 0);
    }

    .nav {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 40px;
    }

    .nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: radial-gradient(circle at 30% 0, #1a0a12, #3b003f 70%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, background 0.2s;
      box-shadow:
        6px 6px 14px rgba(0, 0, 0, 0.9),
        -4px -4px 10px rgba(255, 255, 255, 0.03);
    }

    .nav-btn i {
      font-size: 15px;
      color: var(--text-muted);
    }

    .nav-btn:hover {
      transform: translateY(-2px) scale(1.02);
      border-color: var(--accent);
      box-shadow: 0 0 12px rgba(220, 20, 60, 0.6);
    }

    .nav-btn.active {
      border-color: #ff1744;
      box-shadow:
        0 0 12px rgba(255, 23, 68, 0.9),
        0 0 20px rgba(127, 0, 255, 0.5);
    }

    .nav-footer {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
    }

    .nav-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: radial-gradient(circle, #00ff95, #007a43);
      box-shadow: 0 0 18px rgba(0, 255, 149, 0.9);
    }

    .status-label {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 10px;
    }

    /* Main */
    .main {
      display: grid;
      grid-template-rows: auto 1fr auto;
      padding: 18px 22px;
      gap: 12px;
      overflow-y: auto;
      height: 100vh;
    }

    .topbar {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .tagline {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.23em;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tagline span {
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid var(--border-subtle);
      background: rgba(0, 0, 0, 0.4);
    }

    .tagline .pill-live {
      border-color: rgba(255, 23, 68, 0.8);
      color: #ff8a9b;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pill-live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: radial-gradient(circle, #ff1744, #800021);
      box-shadow: 0 0 10px rgba(255, 23, 68, 0.9);
    }

    .topbar-spacer {
      flex: 1;
    }

    .sys-info {
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .sys-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-align: right;
    }

    .sys-label {
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 9px;
    }

    .sys-value {
      font-size: 11px;
    }

    .socials {
      display: flex;
      gap: 14px;
    }

    .socials a {
      font-size: 15px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .socials a:hover {
      color: var(--accent);
      transform: translateY(-1px);
    }

    .grid-main {
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
      gap: 18px;
      height: 100%;
      min-height: 0;
    }

    .card {
      border-radius: 18px;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 16px 18px;
      position: relative;
      overflow: hidden;
      box-shadow:
        14px 14px 28px rgba(0, 0, 0, 0.9),
        -8px -8px 20px rgba(255, 255, 255, 0.02);
    }

    .card::before {
      display: none;
    }

    .card-inner {
      position: relative;
      z-index: 1;
    }

    .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .card-title {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: rgba(245, 245, 245, 0.7);
    }

    .badge {
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .player-layout {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
    }

    .cover-wrapper {
      position: relative;
      border-radius: 20px;
      padding: 6px;
      background: #05040a;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        10px 10px 24px rgba(0, 0, 0, 0.9),
        -6px -6px 18px rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    .cover {
      border-radius: 16px;
      background: #121018;
      height: 220px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cover::after {
      content: "VESÁNICO";
      position: absolute;
      inset: 0;
      mix-blend-mode: screen;
      font-family: "Unica One", system-ui;
      font-size: 34px;
      letter-spacing: 0.4em;
      text-align: center;
      padding-top: 80px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.13);
      text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    }

    .cover-glitch {
      position: absolute;
      inset: 0;
      mix-blend-mode: screen;
      opacity: 0.18;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent 4%) 0 0 / 8px 100% repeat-x;
      clip-path: inset(5% 0 65% 0);
      transform: translateX(-2px);
    }

    .cover-label {
      position: absolute;
      bottom: 12px;
      left: 16px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.23em;
      color: rgba(255, 255, 255, 0.7);
      background: rgba(0, 0, 0, 0.8);
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
    }

    .track-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 12px;
    }

    .track-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .track-tag i {
      font-size: 9px;
    }

    .track-title {
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      line-height: 1.2;
    }

    .track-artist {
      font-size: 14px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .track-meta {
      display: flex;
      gap: 14px;
      margin-top: 8px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .track-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .track-meta i {
      font-size: 10px;
    }

    .controls-row {
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .controls-main {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-round {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      cursor: pointer;
      background: radial-gradient(circle at 30% 0, #ff1744, #7f00ff 60%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        8px 8px 18px rgba(0, 0, 0, 0.9),
        -4px -4px 12px rgba(255, 255, 255, 0.03),
        0 0 0 1px rgba(255, 23, 68, 0.35);
      transition: transform 0.12s ease, box-shadow 0.12s ease;
    }

    .btn-round i {
      color: #fff;
      font-size: 18px;
      margin-left: 2px;
    }

    .btn-round:hover {
      transform: scale(1.05);
      box-shadow:
        10px 10px 22px rgba(0, 0, 0, 0.95),
        -5px -5px 14px rgba(255, 255, 255, 0.04),
        0 0 14px rgba(255, 23, 68, 0.8);
    }

    .btn-round:active {
      transform: scale(0.96);
      box-shadow:
        6px 6px 14px rgba(0, 0, 0, 0.9),
        -3px -3px 10px rgba(255, 255, 255, 0.02);
    }

    .secondary-controls {
      display: flex;
      gap: 10px;
      font-size: 12px;
    }

    .secondary-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.5);
      cursor: pointer;
      color: var(--text-muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      transition: border 0.12s ease, color 0.12s ease, background 0.12s ease;
    }

    .secondary-btn i {
      font-size: 10px;
    }

    .secondary-btn:hover {
      border-color: var(--accent);
      color: var(--text-main);
      background: rgba(40, 0, 10, 0.9);
    }

    .volume-wrapper {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
      font-size: 12px;
      color: var(--text-muted);
    }

    #volume-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 110px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      outline: none;
      cursor: pointer;
      position: relative;
    }

    #volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 0, #ff1744, #3b003f);
      box-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
      border: none;
      margin-top: -5px;
    }

    #volume-slider::-moz-range-thumb {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 0, #ff1744, #3b003f);
      box-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
      border: none;
    }

    .progress {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .progress-bar {
      flex: 1;
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .progress-fill {
      position: absolute;
      inset: 0;
      width: 0%;
      background: linear-gradient(90deg, #ff1744, #ff607f);
      box-shadow: 0 0 10px rgba(255, 23, 68, 0.7);
      transition: width 0.1s linear;
    }

    .time-label {
      min-width: 42px;
      text-align: right;
    }

    .playlist-mini {
      margin-top: 6px;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .tag-chip {
      font-size: 10px;
      border-radius: 99px;
      padding: 3px 9px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      background: #06040c;
    }

    /* LETRAS */
    .lyrics-section {
      margin-top: 16px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      max-height: 160px;
      overflow-y: auto;
    }

    /* Scrollbar personalizada para letras */
    .lyrics-section::-webkit-scrollbar {
      width: 6px;
    }

    .lyrics-section::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 999px;
    }

    .lyrics-section::-webkit-scrollbar-thumb {
      background: rgba(220, 20, 60, 0.5);
      border-radius: 999px;
      transition: background 0.2s ease;
    }

    .lyrics-section::-webkit-scrollbar-thumb:hover {
      background: rgba(220, 20, 60, 0.8);
    }

    /* Firefox */
    .lyrics-section {
      scrollbar-width: thin;
      scrollbar-color: rgba(220, 20, 60, 0.5) rgba(0, 0, 0, 0.3);
    }

    .lyrics-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }

    .lyrics-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lyrics-retry-btn {
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 12px;
      padding: 4px;
      border-radius: 50%;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lyrics-retry-btn:hover {
      color: var(--accent);
      background: rgba(220, 20, 60, 0.1);
      transform: rotate(180deg);
    }

    .lyrics-title {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-muted);
    }

    .lyrics-source {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(120, 124, 156, 0.8);
    }

    .lyrics-body {
      font-size: 12px;
      line-height: 1.5;
      color: rgba(245, 245, 245, 0.82);
      white-space: pre-line;
    }

    .lyrics-body p {
      margin-bottom: 4px;
    }

    /* Lado derecho */
    .stack {
      display: flex;
      flex-direction: column;
      gap: 14px;
      height: 100%;
    }

    .madness {
      display: grid;
      grid-template-columns: 140px minmax(0, 1fr);
      gap: 16px;
      align-items: center;
    }

    .meter {
      height: 220px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: #08060f;
      padding: 10px 10px 12px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow:
        10px 10px 24px rgba(0, 0, 0, 0.9),
        -6px -6px 18px rgba(255, 255, 255, 0.02);
    }

    .meter-bars {
      flex: 1;
      display: flex;
      align-items: flex-end;
      gap: 4px;
    }

    .bar {
      flex: 1;
      border-radius: 999px 999px 2px 2px;
      background: linear-gradient(to top, #ff1744, #ff607f);
      transform-origin: bottom;
      transform: scaleY(0.1);
      filter: drop-shadow(0 0 6px rgba(255, 96, 127, 0.6));
    }

    .meter-labels {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(200, 200, 220, 0.8);
    }

    .meter-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: radial-gradient(circle, #ffeb3b, #ff9800);
      box-shadow: 0 0 10px rgba(255, 193, 7, 0.9);
    }

    .meter-value {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .status-dead {
      color: #7f4bff;
    }

    .status-unstable {
      color: #ffeb3b;
    }

    .status-vesanico {
      color: #ff1744;
    }

    .madness-copy {
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .madness-title {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.23em;
      color: var(--text-main);
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .pill {
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px dashed rgba(255, 255, 255, 0.1);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      background: #06040c;
    }

    .pill-danger {
      border-style: solid;
      border-color: rgba(255, 23, 68, 0.8);
      color: #ff8a9b;
    }

    .schedule-list {
      margin-top: 4px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 12px;
    }

    .schedule-item {
      display: grid;
      grid-template-columns: 70px minmax(0, 1fr) auto;
      gap: 8px;
      align-items: center;
      padding: 6px 8px;
      border-radius: 10px;
      background: #06040c;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .schedule-time {
      font-family: "Unica One", system-ui;
      letter-spacing: 0.1em;
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .schedule-main {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .schedule-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .schedule-meta {
      font-size: 11px;
      color: var(--text-muted);
    }

    .schedule-badge {
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent);
    }

    .bottom {
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: #08060f;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      overflow: hidden;
      box-shadow:
        10px 10px 24px rgba(0, 0, 0, 0.9),
        -6px -6px 18px rgba(255, 255, 255, 0.02);
    }

    .bottom-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .bottom-label i {
      font-size: 9px;
    }

    .marquee {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .marquee-track {
      display: inline-flex;
      gap: 30px;
      white-space: nowrap;
      font-size: 12px;
      color: var(--text-muted);
      animation: ticker 22s linear infinite;
    }

    .marquee-item {
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .marquee-tag {
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      margin-left: 8px;
      color: var(--accent);
    }

    .bottom-cta {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .bottom-cta i {
      font-size: 10px;
    }

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

      to {
        transform: translateX(-50%);
      }
    }

    .glitch-title {
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      font-family: "Unica One", system-ui;
      font-size: 12px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.14);
      pointer-events: none;
      white-space: nowrap;
    }

    .glitch-title span {
      position: relative;
      display: inline-block;
    }

    .glitch-title span::before,
    .glitch-title span::after {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      mix-blend-mode: screen;
      clip-path: inset(0 0 50% 0);
      opacity: 0.65;
    }

    .glitch-title span::before {
      transform: translate(1px, -1px);
      color: #ff1744;
    }

    .glitch-title span::after {
      transform: translate(-1px, 1px);
      color: #4b0050;
      clip-path: inset(50% 0 0 0);
    }

    .glitch-title.glitch-active span {
      animation: glitchShake 0.15s steps(2, end) infinite;
    }

    @keyframes glitchShake {
      0% {
        transform: translate(0, 0);
      }

      20% {
        transform: translate(-1px, 1px);
      }

      40% {
        transform: translate(2px, -2px);
      }

      60% {
        transform: translate(-2px, -1px);
      }

      80% {
        transform: translate(1px, 2px);
      }

      100% {
        transform: translate(0, 0);
      }
    }

    @media (max-width: 960px) {
      body {
        overflow-y: auto;
        height: auto;
      }

      .app {
        grid-template-columns: 1fr;
        height: auto;
      }

      .sidebar {
        flex-direction: row;
        height: 60px;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        justify-content: space-between;
      }

      .logo-stack {
        writing-mode: horizontal-tb;
        order: 1;
      }

      .nav {
        flex-direction: row;
        margin-top: 0;
        order: 2;
      }

      .nav-footer {
        display: none;
      }

      .main {
        padding: 14px;
      }

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

      .player-layout {
        grid-template-columns: 1fr;
      }

      .cover {
        height: 190px;
      }

      .meter {
        height: 160px;
      }

      .bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .glitch-title {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .track-title {
        font-size: 20px;
      }

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

      .volume-wrapper {
        margin-left: 0;
      }
    }

    /* ========================================
   SISTEMA DE NAVEGACIÓN MULTI-SECCIÓN
======================================== */

    .section {
      display: none;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .section-active {
      display: block;
      animation: fadeIn 0.4s ease forwards;
    }

    .section-hidden {
      display: none;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ========================================
   MINI REPRODUCTOR PERSISTENTE
======================================== */

    .mini-player {
      position: fixed;
      top: 0;
      left: 70px;
      right: 0;
      height: 65px;
      background: rgba(7, 6, 10, 0.98);
      backdrop-filter: blur(30px);
      border-bottom: 1px solid var(--border-subtle);
      display: none;
      align-items: center;
      padding: 0 24px;
      gap: 24px;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    }

    .mini-player.active {
      display: flex;
    }

    .mini-player-track {
      display: flex;
      align-items: center;
      gap: 14px;
      flex: 1;
      min-width: 0;
    }

    .mini-player-cover {
      width: 45px;
      height: 45px;
      border-radius: 8px;
      background: #121018;
      border: 1px solid rgba(255, 255, 255, 0.08);
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
    }

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

    .mini-player-title {
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-player-artist {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-player-controls {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .mini-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: radial-gradient(circle at 30% 0, #ff1744, #7f00ff 60%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 0 12px rgba(255, 23, 68, 0.6);
    }

    .mini-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 0 18px rgba(255, 23, 68, 0.9);
    }

    .mini-btn i {
      color: #fff;
      font-size: 14px;
    }

    .mini-volume {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
    }

    .mini-volume i {
      font-size: 13px;
    }

    #mini-volume-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 90px;
      height: 3px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      outline: none;
      cursor: pointer;
    }

    #mini-volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 0, #ff1744, #3b003f);
      box-shadow: 0 0 8px rgba(220, 20, 60, 0.7);
    }

    #mini-volume-slider::-moz-range-thumb {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 0, #ff1744, #3b003f);
      box-shadow: 0 0 8px rgba(220, 20, 60, 0.7);
      border: none;
    }

    .mini-back-to-live {
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.5);
      color: var(--text-muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .mini-back-to-live:hover {
      border-color: var(--accent);
      color: var(--text-main);
      background: rgba(40, 0, 10, 0.9);
    }

    .mini-back-to-live i {
      font-size: 10px;
      margin-right: 4px;
    }

    /* Ajustes cuando mini-player está activo */
    .mini-player.active~.main {
      padding-top: 80px;
    }

    /* ========================================
   SECCIONES COMUNES
======================================== */

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

    .section-title {
      font-family: "Unica One", system-ui;
      font-size: 48px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--text-main);
      margin-bottom: 8px;
      text-shadow: 0 0 20px rgba(255, 23, 68, 0.5);
    }

    .glitch-text {
      position: relative;
      display: inline-block;
    }

    .glitch-text::before,
    .glitch-text::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0.8;
    }

    .glitch-text::before {
      animation: glitch1 2.5s infinite;
      color: var(--accent);
      z-index: -1;
    }

    .glitch-text::after {
      animation: glitch2 2.5s infinite;
      color: var(--accent-soft);
      z-index: -2;
    }

    @keyframes glitch1 {

      0%,
      100% {
        transform: translate(0);
      }

      33% {
        transform: translate(-2px, 2px);
      }

      66% {
        transform: translate(2px, -2px);
      }
    }

    @keyframes glitch2 {

      0%,
      100% {
        transform: translate(0);
      }

      33% {
        transform: translate(2px, -2px);
      }

      66% {
        transform: translate(-2px, 2px);
      }
    }

    .section-subtitle {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-muted);
    }

    /* ========================================
   SECCIÓN PROGRAMACIÓN - TABS
======================================== */

    .tabs {
      display: flex;
      gap: 12px;
      margin-top: 16px;
    }

    .tab {
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.4);
      color: var(--text-muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tab:hover {
      border-color: var(--accent);
      color: var(--text-main);
    }

    .tab-active {
      border-color: var(--accent);
      background: rgba(220, 20, 60, 0.15);
      color: var(--accent);
      box-shadow: 0 0 12px rgba(220, 20, 60, 0.3);
    }

    .tab-content {
      display: block;
      margin-top: 24px;
    }

    .tab-content.hidden {
      display: none;
    }

    /* ========================================
   POST CARDS (Programación)
======================================== */

    .posts-grid {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-height: calc(100vh - 280px);
      overflow-y: auto;
      padding-right: 8px;
    }

    .posts-grid::-webkit-scrollbar {
      width: 6px;
    }

    .posts-grid::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 999px;
    }

    .posts-grid::-webkit-scrollbar-thumb {
      background: rgba(255, 23, 68, 0.5);
      border-radius: 999px;
    }

    .post-card {
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 18px;
      padding: 16px;
      transition: all 0.3s ease;
      cursor: default;
    }

    .post-card:hover {
      border-color: var(--accent);
      box-shadow: 0 4px 20px rgba(220, 20, 60, 0.2);
      transform: translateY(-2px);
    }

    .post-image {
      border-radius: 10px;
      background: linear-gradient(135deg, #7f00ff, #ff1744);
      min-height: 140px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .post-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          rgba(255, 255, 255, 0.03) 0px,
          transparent 2px,
          transparent 4px);
    }

    .post-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .post-meta {
      display: flex;
      gap: 14px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .post-meta i {
      font-size: 9px;
      margin-right: 4px;
    }

    .post-date,
    .post-time {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .post-title {
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1.3;
      color: var(--text-main);
      margin: 0;
    }

    .post-description {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(245, 245, 245, 0.7);
      margin: 0;
    }

    .post-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-top: auto;
    }

    .tag {
      font-size: 9px;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      background: #06040c;
    }

    /* ========================================
   SECCIÓN PODCAST - GALERÍA
======================================== */

    .podcast-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 22px;
      max-height: calc(100vh - 280px);
      overflow-y: auto;
      padding-right: 8px;
    }

    .podcast-card {
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .podcast-card:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
      box-shadow: 0 8px 30px rgba(220, 20, 60, 0.3);
    }

    .podcast-cover {
      height: 280px;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      position: relative;
      overflow: hidden;
    }

    .podcast-cover::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          rgba(255, 255, 255, 0.02) 0px,
          transparent 2px,
          transparent 4px);
    }

    .podcast-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .podcast-card:hover .podcast-overlay {
      opacity: 1;
    }

    .podcast-play-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      background: rgba(220, 20, 60, 0.2);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .podcast-play-btn:hover {
      background: var(--accent);
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    }

    .podcast-play-btn i {
      color: #fff;
      font-size: 22px;
      margin-left: 3px;
    }

    .podcast-info {
      padding: 18px;
    }

    .podcast-title {
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-main);
      margin: 0 0 8px 0;
    }

    .podcast-description {
      font-size: 12px;
      line-height: 1.5;
      color: var(--text-muted);
      margin: 0 0 12px 0;
    }

    .podcast-meta {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(120, 124, 156, 0.8);
    }

    .podcast-meta i {
      font-size: 9px;
      margin-right: 4px;
    }

    /* ========================================
   PODCAST - VISTA DETALLE
======================================== */

    .podcast-detail {
      display: block;
    }

    .podcast-detail.hidden {
      display: none;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.5);
      color: var(--text-muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-bottom: 24px;
    }

    .back-btn:hover {
      border-color: var(--accent);
      color: var(--text-main);
      background: rgba(40, 0, 10, 0.9);
    }

    .back-btn i {
      font-size: 10px;
    }

    .podcast-detail-header {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 24px;
      margin-bottom: 32px;
      padding: 24px;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
    }

    .podcast-detail-cover {
      border-radius: 14px;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      height: 220px;
      position: relative;
      overflow: hidden;
    }

    .podcast-detail-info h2 {
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-main);
      margin: 0 0 12px 0;
    }

    .podcast-detail-info p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--text-muted);
      margin: 0 0 16px 0;
    }

    .podcast-detail-meta {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(120, 124, 156, 0.8);
    }

    .podcast-detail-meta i {
      margin-right: 6px;
    }

    /* ========================================
   LISTA DE EPISODIOS
======================================== */

    .episode-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-height: calc(100vh - 500px);
      overflow-y: auto;
      padding-right: 8px;
    }

    .episode-item {
      display: grid;
      grid-template-columns: 50px 1fr 60px 50px;
      gap: 16px;
      align-items: center;
      padding: 14px 18px;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .episode-item:hover {
      border-color: var(--accent);
      box-shadow: 0 4px 16px rgba(220, 20, 60, 0.15);
      transform: translateX(4px);
    }

    .episode-number {
      font-family: "Unica One", system-ui;
      font-size: 20px;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-align: center;
    }

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

    .episode-title {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-main);
      margin: 0 0 4px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .episode-date {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
      margin: 0;
    }

    .episode-duration {
      font-size: 11px;
      color: var(--text-muted);
      font-family: "Unica One", system-ui;
      letter-spacing: 0.08em;
    }

    .episode-play-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: radial-gradient(circle at 30% 0, #ff1744, #7f00ff 60%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 0 8px rgba(255, 23, 68, 0.5);
    }

    .episode-play-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 16px rgba(255, 23, 68, 0.8);
    }

    .episode-play-btn i {
      color: #fff;
      font-size: 12px;
      margin-left: 2px;
    }

    /* ========================================
   SECCIÓN ACERCA DE
======================================== */

    .about-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }

    .about-statement h2,
    .about-contact h3,
    .about-socials h3 {
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-main);
      margin: 0 0 14px 0;
    }

    .about-statement p {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(245, 245, 245, 0.8);
      margin: 0 0 16px 0;
    }

    .about-statement p:last-child {
      margin: 0;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--accent);
      font-weight: 500;
    }

    .about-contact p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--text-muted);
      margin: 0 0 16px 0;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid var(--accent);
      background: rgba(220, 20, 60, 0.1);
      color: var(--accent);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .contact-btn:hover {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
      transform: translateY(-2px);
    }

    .contact-btn i {
      font-size: 14px;
    }

    .social-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(0, 0, 0, 0.3);
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      transition: all 0.2s ease;
    }

    .social-link:hover {
      border-color: var(--accent);
      background: rgba(220, 20, 60, 0.05);
      color: var(--text-main);
      transform: translateX(4px);
    }

    .social-link i {
      font-size: 18px;
      width: 24px;
      text-align: center;
    }

    /* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */

    @media (max-width: 1200px) {
      .podcast-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      }

      .post-card {
        grid-template-columns: 140px 1fr;
      }
    }

    @media (max-width: 768px) {

      /* Mini-player en la parte inferior en móvil */
      .mini-player {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
        gap: 12px;
        z-index: 1000;
        background: rgba(5, 5, 9, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .mini-player-track {
        flex: 1;
        min-width: 200px;
      }

      .mini-player-controls {
        flex-shrink: 0;
      }

      .mini-back-to-live {
        width: 100%;
        order: 3;
        text-align: center;
        padding: 10px;
      }

      /* Ajustar contenido para no quedar debajo del mini-player */
      .mini-player.active~.main {
        padding-bottom: 90px;
      }

      .section-title {
        font-size: 28px;
        letter-spacing: 0.15em;
      }

      .podcast-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      /* Tarjetas con imagen miniatura a la izquierda */
      .post-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 12px;
        padding: 12px;
        overflow: hidden;
      }

      .post-image {
        width: 100px;
        height: 100px;
        min-height: 100px;
        max-height: 100px;
        border-radius: 8px;
        flex-shrink: 0;
      }

      .post-content {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 0;
      }

      .post-title {
        font-size: 13px;
        line-height: 1.3;
        margin: 0;
      }

      .post-description {
        font-size: 11px;
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .post-meta {
        font-size: 9px;
        gap: 8px;
      }

      .post-tags {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
      }

      .tag {
        font-size: 8px;
        padding: 2px 6px;
      }
    }

    .podcast-detail-header {
      grid-template-columns: 1fr;
    }

    .episode-item {
      grid-template-columns: 40px 1fr 50px;
    }

    .episode-duration {
      display: none;
    }

    /* Tabs más compactos */
    .tabs {
      gap: 8px;
    }

    .tab {
      padding: 8px 14px;
      font-size: 10px;
    }
    }

    /* ========================================
   PARRILLA DE PROGRAMACIÓN
======================================== */

    .schedule-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-height: calc(100vh - 280px);
      overflow-y: auto;
      padding-right: 8px;
    }

    .schedule-slot {
      display: grid;
      grid-template-columns: 140px 1fr 140px;
      gap: 16px;
      align-items: center;
      padding: 16px 20px;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .schedule-slot:hover {
      border-color: rgba(255, 255, 255, 0.12);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
      transform: translateX(2px);
    }

    .schedule-slot.special-program {
      background: rgba(127, 0, 255, 0.03);
      border-color: rgba(127, 0, 255, 0.2);
    }

    .schedule-slot.special-event {
      background: rgba(220, 20, 60, 0.05);
      border-color: rgba(220, 20, 60, 0.3);
      box-shadow: 0 0 20px rgba(220, 20, 60, 0.1);
    }

    .schedule-slot.special-event:hover {
      border-color: var(--accent);
      box-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
      transform: translateX(4px);
    }

    .schedule-time {
      font-family: "Unica One", system-ui;
      font-size: 15px;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-align: center;
      padding: 8px 12px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .schedule-program h4 {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-main);
      margin: 0 0 6px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .schedule-program p {
      font-size: 12px;
      line-height: 1.5;
      color: var(--text-muted);
      margin: 0 0 6px 0;
    }

    .schedule-host {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(120, 124, 156, 0.7);
      font-style: italic;
    }

    .schedule-genre {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(120, 124, 156, 0.8);
      text-align: center;
      padding: 6px 12px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .special-badge {
      font-size: 9px;
      padding: 3px 8px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      letter-spacing: 0.12em;
      animation: pulse-glow 2s ease-in-out infinite;
    }

    @keyframes pulse-glow {

      0%,
      100% {
        box-shadow: 0 0 8px rgba(220, 20, 60, 0.6);
      }

      50% {
        box-shadow: 0 0 16px rgba(220, 20, 60, 0.9);
      }
    }

    .schedule-note {
      margin-top: 20px;
      padding: 14px 18px;
      background: rgba(127, 0, 255, 0.05);
      border: 1px dashed rgba(127, 0, 255, 0.3);
      border-radius: 10px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 11px;
      line-height: 1.6;
      color: rgba(200, 200, 220, 0.9);
    }

    .schedule-note i {
      font-size: 14px;
      color: var(--accent-soft);
      margin-top: 2px;
    }

    .schedule-note p {
      margin: 0;
    }

    /* Responsive para parrilla */
    @media (max-width: 1024px) {
      .schedule-slot {
        grid-template-columns: 120px 1fr;
        gap: 12px;
      }

      .schedule-genre {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .schedule-slot {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .schedule-time {
        text-align: left;
        width: fit-content;
      }
    }

    /* ========================================
   MODAL DE ARTÍCULOS/EVENTOS
======================================== */

    .article-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      overflow-y: auto;
    }

    .article-modal.active {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    .article-modal-content {
      max-width: 800px;
      width: 100%;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
      animation: slideUp 0.4s ease;
      margin: auto;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .article-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.5);
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      font-size: 18px;
    }

    .article-modal-close:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(220, 20, 60, 0.1);
      transform: rotate(90deg);
    }

    .article-header {
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .article-category {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(220, 20, 60, 0.15);
      border: 1px solid rgba(220, 20, 60, 0.3);
      color: var(--accent);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 12px;
    }

    .article-title {
      font-size: 32px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1.2;
      color: var(--text-main);
      margin: 0 0 16px 0;
    }

    .article-meta {
      display: flex;
      gap: 20px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
    }

    .article-meta i {
      margin-right: 6px;
      font-size: 10px;
    }

    .article-image {
      width: 100%;
      height: 300px;
      border-radius: 16px;
      background: linear-gradient(135deg, #7f00ff, #ff1744);
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .article-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          rgba(255, 255, 255, 0.02) 0px,
          transparent 2px,
          transparent 4px);
    }

    .article-body {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(245, 245, 245, 0.85);
    }

    .article-body p {
      margin: 0 0 20px 0;
    }

    .article-body h3 {
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-main);
      margin: 30px 0 16px 0;
    }

    .article-body ul {
      margin: 0 0 20px 0;
      padding-left: 20px;
    }

    .article-body li {
      margin-bottom: 10px;
      color: rgba(245, 245, 245, 0.8);
    }

    .article-body strong {
      color: var(--accent);
    }

    .article-footer {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .article-tag {
      font-size: 10px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      background: #06040c;
    }

    /* Hacer las tarjetas clickeables */
    .post-card {
      cursor: pointer;
    }

    /* Enlaces en programación especial */
    .schedule-slot.special-event {
      cursor: pointer;
    }

    .schedule-slot.special-event:hover h4 {
      color: var(--accent);
    }

    /* Responsive modal */
    @media (max-width: 768px) {
      .article-modal {
        padding: 20px 10px;
      }

      .article-modal-content {
        padding: 30px 24px;
      }

      .article-title {
        font-size: 24px;
      }

      .article-image {
        height: 200px;
      }

      .article-body {
        font-size: 14px;
      }
    }