:root {
  --bg: #000000;
  --bg-soft: rgba(255,255,255,.06);
  --card: rgba(16, 22, 35, 0.78);
  --text: #f8f5ef;
  --muted: #c8c0b1;
  --line: rgba(214, 175, 96, 0.18);

  --primary: #21f360;
  --primary-2: #ff7a00;
  --primary-3: #39a9db;
  --gold: #19e26b;
  --gold-soft: #b9ffd1;

  --success: #19d38a;
  --danger: #ff5f57;

  --shadow: 0 24px 70px rgba(0,0,0,.45);

  --hero-overlay:
    radial-gradient(circle at 15% 10%, rgba(33,243,96,.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255,122,0,.15), transparent 30%),
    radial-gradient(circle at 60% 80%, rgba(57,169,219,.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));

  --glass: blur(16px) saturate(145%);
}

html[data-theme="light"] {
  --bg: #f8f4ea;
  --bg-soft: rgba(15,23,35,.05);
  --card: rgba(255,255,255,0.84);
  --text: #171d29;
  --muted: #665f56;
  --line: rgba(25, 226, 107, .24);

  --primary: #21f360;
  --primary-2: #ff7a00;
  --primary-3: #2f97c7;
  --gold: #0fb85a;
  --gold-soft: #0fb85a;

  --shadow: 0 16px 48px rgba(61,41,17,.12);

  --hero-overlay:
    radial-gradient(circle at 15% 10%, rgba(33,243,96,.12), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255,122,0,.10), transparent 30%),
    radial-gradient(circle at 60% 80%, rgba(57,169,219,.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.04));
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-image: var(--hero-overlay);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(33,243,96,.18));
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  line-height: 1.1;
  letter-spacing: .02em;
}

.brand-text p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(25,226,107,.22);
  border-radius: 999px;
  background: rgba(25,226,107,.08);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-soft);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(255,95,87,.6);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,95,87,.55); }
  70% { box-shadow: 0 0 0 12px rgba(255,95,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,95,87,0); }
}

.theme-toggle {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  min-width: 52px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .18s ease, background .18s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.radio-slider-section {
  padding: 18px 0 22px;
}

.radio-slider-shell {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(25,226,107,.16);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
}

.radioSwiper {
  width: 100%;
  border-radius: 28px;
}

.radioSwiper .swiper-slide {
  position: relative;
}

.radio-slide-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.radio-slide-card picture,
.radio-slide-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.radio-slide-card img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.radio-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34)),
    radial-gradient(circle at 15% 20%, rgba(33,243,96,.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255,122,0,.18), transparent 28%);
  pointer-events: none;
}

.radio-slide-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 620px;
  color: #fff;
}

.radio-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(25,226,107,.14);
  border: 1px solid rgba(25,226,107,.22);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.radio-slide-content h3 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
  text-shadow: 0 6px 18px rgba(0,0,0,.22);
}

.radio-slide-content p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 4px 16px rgba(0,0,0,.18);
}

.radio-slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(25,226,107,.18);
}

.radio-swiper-prev,
.radio-swiper-next {
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px;
  background: rgba(15,23,35,.46);
  border: 1px solid rgba(25,226,107,.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff !important;
  transition: transform .18s ease, background .18s ease;
}

.radio-swiper-prev:hover,
.radio-swiper-next:hover {
  transform: scale(1.04);
  background: rgba(15,23,35,.62);
}

.radio-swiper-prev::after,
.radio-swiper-next::after {
  font-size: 16px !important;
  font-weight: 900;
}

.radio-swiper-pagination {
  bottom: 14px !important;
}

.radio-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.5);
  opacity: 1;
}

.radio-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

.hero {
  padding: 24px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 8px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(25,226,107,.08);
  border: 1px solid rgba(25,226,107,.18);
  color: var(--gold-soft);
  font-size: .92rem;
  margin-bottom: 18px;
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.hero-copy .accent {
  background: linear-gradient(135deg, var(--gold), var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 38px rgba(25,226,107,.20);
}

.btn-secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
}

.mini-note {
  color: var(--muted);
  font-size: .92rem;
}

.player-card {
  position: relative;
  border: 1px solid rgba(25,226,107,.16);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
}

.player-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25,226,107,.18), transparent 58%);
  top: -90px;
  right: -40px;
  pointer-events: none;
}

.player-glow::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,122,0,.14), transparent 62%);
  right: 40px;
  top: 50px;
}

.player-inner {
  position: relative;
  padding: 22px;
}

.cover-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(25,226,107,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.58)),
    radial-gradient(circle at top left, rgba(25,226,107,.20), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255,122,0,.16), transparent 26%);
}

.cover-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(15,23,35,.48);
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(25,226,107,.18);
  backdrop-filter: blur(10px);
}

.player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
}

.player-meta h3 {
  margin: 0;
  font-size: 1.25rem;
}

.player-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.status-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(25,226,107,.10);
  color: var(--gold-soft);
  font-size: .88rem;
  font-weight: 700;
  border: 1px solid rgba(25,226,107,.22);
  white-space: nowrap;
}

.controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--primary), var(--primary-2));
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 14px 36px rgba(25,226,107,.24);
  transition: transform .18s ease;
}

.play-btn:hover {
  transform: scale(1.03);
}

.play-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
}

.volume-wrap input[type="range"] {
  width: min(220px, 30vw);
  accent-color: var(--primary);
  cursor: pointer;
}

.muted-label {
  font-size: .92rem;
  color: var(--muted);
}

.now-playing {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.np-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.np-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--gold-soft);
}

.np-text {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.5;
}

.visualizer-wrap {
  position: relative;
  margin-top: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 14px;
  min-height: 120px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

canvas#visualizerCanvas {
  width: 100%;
  height: 100px;
  display: block;
}

.fake-bars {
  position: absolute;
  inset: 0;
  display: none;
  align-items: end;
  justify-content: center;
  gap: 6px;
  padding: 18px 12px;
}

.fake-bars span {
  width: 8px;
  min-height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--primary), var(--primary-2));
  animation: barDance 1s ease-in-out infinite;
  opacity: .9;
}

.fake-bars span:nth-child(2) { animation-delay: .1s; }
.fake-bars span:nth-child(3) { animation-delay: .2s; }
.fake-bars span:nth-child(4) { animation-delay: .3s; }
.fake-bars span:nth-child(5) { animation-delay: .4s; }
.fake-bars span:nth-child(6) { animation-delay: .5s; }
.fake-bars span:nth-child(7) { animation-delay: .2s; }
.fake-bars span:nth-child(8) { animation-delay: .35s; }
.fake-bars span:nth-child(9) { animation-delay: .15s; }
.fake-bars span:nth-child(10) { animation-delay: .25s; }

@keyframes barDance {
  0%,100% { height: 18px; }
  50% { height: 80px; }
}

.video-section {
  padding: 0 0 70px;
}

.video-card {
  position: relative;
  border: 1px solid rgba(25,226,107,.16);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
}

.video-card-inner {
  padding: 22px;
}

.video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.video-head h3 {
  margin: 0;
  font-size: 1.3rem;
}

.video-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.video-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(25,226,107,.10);
  color: var(--gold-soft);
  font-size: .88rem;
  font-weight: 700;
  border: 1px solid rgba(25,226,107,.22);
  white-space: nowrap;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  min-height: 650px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(25,226,107,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.video-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
  background: #000;
}

.chat-section {
  padding: 0 0 70px;
  position: relative;
  z-index: 1;
}

.chat-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    rgba(10,20,15,.72);
  box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.chat-card-inner {
  padding: 22px;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.chat-head h3 {
  margin: 0;
  font-size: 1.3rem;
}

.chat-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.chat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(25,226,107,.08);
  color: var(--gold-soft);
  font-size: .88rem;
  font-weight: 700;
  border: 1px solid rgba(25,226,107,.20);
  white-space: nowrap;
}

.chat-frame-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.chat-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  background: transparent;
}

.faith-section {
  padding: 10px 0 70px;
  position: relative;
  z-index: 1;
}

.faith-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 760px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.45)),
    url("/img/ofrenda-bg.jpg") center/cover no-repeat;
  box-shadow:
    0 24px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.faith-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.50)),
    radial-gradient(circle at 20% 10%, rgba(33,243,96,.10), transparent 24%),
    radial-gradient(circle at 80% 16%, rgba(255,122,0,.12), transparent 28%);
  pointer-events: none;
}

.faith-content {
  position: relative;
  z-index: 2;
  padding: 54px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faith-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.faith-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(25,226,107,.10);
  border: 1px solid rgba(25,226,107,.18);
  color: var(--gold-soft);
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.faith-header h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.faith-header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
}

.faith-grid {
  width: 100%;
  max-width: 760px;
  display: grid;
  gap: 28px;
  margin-bottom: 34px;
}

.faith-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.faith-line {
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,.65);
}

.faith-icon {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,122,0,.10), transparent 35%),
    rgba(12,17,20,.92);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,.28),
    0 0 30px rgba(33,243,96,.06);
  margin: 0 auto;
  position: relative;
}

.faith-icon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(33,243,96,.35), rgba(255,122,0,.35));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.faith-icon span {
  font-size: 3.4rem;
  line-height: 1;
  color: #ff4a1a;
  filter: drop-shadow(0 8px 18px rgba(255,74,26,.18));
}

.faith-item h3,
.faith-item p {
  grid-column: 1 / -1;
}

.faith-item h3 {
  margin: -2px 0 8px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.24);
}

.faith-item p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.6;
}

.faith-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.offer-btn {
  min-width: 180px;
  font-size: 1rem;
  box-shadow:
    0 0 25px rgba(33,243,96,0.22),
    0 0 38px rgba(255,122,0,0.18);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px 0 70px;
}

.info-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.info-card h4 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: var(--gold-soft);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem;
}

.site-footer {
  padding: 18px 0 38px;
  color: var(--muted);
  font-size: .92rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.hidden-audio {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .radio-slider-section {
    padding: 10px 0 18px;
  }

  .radio-slider-shell,
  .radioSwiper {
    border-radius: 22px;
  }

  .radio-slide-card img {
    aspect-ratio: 1 / 1;
  }

  .radio-slide-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .radio-slide-content p {
    font-size: .92rem;
  }

  .radio-swiper-prev,
  .radio-swiper-next {
    display: none !important;
  }

  .faith-shell {
    min-height: auto;
    border-radius: 24px;
  }

  .faith-content {
    padding: 34px 16px;
  }

  .faith-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faith-line {
    display: none;
  }

  .faith-icon {
    width: 108px;
    height: 108px;
  }

  .faith-icon span {
    font-size: 2.8rem;
  }

  .faith-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-btn,
  .faith-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text p,
  .live-chip {
    display: none;
  }

  .player-inner,
  .video-card-inner,
  .chat-card-inner {
    padding: 16px;
  }

  .controls {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .play-btn {
    width: 100%;
    height: 58px;
    border-radius: 18px;
  }

  .volume-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .volume-wrap input[type="range"] {
    width: 100%;
  }

  .player-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 18px;
  }

  .video-frame-wrap,
  .video-frame-wrap iframe {
    min-height: 420px;
    height: 420px;
  }

  .chat-frame-wrap iframe {
    height: 420px;
  }
}