:root {
  --navy: #071b4a;
  --navy-2: #0d2f70;
  --blue: #00aef0;
  --pink: #ff1e6d;
  --orange: #ff8a00;
  --yellow: #ffc21b;
  --lime: #77c928;
  --purple: #7a45d6;
  --text: #10214a;
  --muted: #66708b;
  --line: #e7ebf3;
  --surface: #ffffff;
  --soft: #f7f9fd;
  --shadow: 0 24px 60px rgba(20, 42, 98, .12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea { font: inherit; }

button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: 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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 27, 74, .07);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 26px;
}

.brand img {
  width: 168px;
  max-height: 70px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  font-weight: 700;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 32px 0 28px;
  color: #1a2a50;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--orange));
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-live-btn,
.primary-btn,
.app-actions button {
  border: 0;
  border-radius: 999px;
  color: white;
  font-weight: 850;
  background: linear-gradient(100deg, var(--pink), var(--orange));
  box-shadow: 0 13px 28px rgba(255, 30, 109, .24);
}

.header-live-btn {
  padding: 13px 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.install-button {
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 12px 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.install-button:hover { border-color: var(--blue); color: var(--blue); }

.live-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 999px;
  background: #ff164f;
  box-shadow: 0 0 0 5px rgba(255, 22, 79, .14);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(255, 22, 79, 0); }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(0, 174, 240, .10), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(255, 30, 109, .08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(#9bb7db 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, #000, transparent 38%);
}

.hero-grid {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.08fr .86fr .92fr;
  align-items: center;
  gap: 28px;
  padding-block: 70px 78px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 14px;
}
.eyebrow span:nth-of-type(1) { color: var(--blue); }
.eyebrow span:nth-of-type(2) { color: var(--pink); }
.eyebrow span:nth-of-type(3) { color: var(--orange); }
.eyebrow i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b5bfd2;
}

.hero h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(46px, 5.3vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--navy);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--pink), var(--orange) 35%, var(--lime) 68%, var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: 19px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 850;
}

.primary-btn { border: 0; }
.secondary-btn {
  border: 1px solid #dce3ee;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 25px rgba(20, 42, 98, .06);
}

.play-mini {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  font-size: 12px;
}

.hero-trust {
  margin-top: 34px;
  display: flex;
  gap: 14px;
}

.hero-trust div {
  min-width: 98px;
  display: grid;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
}
.hero-trust strong { font-size: 20px; color: var(--navy); }
.hero-trust span { color: var(--muted); font-size: 12px; }

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.microphone {
  position: relative;
  width: 180px;
  height: 410px;
  filter: drop-shadow(0 28px 25px rgba(7, 27, 74, .22));
  transform: rotate(2deg);
}

.mic-head {
  position: absolute;
  top: 0;
  left: 37px;
  width: 106px;
  height: 180px;
  overflow: hidden;
  border: 8px solid #183c72;
  border-radius: 54px 54px 44px 44px;
  background: linear-gradient(90deg, #d9e0e9, #fff 45%, #8fa5c3);
}
.mic-grid {
  position: absolute;
  inset: 7px;
  border-radius: 40px;
  opacity: .58;
  background:
    repeating-linear-gradient(0deg, rgba(7,27,74,.55) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(90deg, rgba(7,27,74,.45) 0 2px, transparent 2px 6px);
}

.mic-neck {
  position: absolute;
  top: 153px;
  left: 73px;
  width: 34px;
  height: 82px;
  border-radius: 8px;
  background: linear-gradient(90deg, #092150, #175187, #071b4a);
}
.mic-body {
  position: absolute;
  top: 205px;
  left: 40px;
  width: 100px;
  height: 48px;
  border: 8px solid #0b285b;
  border-top: 0;
  border-radius: 0 0 70px 70px;
}
.mic-body::before,
.mic-body::after {
  content: "";
  position: absolute;
  top: -16px;
  width: 10px;
  height: 38px;
  border-radius: 10px;
  background: #0b285b;
}
.mic-body::before { left: -12px; }
.mic-body::after { right: -12px; }

.mic-stand {
  position: absolute;
  top: 248px;
  left: 81px;
  width: 18px;
  height: 112px;
  border-radius: 8px;
  background: linear-gradient(90deg, #082056, #277ab8, #071b4a);
}
.mic-base {
  position: absolute;
  left: 23px;
  bottom: 17px;
  width: 134px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #195a91, #061943);
}

.sound-bars {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
}
.sound-bars span {
  width: 12px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--blue), #087bcf);
}
.sound-bars-left { left: -24px; bottom: 110px; }
.sound-bars-right { right: -18px; bottom: 125px; }
.sound-bars span:nth-child(1) { height: 42px; }
.sound-bars span:nth-child(2) { height: 88px; }
.sound-bars span:nth-child(3) { height: 136px; }
.sound-bars span:nth-child(4) { height: 92px; }
.sound-bars span:nth-child(5) { height: 56px; }
.sound-bars-right span:nth-child(1) { background: var(--pink); }
.sound-bars-right span:nth-child(2) { background: #f83266; }
.sound-bars-right span:nth-child(3) { background: var(--orange); }
.sound-bars-right span:nth-child(4) { background: var(--yellow); }
.sound-bars-right span:nth-child(5) { background: var(--lime); }

.music-note {
  position: absolute;
  font-size: 48px;
  font-weight: 900;
}
.note-one { left: 60px; top: 36px; color: var(--pink); transform: rotate(-12deg); }
.note-two { right: 58px; top: 18px; color: var(--blue); transform: rotate(10deg); }
.note-three { right: 26px; top: 190px; color: var(--yellow); transform: rotate(18deg); }

.player-card {
  position: relative;
  z-index: 3;
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(0,174,240,.3), transparent 28%),
    linear-gradient(145deg, #0c377d, #071b4a 70%);
  box-shadow: 0 30px 70px rgba(7, 27, 74, .28);
}

.player-card::after {
  content: "";
  position: absolute;
  inset: auto -12px 50px auto;
  width: 26px;
  height: 170px;
  border-radius: 0 24px 24px 0;
  z-index: -1;
  background: linear-gradient(var(--pink), var(--orange));
}

.player-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}
.status-label { display: flex; align-items: center; gap: 10px; }
.uy-time { color: #adc5ec; }

.album-cover {
  margin-top: 22px;
  min-height: 178px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff176e, #ff8a00 45%, #07aee6 100%);
  position: relative;
}
.album-cover img {
  width: 72%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
  mix-blend-mode: screen;
}
.album-wave {
  position: absolute;
  inset: auto 16px 13px;
  height: 24px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}
.album-wave span {
  width: 4px;
  min-height: 5px;
  border-radius: 5px;
  background: rgba(255,255,255,.86);
  animation: eq 1.1s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.is-playing .album-wave span { animation-play-state: running; }
.album-wave span:nth-child(2n) { animation-delay: -.4s; }
.album-wave span:nth-child(3n) { animation-delay: -.7s; }
@keyframes eq { from { height: 6px; } to { height: 23px; } }

.player-copy { margin-top: 18px; text-align: center; }
.player-copy small { color: #abc1e6; }
.player-copy h2 { margin: 3px 0 0; font-size: 25px; }
.player-copy p { margin: 0; color: #c6d3eb; }

.player-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.09);
}

.main-play {
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff3c98);
  box-shadow: 0 14px 34px rgba(255, 30, 109, .35);
  font-size: 20px;
}
.pause-icon { display: none; }
.is-playing .play-icon { display: none; }
.is-playing .pause-icon { display: inline; }

.volume-row {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.volume-row input { width: 100%; accent-color: var(--pink); }

.now-playing {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 11px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}
.host-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  font-size: 12px;
  font-weight: 900;
}
.now-playing small { display: block; color: #a8bce0; }
.now-playing strong { display: block; font-size: 13px; }
.now-playing > span { font-size: 11px; color: #b8c7e2; }

.player-message {
  min-height: 18px;
  margin: 12px 0 0;
  text-align: center;
  color: #ffd56b;
  font-size: 12px;
}

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading h2,
.schedule-copy h2,
.app-copy h2,
.contact-grid h2 {
  margin: 5px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--navy);
}
.section-heading p { max-width: 620px; color: var(--muted); }
.section-heading > a {
  color: var(--blue);
  font-weight: 850;
  white-space: nowrap;
}
.section-kicker {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--pink);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 16px 38px rgba(20, 42, 98, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.program-art {
  position: relative;
  min-height: 210px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}
.card-morning .program-art { background: linear-gradient(135deg, #78cf2a, #f8cc1e 75%); }
.card-kids .program-art { background: linear-gradient(135deg, #6b3bd4, #173d99); }
.card-stories .program-art { background: linear-gradient(135deg, #04aef0, #0864d0); }
.program-art::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -38px;
  top: -48px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.program-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 52px;
}
.program-art strong { position: relative; font-size: 29px; line-height: 1; }
.program-art small { position: relative; margin-top: 9px; font-weight: 800; }
.program-wave {
  position: absolute;
  left: 24px;
  top: 47px;
  width: 130px;
  height: 48px;
  opacity: .6;
  background:
    linear-gradient(90deg, transparent 0 5%, #fff 5% 8%, transparent 8% 15%, #fff 15% 19%, transparent 19% 27%, #fff 27% 31%, transparent 31% 39%, #fff 39% 44%, transparent 44% 55%, #fff 55% 59%, transparent 59% 69%, #fff 69% 74%, transparent 74%);
  mask-image: linear-gradient(180deg, transparent, #000 20% 80%, transparent);
}
.program-body { padding: 24px; }
.program-body h3 { margin: 0; font-size: 21px; }
.program-body p { min-height: 52px; margin: 9px 0 18px; color: var(--muted); }
.program-body button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 850;
}
.program-body button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 10px;
}

.schedule-section {
  color: white;
  background:
    radial-gradient(circle at 10% 0, rgba(0,174,240,.28), transparent 28%),
    radial-gradient(circle at 95% 100%, rgba(255,30,109,.26), transparent 26%),
    var(--navy);
}
.schedule-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.schedule-copy h2 { color: #fff; }
.schedule-copy > p { color: #b8c7e2; font-size: 18px; }
.onair-badge {
  margin-top: 28px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.onair-badge small { display: block; color: #aac0e3; }
.onair-badge strong { display: block; }

.schedule-list {
  display: grid;
  gap: 10px;
}
.schedule-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
}
.schedule-item.active {
  border-color: rgba(255, 30, 109, .6);
  background: linear-gradient(90deg, rgba(255,30,109,.18), rgba(0,174,240,.10));
}
.schedule-item time { color: #76d8ff; font-weight: 900; }
.schedule-item h3 { margin: 0; font-size: 17px; }
.schedule-item p { margin: 2px 0 0; color: #aebfdd; font-size: 13px; }
.schedule-item span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 850;
}
.schedule-item.active span { background: var(--pink); }

.chat-section { background: var(--soft); }
.chat-online-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--pink); font-weight: 850; font-size: .9rem; }
.chat-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.chat-messages { height: 340px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding: 4px 6px; }
.chat-empty { margin: auto; color: var(--muted); font-size: .92rem; }
.chat-msg { padding: 10px 14px; border-radius: 14px; background: var(--soft); border: 1px solid var(--line); font-size: .92rem; line-height: 1.5; }
.chat-msg-official { border-color: rgba(255,30,109,.4); background: rgba(255,30,109,.06); }
.cm-name { font-weight: 900; color: var(--navy); }
.cm-body { margin-left: 8px; color: var(--text); }
.cm-time { float: right; color: var(--muted); font-size: .76rem; }
.chat-official-badge { color: var(--pink); font-size: .74rem; font-weight: 900; }
.chat-online-names { font-size: .82rem; color: var(--muted); padding: 0 6px; }
.chat-star { color: var(--pink); }
.chat-official-name { color: var(--pink); }
.chat-login { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.chat-login input { flex: 1; min-width: 160px; background: #fbfcfe; border: 1px solid #dfe5ef; border-radius: 12px; padding: 12px 14px; color: var(--text); font-size: .92rem; }
.chat-login input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,174,240,.11); }
.chat-color-picker { display: flex; gap: 6px; }
.chat-color-swatch { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; }
.chat-color-swatch.selected { border-color: var(--navy); }
.chat-err { color: #e02457; font-size: .86rem; }
.chat-composer { display: flex; gap: 10px; }
.chat-composer input { flex: 1; background: #fbfcfe; border: 1px solid #dfe5ef; border-radius: 12px; padding: 12px 14px; color: var(--text); font-size: .92rem; }
.chat-composer input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,174,240,.11); }

.host-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.host-card {
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 15px 35px rgba(20,42,98,.07);
}
.host-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding: 6px;
}
.host-photo span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
}
.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 50%;
}
.host-one { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.host-two { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.host-three { background: linear-gradient(135deg, var(--pink), var(--orange)); }
.host-four { background: linear-gradient(135deg, var(--lime), var(--blue)); }
.host-card h3 { margin: 0; font-size: 22px; }
.host-card p { margin: 5px 0 0; color: var(--blue); font-weight: 800; }
.host-card small { color: var(--muted); }

.news-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}
.news-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 20px 50px rgba(20,42,98,.08);
}
.news-art {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(135deg, #6126d9, #ff1e6d 55%, #ff8a00);
}
.news-art-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-badge {
  position: relative;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-weight: 850;
}
.news-art small { position: relative; display: block; text-transform: uppercase; letter-spacing: .12em; }
.news-art strong { position: relative; display: block; max-width: 520px; font-size: 36px; line-height: 1.03; }
.news-body { padding: 26px 30px; }
.news-body span,
.news-list span { color: var(--pink); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.news-body h3 { margin: 6px 0; font-size: 24px; }
.news-body p,
.news-list p { margin: 0; color: var(--muted); }
.news-link { color: inherit; }
.news-link:hover { color: var(--pink); }

.news-list { display: grid; gap: 16px; }
.news-list article {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.news-thumb {
  min-height: 108px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: 42px;
  overflow: hidden;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-one { background: linear-gradient(135deg, #ffe062, #ff8a00); }
.thumb-two { background: linear-gradient(135deg, #ff7fa9, #7a45d6); }
.thumb-three { background: linear-gradient(135deg, #59ddff, #0757c9); }
.news-list h3 { margin: 5px 0; font-size: 18px; line-height: 1.2; }

.app-banner {
  padding: 0 0 92px;
  background: var(--soft);
}
.app-banner-inner {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 32px 44px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0, rgba(0,174,240,.35), transparent 28%),
    linear-gradient(120deg, #071b4a, #0d3778);
}
.app-banner-inner::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -70px;
  bottom: -130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  opacity: .85;
}
.phone-mockup {
  width: 122px;
  height: 220px;
  justify-self: center;
  padding: 8px;
  border-radius: 28px;
  background: #111a2e;
  box-shadow: 0 25px 45px rgba(0,0,0,.25);
  transform: rotate(-5deg);
}
.phone-screen {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border-radius: 22px;
  background: linear-gradient(150deg, #fff, #f1f6ff);
}
.phone-screen img { width: 92px; }
.phone-screen span { color: var(--pink); font-size: 10px; font-weight: 900; }
.phone-play {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-size: 12px;
}
.app-copy { position: relative; z-index: 2; }
.app-copy h2 { color: #fff; }
.app-copy p { margin-bottom: 0; color: #c4d2e9; }
.app-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.app-actions button,
.app-actions a {
  min-width: 190px;
  padding: 13px 18px;
  text-align: center;
  border-radius: 999px;
  font-weight: 850;
}
.app-actions a {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}

.contact-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(0,174,240,.08), transparent 26%),
    #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-grid > div > p { max-width: 540px; color: var(--muted); font-size: 18px; }
.contact-buttons {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-buttons a,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-buttons a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
}
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe5ef;
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--text);
  background: #fbfcfe;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,174,240,.11);
}
.contact-form .primary-btn { width: 100%; }
#form-message { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.site-footer {
  padding: 62px 0 38px;
  color: #c3cce0;
  background: var(--navy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand img {
  width: 180px;
  padding: 9px;
  border-radius: 14px;
  background: #fff;
}
.footer-brand p { max-width: 300px; }
.powered-by { margin-top: 14px; font-size: 13px; color: #8f9ac0; }
.powered-by a { display: inline; margin: 0; font-weight: 800; color: #9fd8ff; }
.powered-by a:hover { color: #fff; }
.site-footer h3 { margin: 0 0 16px; color: #fff; font-size: 15px; }
.site-footer a { display: block; margin: 8px 0; }
.site-footer a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.09);
  font-size: 12px;
  font-weight: 900;
}
.copyright { margin-top: 18px; font-size: 13px; }
.copyright a { display: inline; margin: 0; color: #c3cce0; }
.copyright a:hover { color: #fff; }

.hero-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}
.hero-shape-one {
  width: 220px;
  height: 220px;
  right: -120px;
  top: 140px;
  background: linear-gradient(135deg, rgba(255,30,109,.85), rgba(255,138,0,.8));
}
.hero-shape-two {
  width: 190px;
  height: 190px;
  left: -120px;
  bottom: -45px;
  background: linear-gradient(135deg, rgba(255,194,27,.9), rgba(119,201,40,.7));
}

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 160px 1fr auto auto; gap: 16px; }
  .main-nav { gap: 16px; font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .program-grid { gap: 16px; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto auto auto; }
  .menu-toggle { display: block; order: 3; }
  .header-live-btn { order: 2; }
  .install-button { order: 2; padding: 10px; font-size: 0; }
  .install-button svg { width: 17px; height: 17px; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 10px 12px; }
  .main-nav a::after { display: none; }

  .hero-grid,
  .schedule-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 54px; }
  .player-card { max-width: 520px; }
  .schedule-grid,
  .contact-grid { gap: 42px; }

  .program-grid { grid-template-columns: 1fr 1fr; }
  .program-card:last-child { grid-column: 1 / -1; }
  .host-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .app-banner-inner { grid-template-columns: 150px 1fr; }
  .app-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { position: relative; }
  .header-inner { min-height: 76px; grid-template-columns: 1fr auto auto; }
  .brand img { width: 142px; }
  .header-live-btn { display: none; }
  .install-button { order: 1; }
  .menu-toggle { order: 2; }
  .main-nav { top: 70px; }

  .hero-grid { grid-template-columns: 1fr; padding-block: 44px 56px; }
  .hero h1 { font-size: clamp(43px, 14vw, 62px); }
  .hero-text { font-size: 17px; }
  .hero-actions,
  .hero-trust { display: grid; grid-template-columns: 1fr; }
  .hero-trust div { grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
  .player-card { padding: 20px; }

  .section { padding: 70px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .program-grid,
  .host-grid { grid-template-columns: 1fr; }
  .program-card:last-child { grid-column: auto; }

  .schedule-item { grid-template-columns: 86px 1fr; }
  .schedule-item > span { grid-column: 2; justify-self: start; }
  .news-list article { grid-template-columns: 88px 1fr; }
  .news-thumb { min-height: 90px; }

  .app-banner { padding-bottom: 70px; }
  .app-banner-inner {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }
  .phone-mockup { display: none; }
  .app-actions { grid-column: auto; grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

/* Modal de instalación PWA */
.install-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(7,27,74,.78); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 20px; }
.install-overlay.show { display: flex; }
.install-card { width: min(360px, 100%); padding: 30px 26px; border-radius: 26px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.install-card img { margin: 0 auto 14px; border-radius: 18px; }
.install-card h3 { margin: 0 0 8px; font-size: 21px; color: var(--navy); }
.install-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.install-ios-steps { display: none; flex-direction: column; gap: 16px; margin: 2px 0 24px; padding: 0; }
.install-ios-steps .ios-step { display: flex; align-items: center; gap: 13px; text-align: left; }
.install-ios-steps .ios-step-icon { flex: none; width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(135deg, var(--blue), #fff); box-shadow: 0 8px 22px -7px var(--blue); display: flex; align-items: center; justify-content: center; color: #04040a; animation: iosStepPulse 2.4s ease-in-out infinite; }
.install-ios-steps .ios-step:nth-child(2) .ios-step-icon { animation: none; opacity: .85; }
.install-ios-steps .ios-step-icon svg { width: 21px; height: 21px; }
.install-ios-steps .ios-step-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.install-ios-steps .ios-step-text b { color: var(--text); }
@keyframes iosStepPulse { 0%, 100% { box-shadow: 0 8px 22px -7px var(--blue); } 50% { box-shadow: 0 8px 26px -3px var(--blue); } }
.install-actions { display: flex; gap: 10px; }
.install-actions button { flex: 1; min-height: 48px; }
