:root {
  --bg: #07070b;
  --card: rgba(18, 18, 26, 0.76);
  --red: #ff3138;
  --text: #f8f8fb;
  --muted: #aaaab6;
  --border: rgba(255, 255, 255, 0.12);
  --card-strong: rgba(28, 25, 32, 0.88);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    linear-gradient(135deg, #040405 0%, #111015 46%, #050506 100%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 49, 56, 0.08), transparent 22%, transparent 76%, rgba(255, 49, 56, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%);
}

body,
button,
input {
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

img {
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(12px, 4vw, 36px);
  padding-bottom: calc(120px + var(--safe-bottom));
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(8, 8, 12, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark,
.heading-mark {
  display: inline-grid;
  grid-template-columns: repeat(5, 3px);
  align-items: center;
  gap: 3px;
  color: var(--red);
}

.brand-mark span,
.heading-mark span {
  width: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px rgba(255, 49, 56, 0.68);
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(5) {
  height: 14px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(4) {
  height: 24px;
}

.brand-mark span:nth-child(3) {
  height: 32px;
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  line-height: 1.02;
}

.brand-copy span {
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-copy strong {
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.top-nav {
  display: none;
}

.live-pill,
.cover-live-tag,
.station-card-status,
.mini-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.live-pill {
  flex-shrink: 0;
  margin-left: auto;
  padding: 10px 12px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 49, 56, 0.14), 0 0 16px rgba(255, 49, 56, 0.72);
  animation: pulseDot 1.2s ease-in-out infinite alternate;
}

.page-main {
  display: grid;
  gap: clamp(22px, 5vw, 40px);
  margin-top: clamp(16px, 4vw, 32px);
}

.hero-player,
.notice-section,
.gallery-card,
.facebook-section {
  border: 1px solid var(--border);
  border-radius: clamp(22px, 5vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-player {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: clamp(18px, 5vw, 32px);
  padding: clamp(18px, 6vw, 46px);
}

.hero-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 49, 56, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(255, 49, 56, 0.11), transparent 34%);
  opacity: 0.82;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.cover-frame {
  position: relative;
  width: min(72vw, 248px);
  aspect-ratio: 1;
  padding: 10px;
  border: 2px solid rgba(255, 49, 56, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.36);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.54),
    0 0 0 10px rgba(255, 49, 56, 0.08);
}

.cover-frame img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  background: #111;
}

.cover-live-tag {
  position: absolute;
  top: 8%;
  left: -4px;
  z-index: 2;
  padding: 9px 13px;
  border-color: rgba(255, 49, 56, 0.48);
  background: linear-gradient(135deg, #ef131d, #a80910);
  box-shadow: 0 14px 28px rgba(149, 6, 12, 0.36);
}

.signal {
  display: none;
}

.hero-content {
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.station-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ef161f, #a9070e);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

#stationName {
  max-width: 100%;
  color: var(--text);
  font-size: clamp(2rem, 10vw, 4.05rem);
  font-weight: 900;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  max-width: 34rem;
  margin-top: 10px;
  color: rgba(248, 248, 251, 0.78);
  font-size: clamp(1rem, 4vw, 1.25rem);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.meta-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.meta-row span:last-child::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-right: 6px;
  border: 3px solid #1688ff;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(22, 136, 255, 0.7);
}

.hero-controls {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.round-play,
.mini-play {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 49, 56, 0.12);
  cursor: pointer;
  box-shadow: inset 0 0 0 2px rgba(255, 49, 56, 0.16), 0 16px 34px rgba(255, 49, 56, 0.2);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.round-play {
  width: 68px;
  height: 68px;
  font-size: 1.8rem;
}

.round-play:hover,
.mini-play:hover {
  border-color: rgba(255, 49, 56, 0.92);
  background: rgba(255, 49, 56, 0.26);
}

.round-play:active,
.mini-play:active {
  transform: scale(0.96);
}

.round-play.playing,
.mini-play.playing {
  border-color: var(--red);
  background: linear-gradient(135deg, #f52b34, #9d070d);
  box-shadow: 0 18px 44px rgba(255, 49, 56, 0.36);
}

.audio-panel {
  flex: 1 1 230px;
  min-width: 0;
  max-width: 430px;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.volume-icon {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
}

.volume-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.volume-icon svg path + path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.volume-slider {
  min-width: 92px;
  width: 100%;
  accent-color: var(--red);
  cursor: pointer;
}

.level-bars {
  flex: 0 0 auto;
  height: 26px;
  display: inline-flex;
  align-items: end;
  gap: 4px;
  color: var(--red);
}

.level-bars span {
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.85;
}

.level-bars span:nth-child(2) {
  height: 19px;
}

.level-bars span:nth-child(3) {
  height: 26px;
}

.level-bars span:nth-child(4) {
  height: 16px;
}

.is-playing .level-bars span {
  animation: meter 0.76s ease-in-out infinite alternate;
}

.is-playing .level-bars span:nth-child(2) {
  animation-delay: 0.11s;
}

.is-playing .level-bars span:nth-child(3) {
  animation-delay: 0.21s;
}

.is-playing .level-bars span:nth-child(4) {
  animation-delay: 0.31s;
}

.status-text {
  min-height: 1.35em;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.heading-mark {
  grid-template-columns: repeat(3, 3px);
}

.heading-mark span:nth-child(1),
.heading-mark span:nth-child(3) {
  height: 18px;
}

.heading-mark span:nth-child(2) {
  height: 30px;
}

.section-heading h2,
.notice-copy h2,
.gallery-header h2,
.facebook-copy h2 {
  color: var(--text);
  font-size: clamp(1.45rem, 6vw, 2.05rem);
  line-height: 1.1;
}

.section-heading p,
.notice-copy p,
.facebook-copy p {
  color: var(--muted);
  font-size: 0.96rem;
}

.station-picker {
  position: relative;
  z-index: 4;
  margin-bottom: 16px;
}

.station-picker-toggle {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 49, 56, 0.64);
  border-radius: 18px;
  padding: 12px 13px 12px 15px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #f21622, #870006 68%, #430004);
  box-shadow:
    0 18px 38px rgba(255, 49, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  cursor: pointer;
  text-align: left;
}

.station-picker-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.station-picker-eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.station-picker-copy strong {
  max-width: 100%;
  color: #fff;
  font-size: clamp(1rem, 4.6vw, 1.2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.station-picker-cue {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
}

.station-picker-cue::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.station-picker.is-open .station-picker-cue::after {
  transform: translateY(2px) rotate(225deg);
}

.station-picker-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  max-height: min(68vh, 460px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 10px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 49, 56, 0.18), transparent 34%),
    rgba(8, 8, 12, 0.96);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
}

.station-picker-panel[hidden] {
  display: none;
}

.station-picker-item {
  --station-accent: var(--red);
  min-height: 64px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-align: left;
}

.station-picker-item.is-active {
  border-color: rgba(255, 49, 56, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 49, 56, 0.26), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.station-picker-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--station-accent);
  background: rgba(0, 0, 0, 0.2);
}

.station-picker-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.station-picker-item-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.station-picker-item-copy strong {
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.station-picker-item-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.station-picker-status {
  justify-self: end;
  border: 1px solid rgba(255, 49, 56, 0.34);
  border-radius: 999px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(255, 49, 56, 0.3);
  font-size: 0.62rem;
  font-weight: 900;
  white-space: nowrap;
}

.stations-grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.station-card {
  --station-accent: var(--red);
  position: relative;
  min-width: 0;
  min-height: 184px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 11px 12px;
  border: 1px solid var(--border);
  border-radius: 22px;
  color: var(--text);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 9, 13, 0.82);
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.station-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--station-accent) 70%, white 10%);
}

.station-card:focus-visible,
.round-play:focus-visible,
.mini-play:focus-visible,
.station-picker-toggle:focus-visible,
.station-picker-item:focus-visible,
.notice-media:focus-visible,
.social-link:focus-visible,
.gallery-arrow:focus-visible,
.gallery-refresh-btn:focus-visible,
.lightbox button:focus-visible {
  outline: 3px solid rgba(255, 49, 56, 0.62);
  outline-offset: 3px;
}

.station-card.is-main {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  column-gap: 16px;
  padding: 20px;
  text-align: left;
  border-color: rgba(255, 49, 56, 0.76);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 49, 56, 0.32), transparent 38%),
    linear-gradient(145deg, rgba(255, 49, 56, 0.24), rgba(255, 255, 255, 0.03)),
    rgba(15, 7, 10, 0.92);
}

.station-card.is-main .station-icon {
  width: clamp(82px, 22vw, 112px);
  height: clamp(82px, 22vw, 112px);
  grid-row: span 4;
  margin-top: 0;
}

.station-card.is-main .station-icon svg {
  width: 50%;
  height: 50%;
}

.station-card.is-main .station-label,
.station-card.is-main .station-title,
.station-card.is-main .station-description {
  width: 100%;
  justify-content: start;
  text-align: left;
}

.station-card.is-main .station-title {
  min-height: auto;
  place-items: start;
  font-size: clamp(1.55rem, 7vw, 2.35rem);
}

.station-card.is-main .station-description {
  min-height: auto;
  font-size: clamp(0.9rem, 3vw, 1rem);
}

.station-card.is-main .station-cta {
  width: min(100%, 320px);
  margin-top: 6px;
}

.station-card.is-active {
  border-color: var(--red);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 49, 56, 0.22);
}

.station-card-status {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  padding: 7px 9px;
  border-color: rgba(255, 49, 56, 0.48);
  background: linear-gradient(135deg, #ef131d, #9d070d);
  font-size: 0.68rem;
}

.station-card.is-active .station-card-status {
  display: inline-flex;
}

.station-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-top: 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--station-accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 28px color-mix(in srgb, var(--station-accent) 18%, transparent);
}

.station-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.station-label {
  color: color-mix(in srgb, var(--station-accent) 80%, white 20%);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.station-title {
  max-width: 100%;
  min-height: 2.08em;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(1rem, 4.6vw, 1.32rem);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.station-description {
  min-height: 2.7em;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.station-cta {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid currentColor;
  border-radius: 12px;
  color: var(--station-accent);
  background: rgba(0, 0, 0, 0.18);
  font-weight: 800;
}

.station-card.is-active .station-cta {
  color: #fff;
  border-color: rgba(255, 49, 56, 0.7);
  background: linear-gradient(135deg, rgba(255, 49, 56, 0.84), rgba(141, 7, 12, 0.9));
}

.notice-section {
  display: grid;
  gap: 16px;
  padding: clamp(14px, 5vw, 22px);
  overflow: hidden;
}

.notice-copy {
  display: flex;
  align-items: center;
  gap: 13px;
}

.notice-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #a5060d);
}

.notice-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.notice-icon svg path + path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.notice-media {
  width: 100%;
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.44);
  cursor: pointer;
}

.notice-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-card {
  display: none;
  gap: 14px;
  padding: clamp(14px, 5vw, 20px);
}

.gallery-card.is-visible {
  display: grid;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-refresh-btn,
.gallery-arrow,
.lightbox-nav button {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.gallery-refresh-btn {
  padding: 0 15px;
  font-weight: 800;
}

.gallery-thumbs-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gallery-arrow {
  flex: 0 0 auto;
  width: 42px;
  font-size: 1.45rem;
}

.gallery-thumbs {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 1px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 5px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.gallery-thumb {
  position: relative;
  flex: 0 0 92px;
  height: 92px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0;
  background: #050506;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-video {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 49, 56, 0.48), rgba(0, 0, 0, 0.92));
}

.gallery-thumb-video-icon {
  font-size: 1.65rem;
}

.gallery-thumb-label {
  position: absolute;
  right: 7px;
  bottom: 7px;
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.facebook-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  padding: clamp(14px, 5vw, 22px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(24, 119, 242, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(6, 7, 10, 0.94);
}

.facebook-copy {
  display: flex;
  align-items: center;
  gap: 13px;
}

.facebook-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #1877f2, #0b3f8a);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.facebook-frame-wrap {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: clamp(8px, 2.4vw, 14px);
  background:
    linear-gradient(135deg, rgba(24, 119, 242, 0.12), transparent 38%),
    #050506;
}

.facebook-frame-wrap iframe {
  width: min(100%, 500px);
  height: min(72vh, 620px);
  min-height: 500px;
  border: 0;
  border-radius: 12px;
  background: #050506;
}

.facebook-fallback {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 119, 242, 0.62);
  border-radius: 14px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(24, 119, 242, 0.5);
  font-weight: 900;
  text-decoration: none;
}

.footer {
  display: grid;
  gap: 12px;
  margin-top: clamp(22px, 5vw, 38px);
  padding-bottom: 8px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-link {
  min-height: 44px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  line-height: 1.15;
}

.btn-whatsapp {
  background: rgba(18, 140, 126, 0.55);
  border-color: rgba(37, 211, 102, 0.48);
}

.btn-facebook {
  background: rgba(24, 119, 242, 0.5);
  border-color: rgba(24, 119, 242, 0.62);
}

.btn-instagram {
  background: linear-gradient(135deg, rgba(253, 29, 29, 0.58), rgba(131, 58, 180, 0.58));
  border-color: rgba(253, 29, 29, 0.42);
}

.btn-tiktok {
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.38), rgba(254, 44, 85, 0.5));
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-extra {
  background: rgba(255, 49, 56, 0.48);
  border-color: rgba(255, 49, 56, 0.55);
}

.footer-note {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.mini-player {
  position: fixed;
  left: 50%;
  bottom: calc(10px + var(--safe-bottom));
  z-index: 60;
  width: min(calc(100% - 20px), 1180px);
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(106, 4, 9, 0.96), rgba(50, 5, 8, 0.94)),
    rgba(8, 8, 12, 0.94);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.mini-cover {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  object-fit: cover;
}

.mini-info {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 1px;
}

.mini-info strong,
.mini-info span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-info strong {
  font-size: 0.92rem;
}

.mini-info span {
  color: #ffb6ba;
  font-size: 0.78rem;
}

.mini-play {
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
}

.mini-live {
  padding: 8px 10px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.06);
  color: #ffb6ba;
  font-size: 0.72rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: 88vh;
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px;
  background: #08080c;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.lightbox-media-wrapper {
  min-height: 220px;
  max-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.lightbox-media-wrapper img,
.lightbox-media-wrapper video {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.lightbox-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@keyframes pulseDot {
  from {
    opacity: 0.52;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes meter {
  from {
    transform: scaleY(0.55);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 360px) {
  .app-shell {
    padding-inline: 10px;
  }

  .site-header {
    gap: 8px;
    padding-inline: 10px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .live-pill {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .station-card {
    min-height: 178px;
    padding-inline: 9px;
  }

  .station-picker-toggle {
    align-items: stretch;
    flex-direction: column;
  }

  .station-picker-cue {
    width: 100%;
  }

  .station-picker-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .station-picker-status {
    grid-column: 2;
    justify-self: start;
  }

  .station-card.is-main {
    min-height: 238px;
    padding-inline: 12px;
  }

  .station-icon {
    width: 54px;
    height: 54px;
  }

  .station-icon svg {
    width: 28px;
    height: 28px;
  }

  .station-description {
    font-size: 0.74rem;
  }

  .station-cta {
    font-size: 0.82rem;
  }

  .mini-player {
    gap: 7px;
    padding: 9px;
  }

  .mini-cover {
    width: 44px;
    height: 44px;
  }

  .mini-live {
    padding-inline: 8px;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  body::before {
    background: linear-gradient(180deg, rgba(255, 49, 56, 0.07), transparent 42%);
  }

  .site-header,
  .hero-player,
  .notice-section,
  .gallery-card,
  .facebook-section,
  .mini-player {
    backdrop-filter: blur(14px);
  }

  .station-card:hover {
    transform: none;
  }

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

  .station-card.is-main {
    grid-column: auto;
    min-height: 246px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    padding: 18px 14px 16px;
    text-align: center;
  }

  .station-card.is-main .station-icon {
    grid-row: auto;
    width: 78px;
    height: 78px;
  }

  .station-card.is-main .station-label,
  .station-card.is-main .station-title,
  .station-card.is-main .station-description {
    justify-content: center;
    text-align: center;
  }

  .station-card.is-main .station-title {
    font-size: clamp(1.45rem, 7.8vw, 2rem);
  }

  .station-card.is-main .station-cta {
    width: 100%;
  }

  .station-picker-panel {
    max-height: 62vh;
  }

  .facebook-frame-wrap iframe {
    width: 100%;
    height: 560px;
    min-height: 460px;
  }

  .hero-player {
    gap: 12px;
    padding: 14px;
  }

  .cover-frame {
    width: min(54vw, 184px);
    padding: 7px;
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.48),
      0 0 0 7px rgba(255, 49, 56, 0.08);
  }

  .cover-live-tag {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .hero-content {
    align-content: start;
  }

  .station-kicker {
    min-height: 24px;
    margin-bottom: 7px;
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  #stationName {
    font-size: clamp(1.8rem, 8.8vw, 2.4rem);
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 8px;
    font-size: 0.96rem;
  }

  .meta-row {
    gap: 6px;
    margin-top: 12px;
  }

  .meta-row span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 0.72rem;
  }

  .hero-controls {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 13px;
  }

  .round-play {
    width: 56px;
    height: 56px;
    font-size: 1.42rem;
  }

  .audio-panel {
    flex: 1 1 auto;
    min-height: 54px;
    padding: 10px;
    gap: 8px;
  }

  .volume-icon svg {
    width: 21px;
    height: 21px;
  }

  .level-bars {
    height: 22px;
    gap: 3px;
  }

  .level-bars span {
    width: 3px;
  }

  .level-bars span:nth-child(2) {
    height: 16px;
  }

  .level-bars span:nth-child(3) {
    height: 22px;
  }

  .level-bars span:nth-child(4) {
    height: 14px;
  }

  .status-text {
    margin-top: 8px;
    font-size: 0.84rem;
  }
}

@media (max-width: 360px) {
  .cover-frame {
    width: min(52vw, 172px);
  }
}

@media (min-width: 700px) {
  .app-shell {
    padding-bottom: calc(126px + var(--safe-bottom));
  }

  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .top-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 4vw, 44px);
  }

  .top-nav a {
    position: relative;
    color: rgba(248, 248, 251, 0.76);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.16s ease;
  }

  .top-nav a:hover,
  .top-nav a.is-active {
    color: var(--red);
  }

  .top-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
  }

  .hero-player {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .hero-content {
    justify-items: start;
    text-align: left;
  }

  .meta-row,
  .hero-controls {
    justify-content: flex-start;
  }

  .cover-frame {
    width: min(34vw, 324px);
  }

  .stations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .station-picker {
    margin-bottom: 20px;
  }

  .station-picker-toggle {
    max-width: 520px;
  }

  .station-picker-panel {
    width: min(520px, 100%);
    right: auto;
  }

  .station-card {
    min-height: 230px;
    padding: 24px 18px 18px;
  }

  .notice-section {
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    align-items: center;
  }

  .social-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mini-player {
    min-height: 78px;
    gap: 14px;
    padding: 12px 18px;
  }
}

@media (min-width: 1024px) {
  .hero-player {
    min-height: 510px;
  }

  .cover-frame {
    width: min(31vw, 380px);
    padding: 14px;
  }

  .signal {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 49, 56, 0.5);
    transform: translateY(-50%);
  }

  .signal-left {
    left: -24px;
  }

  .signal-right {
    right: -24px;
  }

  .signal span {
    width: 3px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 18px rgba(255, 49, 56, 0.35);
  }

  .signal span:nth-child(1),
  .signal span:nth-child(4) {
    height: 42px;
  }

  .signal span:nth-child(2),
  .signal span:nth-child(3) {
    height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
