:root {
  --bg: #0b0b0b;
  --panel: rgba(17, 17, 17, 0.94);
  --panel-soft: rgba(22, 22, 22, 0.82);
  --line: rgba(117, 117, 117, 0.34);
  --text: #ffffff;
  --muted: #b3b3b3;
  --red: #e50914;
  --green: #e50914;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  --radius: 18px;
  --max: 1180px;
  --soft-red: rgba(229, 9, 20, 0.22);
  --soft-red-strong: rgba(229, 9, 20, 0.62);
  --soft-gray: rgba(117, 117, 117, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", sans-serif;
  background:
    radial-gradient(circle at 78% 0%, rgba(229, 9, 20, 0.16), transparent 34%),
    linear-gradient(180deg, #0d0d0d 0%, #090909 48%, #0b0b0b 100%);
}

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

.page-shell {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto;
  padding: 26px 0 28px;
}

.hero-section {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  display: grid;
  grid-template-columns: minmax(360px, 0.47fr) minmax(440px, 0.53fr);
  align-items: center;
  gap: 18px;
  padding: 34px 24px 72px;
}

.hero-bg {
  position: absolute;
  inset: -28px -24px 0;
  z-index: -2;
  background:
    radial-gradient(circle at 56% 42%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.14) 24%, rgba(2, 3, 7, 0.01) 46%, rgba(2, 3, 7, 0.42) 70%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(2, 3, 7, 0.5) 42%, rgba(36, 0, 11, 0.18) 100%),
    radial-gradient(circle at 72% 16%, rgba(235, 23, 69, 0.38), transparent 28%),
    radial-gradient(circle at 22% 70%, rgba(235, 23, 69, 0.22), transparent 24%),
    url("fm_america_balanced.webp") right center / cover no-repeat;
  filter: saturate(1.12) contrast(1.18) brightness(1.58);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(235, 23, 69, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.5px),
    linear-gradient(135deg, transparent 0 46%, rgba(235, 23, 69, 0.08) 48%, transparent 52%);
  background-size: 42px 42px, 86px 86px, 100% 100%;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.85) 54%, transparent 96%);
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 128px;
  width: 43%;
  height: 180px;
  z-index: -1;
  opacity: 0.44;
  background:
    radial-gradient(ellipse at 12% 100%, #000 0 10%, transparent 11%),
    radial-gradient(ellipse at 24% 100%, #000 0 12%, transparent 13%),
    radial-gradient(ellipse at 40% 100%, #000 0 10%, transparent 11%),
    radial-gradient(ellipse at 58% 100%, #000 0 12%, transparent 13%),
    radial-gradient(ellipse at 78% 100%, #000 0 11%, transparent 12%),
    linear-gradient(78deg, transparent 0 18%, #000 19% 22%, transparent 23%),
    linear-gradient(104deg, transparent 0 32%, #000 33% 36%, transparent 37%),
    linear-gradient(65deg, transparent 0 50%, #000 51% 54%, transparent 55%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 40%, rgba(235, 23, 69, 0.18), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(2, 3, 7, 0.28) 58%, rgba(2, 3, 7, 0.88) 100%);
}

.overline,
.section-label {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.overline {
  color: rgba(229, 9, 20, 0.86);
}

.section-label {
  color: var(--red);
  text-shadow: 0 0 14px rgba(229, 9, 20, 0.12);
}

.hero-brand h1 {
  margin: 0 0 -6px;
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transform: skewX(-7deg);
  transform-origin: left center;
}

.hero-brand h1 span,
.hero-brand h1 strong {
  display: block;
  transform: scaleX(1.04);
  transform-origin: left center;
}

.hero-brand h1 span {
  font-size: clamp(4.9rem, 9.2vw, 8.8rem);
  color: #ffffff;
  text-shadow:
    0.015em 0 0 currentColor,
    0.03em 0 0 currentColor;
}

.hero-brand h1 strong {
  margin-top: 10px;
  font-size: clamp(5rem, 8.9vw, 8.2rem);
  color: #ff2b2b;
  letter-spacing: 0.01em;
  text-shadow:
    0.015em 0 0 currentColor,
    0.03em 0 0 currentColor;
}

.hero-copy {
  max-width: 390px;
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 2px solid #ff2b2b;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.03rem, 1.32vw, 1.25rem);
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero-copy span {
  color: #ff2b2b;
  font-weight: 800;
}

.player-panel.is-playing ~ .hero-brand .hero-copy,
.hero-section.is-playing .hero-copy {
  opacity: 1;
}

.player-panel {
  position: relative;
  min-height: 500px;
  display: block;
  padding: 0;
}

.live-pill {
  position: absolute;
  top: 33px;
  left: 34%;
  transform: none;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.3;
  visibility: visible;
  transition: opacity 0.22s ease, text-shadow 0.22s ease, visibility 0.22s ease;
}

.live-pill span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(235, 23, 69, 0.9);
  opacity: 0.3;
  transition: opacity 0.22s ease, box-shadow 0.22s ease;
}

.player-panel.is-playing .live-pill {
  opacity: 1;
  visibility: visible;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
  animation: liveBlink 1s ease-in-out infinite;
}

.player-panel.is-playing .live-pill span {
  opacity: 1;
  box-shadow: 0 0 20px rgba(235, 23, 69, 1);
}

.wave-line {
  position: absolute;
  left: 42%;
  right: auto;
  top: 312px;
  width: min(100%, 590px);
  transform: translateX(-50%);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  z-index: 2;
  opacity: 0.32;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.45) 8%, #000 16%, #000 84%, rgba(0, 0, 0, 0.45) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.45) 8%, #000 16%, #000 84%, rgba(0, 0, 0, 0.45) 92%, transparent 100%);
}

.player-panel.is-playing .wave-line {
  opacity: 1;
}

.wave-line span {
  width: 2px;
  height: calc(var(--h) * 0.906);
  min-height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, calc(90 + (var(--intensity, 0.5) * 90)), calc(130 + (var(--intensity, 0.5) * 50)), 0.98) 0%,
      rgba(255, 66, calc(92 + (var(--intensity, 0.5) * 26)), 0.96) 34%,
      rgba(255, 43, 43, 0.94) 64%,
      rgba(210, 0, 48, 0.88) 100%
    );
  box-shadow:
    0 0 10px rgba(235, 23, 69, 0.34),
    0 0 18px rgba(235, 23, 69, 0.16);
  animation: wave 1.7s ease-in-out infinite;
  opacity: 0.52;
}

.wave-line span:nth-child(2n) {
  animation-delay: 0.09s;
}

.wave-line span:nth-child(3n) {
  animation-delay: 0.18s;
}

.wave-line span:nth-child(4n) {
  animation-delay: 0.27s;
}

.wave-line span:nth-child(5n) {
  animation-delay: 0.36s;
}

.play-button {
  position: absolute;
  top: 81px;
  left: 26%;
  z-index: 5;
  width: 191px;
  height: 191px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ff466b 0%, #eb1745 55%, #d80f3a 100%);
  box-shadow:
    0 0 0 18px rgba(235, 23, 69, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
  opacity: 0.72;
}

.play-button::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background:
    conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.98) 0deg 34deg,
      rgba(255, 255, 255, 0) 34deg 206deg,
      rgba(255, 43, 43, 0.98) 206deg 360deg
    );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: spinRing 6.5s linear infinite;
  pointer-events: none;
  transition: background 0.24s ease;
}

.play-button.is-playing::before {
  background:
    conic-gradient(
      from 0deg,
      rgba(229, 9, 20, 0.98) 0deg 360deg
    );
}

.play-button:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 0 22px rgba(235, 23, 69, 0.12),
    0 30px 72px rgba(0, 0, 0, 0.44);
}

.play-button.is-playing {
  opacity: 1;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 10px;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 42px solid #fff;
}

.play-button.is-playing .play-icon {
  width: 34px;
  height: 42px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #fff 0 34%, transparent 34% 66%, #fff 66% 100%);
}

.audio-card {
  position: absolute;
  left: 42%;
  right: auto;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 965px);
  min-height: 78px;
  padding: 14px 26px;
  border: 1px solid rgba(117, 117, 117, 0.3);
  border-radius: 24px;
  background: rgba(11, 11, 11, 0.94);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.audio-card span {
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audio-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.36rem, 2vw, 1.62rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.volume-box {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.volume-box input {
  width: 168px;
  opacity: 0.95;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  --volume-fill: 60%;
}

.volume-box .speaker,
.volume-box .bars {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.bars {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
  height: 34px;
}

.bars i {
  display: block;
  width: 4px;
  height: var(--bar-height);
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 6px rgba(255, 43, 43, 0.08);
  transition: background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.bars i:nth-child(1) { --bar-height: 8px; }
.bars i:nth-child(2) { --bar-height: 12px; }
.bars i:nth-child(3) { --bar-height: 17px; }
.bars i:nth-child(4) { --bar-height: 22px; }
.bars i:nth-child(5) { --bar-height: 28px; }
.bars i:nth-child(6) { --bar-height: 34px; }

.bars i.is-active {
  background: linear-gradient(180deg, rgba(255, 92, 124, 0.98), #ff2b2b 65%, #e0123d);
  box-shadow:
    0 0 8px rgba(255, 43, 43, 0.34),
    0 0 16px rgba(255, 43, 43, 0.16);
}

.volume-box input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 var(--volume-fill), rgba(255, 255, 255, 0.32) var(--volume-fill) 100%);
  box-shadow:
    0 0 8px rgba(255, 43, 43, 0.32),
    inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.volume-box input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow:
    0 0 12px rgba(255, 43, 43, 0.45),
    0 0 0 2px rgba(255, 43, 43, 0.18);
}

.volume-box input::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 0 8px rgba(255, 43, 43, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.volume-box input::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 43, 43, 0.32);
}

.volume-box input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow:
    0 0 12px rgba(255, 43, 43, 0.45),
    0 0 0 2px rgba(255, 43, 43, 0.18);
}

.quick-grid,
.content-grid,
.lower-grid {
  display: grid;
  gap: 14px;
}

.quick-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.info-card,
.panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.info-card {
  min-height: 205px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), 0 0 24px rgba(229, 9, 20, 0.08);
}

.icon-circle {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(117, 117, 117, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.icon-circle img {
  width: 87%;
  height: 87%;
  object-fit: contain;
  border-radius: 999px;
}

.icon-circle--svg {
  color: #ffffff;
}

.icon-circle--svg svg {
  width: 54%;
  height: 54%;
}

.icon-circle--solid svg {
  width: 58%;
  height: 58%;
  fill: currentColor;
  stroke: none;
}

.icon-circle.whatsapp {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(117, 117, 117, 0.42);
}

.whatsapp svg {
  width: 62%;
  height: 62%;
}

.phone-circle {
  border-color: rgba(117, 117, 117, 0.42);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.phone-circle svg {
  width: 58%;
  height: 58%;
}

.info-card h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-shadow: none;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-card strong {
  align-self: end;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-number {
  color: #fff !important;
  font-size: 1.35rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.content-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.content-grid,
.lower-grid,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.panel {
  padding: 26px;
}

.about-panel p:not(.section-label) {
  color: #ececf0;
  line-height: 1.85;
}

.about-highlight {
  color: var(--red);
}

.outline-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 45px;
  margin-top: 14px;
  padding: 0 24px;
  border: 1px solid rgba(229, 9, 20, 0.8);
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.12);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.outline-button:hover {
  transform: translateY(-2px);
  background: rgba(229, 9, 20, 0.22);
  border-color: var(--red);
  box-shadow: 0 12px 24px rgba(229, 9, 20, 0.16);
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(117, 117, 117, 0.22);
}

.news-panel .news-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.news-panel {
  display: grid;
  gap: 0;
}

.interview-card {
  align-items: stretch;
}

.interview-card__body {
  display: grid;
  gap: 14px;
}

.interview-card__meta {
  display: grid;
  gap: 6px;
}

.interview-card__meta strong {
  margin: 0;
}

.interview-card__meta em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  text-transform: none;
}

.interview-player {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(117, 117, 117, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.96), rgba(11, 11, 11, 0.98)),
    rgba(11, 11, 11, 0.98);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.interview-card--one .interview-player {
  border-color: rgba(229, 9, 20, 0.28);
}

.interview-card--two .interview-player {
  border-color: rgba(255, 255, 255, 0.18);
}

.interview-card--three .interview-player {
  border-color: rgba(117, 117, 117, 0.38);
  background:
    linear-gradient(135deg, rgba(22, 22, 22, 0.96), rgba(11, 11, 11, 0.98)),
    rgba(11, 11, 11, 0.98);
}

.interview-player__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.interview-player__buttons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.interview-player__button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 117, 117, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.interview-player__button:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 9, 20, 0.54);
  background: rgba(229, 9, 20, 0.16);
  box-shadow: 0 10px 22px rgba(229, 9, 20, 0.12);
}

.interview-player__button.is-playing {
  background: rgba(229, 9, 20, 0.22);
  border-color: rgba(229, 9, 20, 0.72);
}

.interview-player__icon {
  display: block;
}

.interview-player__icon--play {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #ffffff;
}

.interview-player__button.is-playing .interview-player__icon--play {
  width: 10px;
  height: 12px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #ffffff 0 34%, transparent 34% 66%, #ffffff 66% 100%);
}

.interview-player__icon--stop {
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-radius: 2px;
}

.interview-player__time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.interview-player__volume {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  flex: 1 1 150px;
}

.interview-player__volume-icon {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1;
}

.interview-player__volume-control {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  --interview-volume-fill: 60%;
}

.interview-player__volume-control::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 var(--interview-volume-fill), rgba(255, 255, 255, 0.32) var(--interview-volume-fill) 100%);
  box-shadow:
    0 0 8px rgba(229, 9, 20, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.interview-player__volume-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow:
    0 0 10px rgba(229, 9, 20, 0.34),
    0 0 0 2px rgba(229, 9, 20, 0.16);
}

.interview-player__volume-control::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 0 8px rgba(229, 9, 20, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.interview-player__volume-control::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.interview-player__volume-control::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow:
    0 0 10px rgba(229, 9, 20, 0.34),
    0 0 0 2px rgba(229, 9, 20, 0.16);
}

.interview-player__separator {
  color: var(--muted);
}

.interview-player__progress-wrap {
  display: block;
}

.interview-player__progress {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  --interview-fill: 0%;
}

.interview-player__progress::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 var(--interview-fill), rgba(255, 255, 255, 0.22) var(--interview-fill) 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.interview-player__progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.22), 0 0 10px rgba(229, 9, 20, 0.22);
}

.interview-player__progress::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 0;
}

.interview-player__progress::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.interview-player__progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.22), 0 0 10px rgba(229, 9, 20, 0.22);
}

.news-thumb {
  min-height: 100%;
  height: 100%;
  border-radius: 10px;
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.4), rgba(255, 255, 255, 0.06)),
    url("fm_america_balanced.webp") center / cover;
}

.thumb-two {
  background-position: center 65%;
}

.thumb-three {
  background-position: center 34%;
}

.news-item small {
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.news-item strong {
  display: block;
  margin: 7px 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
  line-height: 1.3;
}

.news-item em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  text-transform: uppercase;
}

.lower-grid {
  grid-template-columns: 0.38fr 0.62fr;
  margin-top: 14px;
}

.weather-main {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
}

.weather-main span {
  font-size: 3.4rem;
  font-weight: 900;
}

.weather-card > strong {
  display: block;
  margin-top: 2px;
  color: #f3f1f6;
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}

.weather-card > strong:empty {
  display: none;
}

.weather-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 117, 117, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 32% 28%, rgba(229, 9, 20, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(229, 9, 20, 0.1));
  color: var(--red);
  font-size: 2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 28px rgba(0, 0, 0, 0.18);
}

.weather-summary strong {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
}

.weather-summary p,
.weather-card > p {
  color: var(--muted);
  line-height: 1.65;
}

.weather-summary p {
  margin: 8px 0 0;
  font-size: 0.88rem;
}

.weather-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.weather-stats div {
  padding: 12px 14px;
  border: 1px solid rgba(117, 117, 117, 0.26);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.weather-stats span {
  display: block;
  margin-bottom: 6px;
  color: #b6b6b6;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-stats strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.weather-card .outline-button {
  width: 100%;
  margin-top: 16px;
}

.map-panel {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(1.08);
}

.map-panel a {
  position: absolute;
  right: 28px;
  bottom: 24px;
  min-width: 240px;
  padding: 14px 20px;
  border: 1px solid rgba(229, 9, 20, 0.8);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.82);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1.15fr;
  gap: 34px;
  margin-top: 30px;
  padding: 26px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-15%);
}

.site-footer img {
  width: 116px;
  display: block;
  mix-blend-mode: screen;
  border-radius: 999px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
  color: #f0f0f2;
  font-family: "Roboto", sans-serif;
}

.footer-logo span {
  margin-top: 2px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

.copyright {
  margin: 0;
  padding-bottom: 8px;
  color: var(--muted);
  font-family: "Roboto", sans-serif;
  text-align: center;
}

.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;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: #111111;
  border: 1px solid rgba(229, 9, 20, 0.55);
  box-shadow: 0 0 34px rgba(229, 9, 20, 0.24);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.floating-share {
  position: fixed;
  right: 36px;
  bottom: 130px;
  z-index: 91;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.floating-share__button {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 117, 117, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(24, 24, 24, 0.96), rgba(11, 11, 11, 0.98)),
    rgba(11, 11, 11, 0.98);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-share__button:hover,
.floating-share.is-open .floating-share__button {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.46);
  background:
    linear-gradient(145deg, rgba(28, 28, 28, 0.96), rgba(11, 11, 11, 0.98)),
    rgba(11, 11, 11, 0.98);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.38),
    0 0 18px rgba(229, 9, 20, 0.12);
}

.floating-share__button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-share__menu {
  min-width: 210px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(117, 117, 117, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(19, 19, 19, 0.97), rgba(11, 11, 11, 0.98)),
    rgba(11, 11, 11, 0.98);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.floating-share.is-open .floating-share__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-share__option {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(117, 117, 117, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.floating-share__option:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 9, 20, 0.44);
  background: rgba(229, 9, 20, 0.12);
}

.floating-share__option--button {
  width: 100%;
  cursor: pointer;
}

.floating-share__toast {
  padding: 8px 12px;
  border: 1px solid rgba(117, 117, 117, 0.28);
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.92);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.floating-share__toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-player {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 88;
  width: min(434px, calc(100vw - 164px));
  display: grid;
  gap: 10px;
  padding: 12px 16px 14px;
  border: 1px solid rgba(117, 117, 117, 0.36);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(11, 11, 11, 0.98)),
    rgba(11, 11, 11, 0.98);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(120%);
  transition:
    transform 0.34s ease,
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.floating-player.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

.floating-player__top {
  display: grid;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.floating-player__program {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.floating-player__program span {
  display: inline-block;
  position: relative;
  padding-inline: 8px;
  will-change: transform;
}

.floating-player__live {
  margin: 0;
  padding-left: 8px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-player__button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 117, 117, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-player__button:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 9, 20, 0.56);
  background: rgba(229, 9, 20, 0.14);
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.12);
}

.floating-player__button--play {
  background: rgba(229, 9, 20, 0.14);
  border-color: rgba(229, 9, 20, 0.46);
}

.floating-player__button.is-playing {
  background: rgba(229, 9, 20, 0.24);
  border-color: rgba(229, 9, 20, 0.74);
}

.floating-player__icon {
  display: block;
}

.floating-player__icon--play {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #ffffff;
}

.floating-player__button.is-playing .floating-player__icon--play {
  width: 12px;
  height: 14px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #ffffff 0 34%, transparent 34% 66%, #ffffff 66% 100%);
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.82;
  }

  35% {
    transform: scaleY(1.04);
    opacity: 1;
  }

  65% {
    transform: scaleY(0.88);
    opacity: 0.92;
  }
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .live-pill,
  .play-button::before,
  .floating-player__program span,
  .wave-line span {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero-section,
  .content-grid,
  .lower-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 96px;
  }

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

  .player-panel {
    min-height: 480px;
    padding: 0;
  }

  .live-pill {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
  }

  .play-button {
    left: 50%;
    transform: translateX(-50%);
  }

  .play-button:hover {
    transform: translateX(-50%) scale(1.04);
  }

  .wave-line {
    left: 50%;
    right: auto;
    top: 250px;
    width: min(100%, 551px);
    transform: translateX(-50%);
    height: 88px;
    justify-content: space-between;
  }

  .audio-card {
    left: 50%;
    bottom: -26px;
    width: min(100%, 900px);
  }

  .floating-player {
    width: calc(100vw - 146px);
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 22px), var(--max));
    padding-top: 10px;
  }

  .hero-section {
    min-height: auto;
    padding: 26px 10px 86px;
  }

  .hero-bg {
    background-position: 44% 60%;
  }

  .hero-brand h1 span {
    font-size: clamp(3.3rem, 19vw, 4.6rem);
  }

  .hero-brand h1 strong {
    font-size: clamp(3.8rem, 21vw, 5rem);
    margin-left: 8px;
  }

  .hero-brand h1 {
    padding-left: 8px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    opacity: 0.3;
    transition: opacity 0.24s ease;
  }

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

  .player-panel {
    min-height: 452px;
    padding: 0;
  }

  .play-button {
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    opacity: 0.3;
  }

  .play-button::before {
    inset: -11px;
  }

  .play-button:hover {
    transform: translateX(-50%) scale(1.04);
  }

  .wave-line {
    top: 252px;
    left: 50%;
    right: auto;
    width: calc((100% - 80px) * 1.02);
    transform: translateX(-50%);
    height: 73px;
    justify-content: space-between;
    opacity: 0.2;
  }

  .audio-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    padding: 16px 20px;
    min-height: 82px;
  }

  .audio-card strong {
    white-space: normal;
  }

  .volume-box {
    width: 100%;
  }

  .volume-box input {
    flex: 1;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-thumb {
    min-height: 138px;
    height: 138px;
    border-radius: 12px;
  }

  .interview-player__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .interview-player__volume {
    width: 100%;
    min-width: 0;
    gap: 5px;
  }

  .interview-player__time {
    align-self: flex-end;
    font-size: 0.68rem;
  }

  .interview-player__buttons {
    gap: 6px;
  }

  .interview-player {
    gap: 5px;
    padding: 7px 10px;
    border-radius: 13px;
  }

  .interview-card__body {
    gap: 8px;
  }

  .interview-card__meta {
    gap: 2px;
  }

  .interview-card__meta em {
    font-size: 0.72rem;
  }

  .interview-player__button {
    width: 32px;
    height: 32px;
  }

  .interview-player__volume-control::-webkit-slider-runnable-track,
  .interview-player__progress::-webkit-slider-runnable-track {
    height: 5px;
  }

  .interview-player__volume-control::-moz-range-track,
  .interview-player__volume-control::-moz-range-progress,
  .interview-player__progress::-moz-range-track,
  .interview-player__progress::-moz-range-progress {
    height: 5px;
  }

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

  .weather-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-panel a {
    left: 18px;
    right: 18px;
    min-width: 0;
  }

  .floating-whatsapp {
    width: 72px;
    height: 72px;
    right: 14px;
    bottom: 14px;
  }

  .floating-share {
    right: 22px;
    bottom: 98px;
    gap: 8px;
  }

  .floating-share__button {
    width: 56px;
    height: 56px;
  }

  .floating-share__menu {
    min-width: 188px;
    padding: 8px;
    border-radius: 16px;
  }

  .floating-share__option {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .floating-player {
    left: 12px;
    right: 96px;
    bottom: 12px;
    width: auto;
    padding: 10px 12px 12px;
    border-radius: 18px;
  }

  .floating-player__top {
    gap: 3px;
  }

  .floating-player__program {
    font-size: 0.78rem;
  }

  .floating-player__live {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .floating-player__button {
    width: 38px;
    height: 38px;
  }
}
