/* ================================================================
   REMEMBER RADIO — STYLESHEET v1.0
   Cyberpunk / Retro-futurista
   ================================================================
   Paleta:
   --rr-black: #0A0A0A   (fondo principal)
   --rr-magenta: #FF2D95 (color firma)
   --rr-cyan: #00E5FF    (acentos)
   --rr-violet: #6D4EEC  (transiciones)
   --rr-white: #F5F5F0   (texto principal)
   ================================================================ */

:root {
  --rr-black: #0A0A0A;
  --rr-black-deep: #000000;
  --rr-magenta: #FF2D95;
  --rr-magenta-soft: rgba(255, 45, 149, 0.4);
  --rr-magenta-glow: rgba(255, 45, 149, 0.6);
  --rr-cyan: #00E5FF;
  --rr-cyan-soft: rgba(0, 229, 255, 0.4);
  --rr-cyan-glow: rgba(0, 229, 255, 0.6);
  --rr-violet: #6D4EEC;
  --rr-white: #F5F5F0;
  --rr-white-dim: rgba(245, 245, 240, 0.6);
  --rr-white-faint: rgba(245, 245, 240, 0.4);

  --rr-font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --rr-font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --rr-font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --rr-max-width: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--rr-black-deep);
  color: var(--rr-white);
  font-family: var(--rr-font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 90px; /* espacio para el player sticky */
  position: relative;
}

/* ---------- TEXTURAS GLOBALES (body::before/::after) ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 45, 149, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 3px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 2;
  animation: rr-scanlines 8s linear infinite;
}

/* El contenido va por encima de las texturas */
.rr-header,
.rr-hero,
.rr-countdown,
.rr-sessions,
.rr-events,
.rr-footer-cta,
.rr-player {
  position: relative;
  z-index: 10;
}

/* ---------- UTILITIES ---------- */
.rr-mono { font-family: var(--rr-font-mono); font-weight: 500; }
.rr-small { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.rr-text-magenta { color: var(--rr-magenta); }
.rr-text-cyan { color: var(--rr-cyan); }
.rr-sep { color: var(--rr-white-dim); }

/* ================================================================
   HEADER
   ================================================================ */
.rr-header {
  padding: 20px 32px;
  border-bottom: 1px solid var(--rr-magenta-soft);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.rr-header__inner {
  max-width: var(--rr-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rr-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--rr-cyan);
}
.rr-logo__dot {
  width: 10px;
  height: 10px;
  background: var(--rr-magenta);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--rr-magenta), 0 0 24px var(--rr-magenta);
  animation: rr-heartbeat 1.2s infinite;
}
.rr-logo__text {
  font-family: var(--rr-font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.rr-logo__underscore { color: var(--rr-magenta); }
.rr-logo__version { color: var(--rr-white-faint); }
.rr-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.rr-nav__link {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--rr-white-dim);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.rr-nav__link:hover { color: var(--rr-white); }
.rr-nav__link--active {
  color: var(--rr-magenta);
}
.rr-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--rr-magenta);
  box-shadow: 0 0 8px var(--rr-magenta);
}

/* ================================================================
   HERO
   ================================================================ */
.rr-hero {
  padding: 100px 32px 80px;
  overflow: hidden;
  min-height: 620px;
}
.rr-hero__inner {
  max-width: var(--rr-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Orbes de luz animados */
.rr-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 3;
}
.rr-orb--1 {
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.45) 0%, transparent 65%);
  animation: rr-float1 8s ease-in-out infinite;
}
.rr-orb--2 {
  bottom: -10%; left: -10%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.35) 0%, transparent 65%);
  animation: rr-float2 10s ease-in-out infinite;
}
.rr-orb--3 {
  top: 40%; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(109, 78, 236, 0.4) 0%, transparent 65%);
  animation: rr-float3 12s ease-in-out infinite;
}

/* Líneas láser */
.rr-laser {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 4;
}
.rr-laser--1 {
  top: 30%;
  background: linear-gradient(90deg, transparent, var(--rr-magenta) 50%, transparent);
  animation: rr-laser 4s ease-in-out infinite;
}
.rr-laser--2 {
  top: 70%;
  background: linear-gradient(90deg, transparent, var(--rr-cyan) 50%, transparent);
  animation: rr-laser 4s ease-in-out infinite 2s;
}

/* Partículas */
.rr-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
}
.rr-particle--1 { top: 15%; right: 15%; width: 6px; height: 6px; background: var(--rr-magenta); box-shadow: 0 0 15px var(--rr-magenta); animation: rr-twinkle 3s infinite; }
.rr-particle--2 { top: 65%; right: 25%; width: 4px; height: 4px; background: var(--rr-cyan); box-shadow: 0 0 12px var(--rr-cyan); animation: rr-twinkle 2s infinite 1s; }
.rr-particle--3 { top: 25%; left: 20%; width: 5px; height: 5px; background: #FFFFFF; box-shadow: 0 0 10px #FFFFFF; animation: rr-twinkle 4s infinite 0.5s; }
.rr-particle--4 { top: 55%; left: 55%; width: 4px; height: 4px; background: var(--rr-magenta); box-shadow: 0 0 12px var(--rr-magenta); animation: rr-twinkle 3.5s infinite 1.5s; }

/* HUD de coordenadas */
.rr-hud {
  position: absolute;
  top: 40px; right: 32px;
  font-family: var(--rr-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(0, 229, 255, 0.5);
  text-align: right;
  line-height: 1.8;
  z-index: 9;
}

/* Badge de directo */
.rr-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 45, 149, 0.12);
  border: 1px solid var(--rr-magenta);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--rr-magenta);
  margin-bottom: 32px;
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.4), inset 0 0 20px rgba(255, 45, 149, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 700;
  font-family: var(--rr-font-mono);
  text-transform: uppercase;
}
.rr-live-badge__dot {
  width: 8px; height: 8px;
  background: var(--rr-magenta);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--rr-magenta), 0 0 24px var(--rr-magenta);
  animation: rr-pulse 1.2s infinite;
}
.rr-live-badge__listeners { color: var(--rr-cyan); }

/* Título principal */
.rr-hero__title {
  font-family: var(--rr-font-display);
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.85;
  letter-spacing: -5px;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}
.rr-hero__title-line1 {
  display: block;
  background: linear-gradient(180deg, #FFFFFF 20%, var(--rr-magenta) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 45, 149, 0.5));
}
.rr-hero__title-line2 {
  display: block;
  color: var(--rr-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.8), 0 0 40px rgba(0, 229, 255, 0.4);
  margin-top: -10px;
  position: relative;
}
.rr-hero__title-glitch {
  position: absolute;
  top: 2px; left: 2px;
  color: var(--rr-magenta);
  opacity: 0;
  mix-blend-mode: screen;
  animation: rr-glitch-shift 4s infinite;
}

/* Now playing */
.rr-now-playing-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 20px;
}
.rr-now-playing-label__line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rr-magenta), transparent);
}
.rr-now-playing-label .rr-small {
  color: var(--rr-white-dim);
}
.rr-now-playing {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(245, 245, 240, 0.9);
  max-width: 520px;
  margin: 0 0 48px;
  line-height: 1.4;
  font-weight: 300;
}
.rr-now-playing__dj {
  color: var(--rr-magenta);
  font-weight: 700;
}

/* CTAs */
.rr-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.rr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--rr-font-body);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s;
}
.rr-btn:active { transform: scale(0.97); }

.rr-btn--primary {
  background: var(--rr-magenta);
  color: var(--rr-black);
  padding: 22px 42px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  box-shadow: 0 0 40px rgba(255, 45, 149, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.15);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  animation: rr-button-glow 2s ease-in-out infinite;
}
.rr-btn--ghost {
  background: transparent;
  color: var(--rr-cyan);
  border: 1px solid var(--rr-cyan);
  padding: 21px 36px;
  font-size: 14px;
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.1);
}
.rr-btn--ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}
.rr-btn--small {
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 2px;
}
.rr-btn__icon {
  width: 0; height: 0;
  border-left: 10px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

/* Mini ecualizador */
.rr-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-left: 12px;
}
.rr-eq span {
  width: 3px;
  background: var(--rr-cyan);
  height: var(--h, 50%);
  animation: rr-eq var(--d, 0.5s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 0 6px var(--rr-cyan);
}
.rr-eq span:nth-child(4n+1) { background: var(--rr-magenta); box-shadow: 0 0 6px var(--rr-magenta); }
.rr-eq span:nth-child(3n+2) { background: var(--rr-magenta); box-shadow: 0 0 6px var(--rr-magenta); }

/* ================================================================
   COUNTDOWN
   ================================================================ */
.rr-countdown {
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.12) 0%, rgba(109, 78, 236, 0.08) 50%, rgba(0, 229, 255, 0.12) 100%);
  border-top: 1px solid var(--rr-magenta);
  border-bottom: 1px solid var(--rr-cyan);
  overflow: hidden;
}
.rr-countdown__sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: rr-sweep 5s linear infinite;
  pointer-events: none;
}
.rr-countdown__header,
.rr-countdown__body {
  max-width: var(--rr-max-width);
  margin: 0 auto;
  position: relative;
}
.rr-countdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.rr-countdown__label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rr-diamond {
  width: 8px; height: 8px;
  background: var(--rr-magenta);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--rr-magenta);
}
.rr-countdown__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.rr-countdown__title {
  font-family: var(--rr-font-display);
  font-size: clamp(28px, 4vw, 46px);
  margin: 0;
  letter-spacing: -1.5px;
  color: var(--rr-white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  line-height: 1;
}
.rr-countdown__title .rr-text-magenta {
  text-shadow: 0 0 20px rgba(255, 45, 149, 0.6);
}
.rr-countdown__timer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rr-timer-box {
  background: var(--rr-black);
  padding: 14px 18px;
  text-align: center;
  min-width: 68px;
  position: relative;
}
.rr-timer-box--magenta {
  border: 1px solid var(--rr-magenta);
  box-shadow: 0 0 15px rgba(255, 45, 149, 0.3), inset 0 0 15px rgba(255, 45, 149, 0.1);
}
.rr-timer-box--cyan {
  border: 1px solid var(--rr-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3), inset 0 0 15px rgba(0, 229, 255, 0.1);
}
.rr-timer-box__num {
  font-family: var(--rr-font-display);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}
.rr-timer-box--magenta .rr-timer-box__num {
  color: var(--rr-magenta);
  text-shadow: 0 0 10px rgba(255, 45, 149, 0.6);
}
.rr-timer-box--cyan .rr-timer-box__num {
  color: var(--rr-cyan);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}
.rr-timer-box__num--flicker {
  animation: rr-flicker 0.8s infinite;
}
.rr-timer-box__label {
  font-family: var(--rr-font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--rr-white-dim);
  margin-top: 6px;
}
.rr-timer-corner {
  position: absolute;
  width: 6px; height: 6px;
}
.rr-timer-corner--tl {
  top: -1px; left: -1px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.rr-timer-corner--br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.rr-timer-box--magenta .rr-timer-corner { color: var(--rr-magenta); }
.rr-timer-box--cyan .rr-timer-corner { color: var(--rr-cyan); }

/* ================================================================
   SESIONES
   ================================================================ */
.rr-sessions {
  padding: 80px 32px 40px;
  max-width: var(--rr-max-width);
  margin: 0 auto;
}
.rr-sessions__header,
.rr-events__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.rr-section-eyebrow {
  margin-bottom: 8px;
  font-weight: 700;
}
.rr-section-title {
  font-family: var(--rr-font-display);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  letter-spacing: -1.5px;
  color: var(--rr-white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.rr-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rr-font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--rr-cyan);
  padding: 8px 14px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.rr-view-all:hover {
  border-color: var(--rr-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}
.rr-arrow { animation: rr-arrow 1.5s ease-in-out infinite; }

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

/* Cards */
.rr-card {
  background: var(--rr-black);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.rr-card--magenta { border: 1px solid rgba(255, 45, 149, 0.4); animation: rr-card-glow-magenta 4s ease-in-out infinite; }
.rr-card--cyan { border: 1px solid rgba(0, 229, 255, 0.4); }
.rr-card--violet { border: 1px solid rgba(109, 78, 236, 0.5); }

.rr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 45, 149, 0.3);
}

.rr-card__cover {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.rr-card__cover--gradient1 {
  background: linear-gradient(135deg, var(--rr-magenta) 0%, var(--rr-violet) 100%);
}
.rr-card__cover--gradient2 {
  background: linear-gradient(135deg, var(--rr-cyan) 0%, var(--rr-magenta) 100%);
}
.rr-card__cover--gradient3 {
  background: linear-gradient(135deg, var(--rr-violet) 0%, var(--rr-cyan) 100%);
}
.rr-card__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.3) 0%, transparent 40%);
}
.rr-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--rr-font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-left: 2px solid var(--rr-cyan);
}
.rr-card--cyan .rr-card__tag { border-left-color: var(--rr-magenta); }
.rr-card--violet .rr-card__tag { border-left-color: var(--rr-magenta); }

.rr-card__duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--rr-black-deep);
  color: var(--rr-cyan);
  font-family: var(--rr-font-mono);
  font-size: 11px;
  padding: 5px 10px;
  letter-spacing: 1px;
  border: 1px solid var(--rr-cyan);
}
.rr-card__play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.3s;
}
.rr-card:hover .rr-card__play-overlay { transform: translate(-50%, -50%) scale(1.15); }
.rr-card__play-icon {
  width: 0; height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
.rr-card__body { padding: 18px; }
.rr-card__dj {
  color: var(--rr-magenta);
  margin-bottom: 8px;
  font-weight: 700;
}
.rr-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--rr-white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.rr-card__meta {
  display: flex;
  gap: 6px;
}

.rr-chip {
  font-size: 9px;
  font-family: var(--rr-font-mono);
  letter-spacing: 1px;
  color: var(--rr-white-dim);
  border: 1px solid rgba(245, 245, 240, 0.2);
  padding: 3px 8px;
  text-transform: uppercase;
}
.rr-chip--cyan {
  color: var(--rr-cyan);
  border-color: rgba(0, 229, 255, 0.4);
}
.rr-chip--magenta {
  color: var(--rr-magenta);
  border-color: rgba(255, 45, 149, 0.4);
}

/* ================================================================
   EVENTOS
   ================================================================ */
.rr-events {
  padding: 40px 32px 80px;
  max-width: var(--rr-max-width);
  margin: 0 auto;
}
.rr-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.rr-event {
  background: var(--rr-black);
  border: 1px solid rgba(0, 229, 255, 0.3);
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}
.rr-event:hover {
  border-color: var(--rr-cyan);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
}
.rr-event__image {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.rr-event__image--1 { background: linear-gradient(135deg, #FF2D95 0%, #6D4EEC 100%); }
.rr-event__image--2 { background: linear-gradient(135deg, #00E5FF 0%, #6D4EEC 100%); }
.rr-event__image--3 { background: linear-gradient(135deg, #6D4EEC 0%, #FF2D95 100%); }
.rr-event__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}
.rr-event__date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--rr-black);
  border: 1px solid var(--rr-magenta);
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 45, 149, 0.4);
  z-index: 2;
}
.rr-event__date-day {
  display: block;
  font-family: var(--rr-font-display);
  font-size: 26px;
  color: var(--rr-magenta);
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 45, 149, 0.6);
}
.rr-event__date-month {
  display: block;
  font-family: var(--rr-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--rr-white);
  margin-top: 4px;
}
.rr-event__body {
  padding: 20px;
}
.rr-event__title {
  font-family: var(--rr-font-display);
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--rr-white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.rr-event__meta {
  color: var(--rr-white-dim);
  margin-bottom: 16px;
}

/* ================================================================
   FOOTER CTA
   ================================================================ */
.rr-footer-cta {
  padding: 80px 32px;
  border-top: 1px solid rgba(255, 45, 149, 0.3);
  background: linear-gradient(180deg, transparent 0%, rgba(255, 45, 149, 0.05) 100%);
}
.rr-footer-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.rr-footer-cta__title {
  font-family: var(--rr-font-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--rr-white);
}
.rr-footer-cta__text {
  color: var(--rr-white-dim);
  margin-bottom: 32px;
  font-size: 18px;
}
.rr-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.rr-social__link {
  font-family: var(--rr-font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--rr-cyan);
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  transition: all 0.2s;
}
.rr-social__link:hover {
  border-color: var(--rr-cyan);
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* ================================================================
   PLAYER STICKY
   ================================================================ */
.rr-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, var(--rr-black-deep) 100%);
  border-top: 2px solid var(--rr-magenta);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 40px rgba(255, 45, 149, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rr-player__stripe {
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--rr-magenta) 20%, var(--rr-cyan) 50%, var(--rr-magenta) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: rr-stripe-move 3s linear infinite;
}
.rr-player__play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--rr-magenta);
  border: none;
  color: var(--rr-black);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(255, 45, 149, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rr-play-pulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.rr-player__play:hover { transform: scale(1.08); }
.rr-player__play:active { transform: scale(0.95); }
.rr-player__play.is-playing .rr-player__play-icon {
  width: 12px; height: 14px;
  border: none;
  background:
    linear-gradient(var(--rr-black), var(--rr-black)) 0 0 / 4px 100% no-repeat,
    linear-gradient(var(--rr-black), var(--rr-black)) 100% 0 / 4px 100% no-repeat;
  margin-left: 0;
}
.rr-player__play-icon {
  width: 0; height: 0;
  border-left: 14px solid var(--rr-black);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.rr-player__info {
  flex: 1;
  min-width: 0;
}
.rr-player__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.rr-player__status-dot {
  width: 6px; height: 6px;
  background: var(--rr-magenta);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--rr-magenta);
  animation: rr-pulse 1.2s infinite;
}
.rr-player__bpm { color: var(--rr-white-faint); }
.rr-player__title {
  font-size: 14px;
  color: var(--rr-white);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rr-player__progress {
  margin-top: 6px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.rr-player__progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, var(--rr-magenta), var(--rr-cyan));
  box-shadow: 0 0 8px rgba(255, 45, 149, 0.6);
}
.rr-eq--player {
  height: 40px;
  flex-shrink: 0;
}

/* ================================================================
   ANIMACIONES
   ================================================================ */
@keyframes rr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}
@keyframes rr-heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
@keyframes rr-eq {
  from { height: 20%; }
  to { height: 100%; }
}
@keyframes rr-scanlines {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}
@keyframes rr-float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}
@keyframes rr-float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
@keyframes rr-float3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, 30px); }
  66% { transform: translate(30px, -15px); }
}
@keyframes rr-laser {
  0%, 90%, 100% { opacity: 0; }
  5%, 85% { opacity: 0.8; }
  45% { opacity: 1; }
}
@keyframes rr-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}
@keyframes rr-glitch-shift {
  0%, 90%, 100% { transform: translate(0, 0); opacity: 0; }
  2% { transform: translate(-3px, 1px); opacity: 0.8; }
  4% { transform: translate(2px, -1px); opacity: 0.6; }
  6% { transform: translate(0, 0); opacity: 0; }
}
@keyframes rr-button-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(255, 45, 149, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.15); }
  50% { box-shadow: 0 0 60px rgba(255, 45, 149, 1), inset 0 0 30px rgba(255, 255, 255, 0.25); }
}
@keyframes rr-sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes rr-flicker {
  0%, 100% { opacity: 1; }
  3% { opacity: 0.4; }
  6% { opacity: 1; }
  70% { opacity: 1; }
  73% { opacity: 0.6; }
  76% { opacity: 1; }
}
@keyframes rr-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@keyframes rr-card-glow-magenta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 149, 0); }
  50% { box-shadow: 0 0 30px 0 rgba(255, 45, 149, 0.2); }
}
@keyframes rr-stripe-move {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes rr-play-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(255, 45, 149, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 40px rgba(255, 45, 149, 1), 0 0 60px rgba(255, 45, 149, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.3); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .rr-header { padding: 16px 20px; }
  .rr-hero { padding: 60px 20px 40px; min-height: auto; }
  .rr-hero__title { letter-spacing: -3px; }
  .rr-hud { display: none; }
  .rr-countdown { padding: 24px 20px; }
  .rr-countdown__body { flex-direction: column; align-items: flex-start; }
  .rr-sessions, .rr-events { padding: 50px 20px; }
  .rr-footer-cta { padding: 50px 20px; }

  .rr-btn--primary { padding: 18px 28px; font-size: 13px; letter-spacing: 2px; }
  .rr-btn--ghost { padding: 17px 24px; }

  .rr-player { padding: 10px 16px; gap: 12px; }
  .rr-player__play { width: 44px; height: 44px; }
  .rr-eq--player { display: none; }
  body { padding-bottom: 80px; }

  .rr-timer-box { padding: 10px 14px; min-width: 56px; }
  .rr-timer-box__num { font-size: 28px; }
}

@media (max-width: 480px) {
  .rr-hero__title { font-size: 52px; letter-spacing: -2px; }
  .rr-nav { gap: 14px; width: 100%; }
  .rr-nav__link { font-size: 11px; letter-spacing: 1.5px; }
  .rr-countdown__timer { width: 100%; justify-content: space-between; }
  .rr-timer-box { flex: 1; min-width: 0; padding: 10px 6px; }
  .rr-timer-box__num { font-size: 24px; }
}

/* Reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.rr-event__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.rr-event__link:hover { text-decoration: none; }

.rr-hero .rr-hero__logo,
section.rr-hero img.rr-hero__logo {
  display: block !important;
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  margin: 0 0 28px 0 !important;
  filter: drop-shadow(0 0 24px rgba(255, 0, 200, 0.25))
          drop-shadow(0 0 8px rgba(0, 240, 255, 0.18));
  animation: rr-logo-float 6s ease-in-out infinite;
}

@keyframes rr-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .rr-hero .rr-hero__logo,
  section.rr-hero img.rr-hero__logo {
    max-width: 320px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .rr-hero .rr-hero__logo,
  section.rr-hero img.rr-hero__logo {
    max-width: 260px !important;
  }
}