/* ===========================================================
   98.7 PIXEL FM — Spotify-clone radio page (Minecraft skin)
   =========================================================== */

.rsp-body {
  background: #050707;
  color: #e9efe9;
  min-height: 100vh;
}

.rsp-body .nav {
  background: rgba(7, 10, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(60, 200, 100, 0.12);
}

/* === Shell layout === */
.rsp {
  padding: 0;
  background: #050707;
  min-height: calc(100vh - 64px);
  padding-bottom: 110px; /* room for sticky player */
}

.rsp__shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 10px;
  padding: 10px;
  max-width: 1600px;
  margin: 0 auto;
}

/* === LEFT SIDEBAR === */
.rsp__sidebar {
  background: #0c100d;
  border-radius: 14px;
  padding: 14px 8px 18px;
  height: calc(100vh - 200px);
  position: sticky;
  top: 80px;
  overflow-y: auto;
  border: 1px solid rgba(80, 200, 120, 0.06);
}

.rsp__sidebar::-webkit-scrollbar { width: 6px; }
.rsp__sidebar::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 4px; }

.rsp-side__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px 12px;
  color: #b6c0b6;
}

.rsp-side__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.rsp-side__icon { color: #b6c0b6; }

.rsp-side__add {
  background: transparent;
  color: #b6c0b6;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 999px;
  transition: background 120ms, color 120ms;
}
.rsp-side__add:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.rsp-side__chips {
  display: flex;
  gap: 8px;
  padding: 6px 8px 12px;
  flex-wrap: wrap;
}

.rsp-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #e9efe9;
  border: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.rsp-pill:hover { background: rgba(255, 255, 255, 0.14); }
.rsp-pill.is-active { background: #fff; color: #050707; }

.rsp-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rsp-side__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 120ms;
}
.rsp-side__item:hover { background: rgba(255, 255, 255, 0.06); }
.rsp-side__item.is-active { background: rgba(60, 200, 110, 0.10); }

.rsp-side__art {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  image-rendering: pixelated;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rsp-side__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.rsp-side__name {
  color: #e9efe9;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsp-side__sub {
  color: #8a948a;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === MAIN === */
.rsp__main {
  background: linear-gradient(180deg, #0e1410 0%, #080a09 100%);
  border-radius: 14px;
  padding: 16px 28px 28px;
  border: 1px solid rgba(80, 200, 120, 0.06);
  min-height: calc(100vh - 200px);
}

/* === HERO === */
.rsp-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 8px 0 28px;
  min-height: 280px;
  background: #1a2218;
}

.rsp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(1.2) brightness(0.55);
  transform: scale(1.2);
  transition: background-image 400ms;
  z-index: 0;
}
.rsp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.65) 100%);
}

.rsp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 28px 32px;
  align-items: end;
}

.rsp-hero__left { position: relative; }

.rsp-hero__art {
  width: 240px;
  height: 240px;
  border-radius: 10px;
  object-fit: cover;
  image-rendering: pixelated;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rsp-hero__play {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #5fd66a;
  color: #050707;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 150ms, background 150ms;
}
.rsp-hero__play:hover { transform: scale(1.06); background: #6fe07a; }

.rsp-hero__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 6px;
}

.rsp-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rsp-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #b8e6c0;
  text-transform: uppercase;
}
.rsp-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fd66a;
  box-shadow: 0 0 0 0 rgba(95, 214, 106, 0.7);
  animation: rsp-pulse 1.8s infinite;
}
@keyframes rsp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95, 214, 106, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(95, 214, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 214, 106, 0); }
}

.rsp-hero__title {
  font-family: 'Pixelify Sans', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.rsp-hero__sub {
  font-size: 14px;
  color: #c5d2c8;
  margin: 0;
}

.rsp-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.rsp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.30);
  color: #fff;
  transition: background 120ms, transform 120ms;
}
.rsp-hero__btn:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-1px); }
.rsp-hero__btn--primary {
  background: #5fd66a;
  color: #050707;
  border-color: transparent;
}
.rsp-hero__btn--primary:hover { background: #6fe07a; }

/* === FILTER CHIPS === */
.rsp-filters {
  display: flex;
  gap: 10px;
  margin: 8px 0 26px;
  flex-wrap: wrap;
}
.rsp-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #e9efe9;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.rsp-chip:hover { background: rgba(255, 255, 255, 0.14); }
.rsp-chip.is-active { background: #fff; color: #050707; }

/* === ROW SECTIONS === */
.rsp-row { margin-bottom: 36px; }

.rsp-row__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  gap: 16px;
}

.rsp-row__eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a948a;
}

.rsp-row__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.rsp-row__all {
  color: #b6c0b6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.rsp-row__all:hover { color: #fff; text-decoration: underline; }

.rsp-row__count {
  color: #8a948a;
  font-size: 12px;
  font-weight: 600;
}

/* === CARDS (Made For You) === */
.rsp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.rsp-card {
  background: #131814;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  text-align: left;
  transition: background 160ms, transform 160ms;
  position: relative;
}
.rsp-card:hover { background: #1a201b; transform: translateY(-2px); }

.rsp-card__art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #0a0e0b;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.rsp-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  display: block;
}

.rsp-card__play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5fd66a;
  color: #050707;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms, transform 200ms, background 150ms;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.rsp-card:hover .rsp-card__play {
  opacity: 1;
  transform: translateY(0);
}
.rsp-card__play:hover { background: #6fe07a; }

.rsp-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsp-card__sub {
  font-size: 13px;
  color: #8a948a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === UP NEXT strip === */
.rsp-upnext {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.rsp-upnext__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 8px;
  background: #131814;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background 120ms;
}
.rsp-upnext__item:hover { background: #1a201b; }

.rsp-upnext__art {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #0a0e0b;
  display: grid;
  place-items: center;
  font-size: 22px;
  image-rendering: pixelated;
  overflow: hidden;
}
.rsp-upnext__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsp-upnext__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.rsp-upnext__title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsp-upnext__sub {
  color: #8a948a;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === TABLE (Library) === */
.rsp-table {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rsp-table__row {
  display: grid;
  grid-template-columns: 40px 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 120ms;
  color: #c5d2c8;
}
.rsp-table__row:hover { background: rgba(255, 255, 255, 0.06); }
.rsp-table__row.is-playing { background: rgba(95, 214, 106, 0.06); }
.rsp-table__row.is-playing .rsp-table__title { color: #5fd66a; }

.rsp-table__idx {
  text-align: center;
  font-size: 13px;
  color: #8a948a;
  font-variant-numeric: tabular-nums;
}

.rsp-table__art {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #0a0e0b;
  display: grid;
  place-items: center;
  font-size: 18px;
  image-rendering: pixelated;
  overflow: hidden;
}
.rsp-table__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsp-table__meta { min-width: 0; }
.rsp-table__title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsp-table__sub {
  color: #8a948a;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.rsp-table__kind {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #8a948a;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

/* === STICKY PLAYER === */
.rsp-player {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #0c100d;
  border: 1px solid rgba(80, 200, 120, 0.10);
  border-radius: 12px;
  display: grid;
  /* Tight right column (volume only) so there's no dead space. */
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 2fr) auto;
  gap: 16px;
  align-items: center;
  padding: 10px 16px;
  z-index: 80;
  box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.4);
}

.rsp-player__left {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.rsp-player__art {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  image-rendering: pixelated;
}
.rsp-player__meta { min-width: 0; }
.rsp-player__title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsp-player__sub {
  color: #8a948a;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.rsp-player__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.rsp-player__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rsp-pbtn {
  background: transparent;
  border: none;
  color: #c5d2c8;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: color 120ms, transform 120ms;
}
.rsp-pbtn:hover { color: #fff; transform: scale(1.05); }

.rsp-pbtn--main {
  width: 36px;
  height: 36px;
  background: #fff;
  color: #050707;
  border-radius: 50%;
}
.rsp-pbtn--main:hover { background: #5fd66a; color: #050707; transform: scale(1.06); }

/* Mirror the first-skip button so layout balances */
#rspPlayerSkip { transform: scaleX(-1); }

.rsp-player__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.rsp-time {
  color: #b8c0b8;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0;
  border: 0;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.rsp-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  overflow: hidden;
}
.rsp-bar__fill {
  height: 100%;
  background: #5fd66a;
  width: 0;
  transition: width 0.4s linear;
}

.rsp-player__right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.rsp-vol-icon { color: #c5d2c8; }
.rsp-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  width: 110px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.rsp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.rsp-vol-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: none;
}

/* === Responsive === */
@media (max-width: 980px) {
  .rsp__shell { grid-template-columns: 1fr; }
  .rsp__sidebar {
    height: auto;
    position: static;
    max-height: 280px;
  }
  .rsp-hero__inner {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .rsp-hero__art { width: 180px; height: 180px; }
  .rsp-hero__title { font-size: 32px; }
  .rsp-player {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px;
  }
  .rsp-player__right { display: none; }
}

@media (max-width: 600px) {
  .rsp__main { padding: 14px; }
  .rsp-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rsp-table__row { grid-template-columns: 36px 1fr auto; }
  .rsp-table__art { display: none; }
}

/* Hide legacy audio bar on this page; players above is canonical */
.rsp-body .audio-bar { display: none !important; }
.rsp-body .audio-disc { display: none !important; }

/* ============================================================
   STATION-REACTIVE THEMING
   The radio page tints itself based on the currently playing
   track's station. JS sets data-station on .rsp-body, and these
   rules drive the colors + ambient effects.
   ============================================================ */

.rsp-body {
  --st-accent: #4ade80;
  --st-accent-2: #22c55e;
  --st-glow: rgba(80, 200, 120, 0.35);
  --st-bg-1: #050707;
  --st-bg-2: #0a0f0c;
  transition: background 800ms ease, color 600ms ease;
}

/* Chill Cabin — cool teal / lo-fi blues */
.rsp-body[data-station="chill"] {
  --st-accent: #5ec8ff;
  --st-accent-2: #2563eb;
  --st-glow: rgba(94, 200, 255, 0.32);
  --st-bg-1: #04080e;
  --st-bg-2: #081424;
}

/* Peaceful Plains — warm sunset golds */
.rsp-body[data-station="peaceful"] {
  --st-accent: #fbbf24;
  --st-accent-2: #f59e0b;
  --st-glow: rgba(251, 191, 36, 0.32);
  --st-bg-1: #0d0905;
  --st-bg-2: #1a120a;
}

/* Exploration — adventurous violet / magenta */
.rsp-body[data-station="exploration"] {
  --st-accent: #c084fc;
  --st-accent-2: #a855f7;
  --st-glow: rgba(192, 132, 252, 0.32);
  --st-bg-1: #0a0612;
  --st-bg-2: #150b20;
}

/* Nostalgia — vintage rose / amber */
.rsp-body[data-station="nostalgia"] {
  --st-accent: #fb7185;
  --st-accent-2: #e11d48;
  --st-glow: rgba(251, 113, 133, 0.30);
  --st-bg-1: #0e0608;
  --st-bg-2: #1a0c10;
}

/* Block Beats — neon magenta + cyan, Minecraft city night */
.rsp-body[data-station="hiphop"] {
  --st-accent: #f0abfc;
  --st-accent-2: #d946ef;
  --st-glow: rgba(217, 70, 239, 0.36);
  --st-bg-1: #09030f;
  --st-bg-2: #14091f;
}

/* Apply the palette across the page */
.rsp-body { background: var(--st-bg-1); }
.rsp { background: var(--st-bg-1); }
.rsp__sidebar { background: var(--st-bg-2); }

/* Hero glow follows the station */
.rsp-hero {
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04),
              0 30px 70px -30px var(--st-glow);
  transition: box-shadow 800ms ease;
}
.rsp-hero__bg {
  background:
    radial-gradient(circle at 20% 30%, var(--st-glow) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, var(--st-glow) 0%, transparent 50%),
    var(--st-bg-2);
  transition: background 800ms ease;
}

/* Live pulse + accent pills pick up the station accent */
.rsp-body .rsp-hero__pulse { background: var(--st-accent); box-shadow: 0 0 8px var(--st-accent); }
.rsp-body .rsp-hero__btn--primary {
  background: linear-gradient(180deg, var(--st-accent), var(--st-accent-2));
  border-color: var(--st-accent-2);
}
.rsp-body .rsp-bar__fill {
  background: linear-gradient(90deg, var(--st-accent), var(--st-accent-2));
  box-shadow: 0 0 8px var(--st-glow);
}
.rsp-body .rsp-pill.is-active,
.rsp-body .rsp-chip.is-active {
  background: var(--st-accent);
  color: #0b0f0d;
  border-color: var(--st-accent);
}

/* Ambient particle layer that intensifies per station */
.rsp-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 800ms ease;
}
.rsp-body[data-station] .rsp-fx { opacity: 1; }
.rsp-fx__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--st-accent);
  box-shadow: 0 0 12px var(--st-accent);
  opacity: 0.55;
  animation: rspFxDrift linear infinite;
}

@keyframes rspFxDrift {
  0%   { transform: translate3d(0, 110vh, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translate3d(40px, -10vh, 0) scale(1); opacity: 0; }
}

/* Per-station particle shape tweaks */
.rsp-body[data-station="chill"] .rsp-fx__particle { /* snowy specks */
  background: #cfeaff;
  box-shadow: 0 0 10px #5ec8ff;
}
.rsp-body[data-station="peaceful"] .rsp-fx__particle { /* warm motes */
  background: #ffd770;
  box-shadow: 0 0 14px #fbbf24;
  width: 4px; height: 4px;
}
.rsp-body[data-station="exploration"] .rsp-fx__particle { /* magic sparkles */
  background: #e9d5ff;
  box-shadow: 0 0 14px #c084fc;
  width: 5px; height: 5px;
}
.rsp-body[data-station="nostalgia"] .rsp-fx__particle { /* rosy embers */
  background: #ffd1d8;
  box-shadow: 0 0 12px #fb7185;
  width: 5px; height: 5px;
}
.rsp-body[data-station="hiphop"] .rsp-fx__particle { /* neon block sparks */
  background: #fae8ff;
  box-shadow: 0 0 16px #d946ef, 0 0 24px #22d3ee;
  width: 5px; height: 5px;
  border-radius: 1px; /* tiny voxel cubes */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rsp-fx { display: none; }
  .rsp-body, .rsp-hero, .rsp-hero__bg { transition: none; }
}
