/* OBN Live TV React v1.1 styles */
:root{
  --bg:#0a0a0a;
  --panel:#141414;
  --panel2:#1c1c1c;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.65);
  --muted2:rgba(255,255,255,.55);
  --border:rgba(255,255,255,.08);
  --border2:rgba(255,255,255,.14);
  --focus:rgba(255,255,255,.85);
  --live:#ff2d55;
  --tileBg:#2b2b2b;
  --tileBgHover:#323232;
  --channelBg:#181818;
  --rulerText:rgba(255,255,255,.72);
  --rulerTick:rgba(255,255,255,.40);
  --rulerTickMid:rgba(255,255,255,.55);
  --rulerTickMajor:rgba(255,255,255,.85);

  --accent-blue:#3b82f6;
  --button-dark:#111827;
  --text-dark:#111827;

  --card-radius:14px;
  --bg-elevated:var(--panel);
  --border-subtle:var(--border);
  --shadow-soft:0 10px 24px rgba(0,0,0,.35);
  --text-subtle:var(--muted2);
  --text-main:var(--text);
  --text-muted:var(--muted);
  --radius-card:var(--card-radius);

  --r:1px;         /* requested: reduce radius to 1px */
  --playerR:15px;
  --gap:8px;
  --ppm:5;         /* pixels-per-minute (responsive below) */

  --rowH:72px;
  --tileH:var(--rowH);
  --chW:calc(var(--rowH) * 16 / 9);  /* 16:9 on desktop/tablet */
  --tilePadV:10px;
  --tilePadH:10px;
  --tileMeta:11px;
  --tileTitle:13px;
  --chPad:6px;
  --heroH:340px;

  --title:28px;

  /* shared horizontal padding for ruler + grid so they line up */
  --pad:14px;
}

@media (max-width:560px){
  :root{
    --rowH:55px;
    --tileH:var(--rowH);
    --chW:calc(var(--rowH) * 16 / 9); /* 16:9 on mobile */
    --gap:3px;
    --tilePadV:8px;
    --tilePadH:10px;
    --tileMeta:11px;
    --tileTitle:13px;
    --chPad:6px;
    --heroH:240px;
    --title:22px;
    --ppm:3.2;
  }
}
@media (max-width:360px){
  :root{
    --rowH:55px;
    --gap:7px;
    --tilePadV:7px;
    --tilePadH:9px;
    --tileMeta:10px;
    --tileTitle:12px;
    --chPad:5px;
    --ppm:3;
  }
}
@media (min-width:600px) and (max-width:1024px){
  :root{
    --rowH:64px;
    --tileH:var(--rowH);
    --chW:calc(var(--rowH) * 16 / 9);
    --gap:8px;
    --tilePadV:9px;
    --tilePadH:9px;
    --tileMeta:11px;
    --tileTitle:13px;
    --chPad:6px;
    --heroH:320px;
    --title:26px;
    --ppm:4.5;
  }
}
@media (min-width:1025px){
  :root{
    --rowH:84px;
    --tileH:var(--rowH);
    --chW:calc(var(--rowH) * 16 / 9);
    --gap:8px;
    --tilePadV:10px;
    --tilePadH:10px;
    --tileMeta:11px;
    --tileTitle:13px;
    --chPad:6px;
    --heroH:340px;
    --title:28px;
    --ppm:5;
  }
}

*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  background: var(--bg);
  color:var(--text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.welcomeHtmlPage{
  min-height:100vh;
  background: var(--bg);
  color: var(--text);
}
.welcomeHtmlInner{
  max-width:1200px;
  margin:0 auto;
  padding:24px;
  display:grid;
  gap:14px;
}
.welcomeHtmlInner img{
  max-width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
}
.welcomeHtmlInner a{
  color:rgba(255,212,0,.9);
}

.ow-card{
  background: var(--bg-elevated);
  border-radius: var(--card-radius);
  border: 0.1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.ow-close{
  position:absolute;
  top:8px;
  right:8px;
  border:1px solid var(--ow-border);
  background:var(--ow-btn-bg);
  color:var(--ow-text);
  width:26px;
  height:26px;
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition: transform .12s ease, background .12s ease;
  z-index:0;
}

.page{ min-height:100vh; display:flex; flex-direction:column; outline:none; }
.topbar{
  display:flex; align-items:center; gap:12px;
  padding:12px 14px;
  position:sticky; top:0; z-index:1;
  background:#0a0a0a;
  border-bottom:none;
  backdrop-filter: blur(10px);
}
.brand{ font-weight:1000; letter-spacing:.08em; }
.chips{ display:flex; gap:8px; overflow:auto; scrollbar-width:none; }
.chips::-webkit-scrollbar{ display:none }
.chip{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:8px 10px;
  border-radius:999px;
  font-weight:850;
  font-size:12px;
  white-space:nowrap;
}
.chip:hover{ background:rgba(255,255,255,.06) }
.backLive{
  margin-left:auto;
  border:1px solid rgba(255,212,0,.30);
  background:rgba(255,212,0,.10);
  color:var(--text);
  padding:9px 12px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  display:flex; align-items:center; gap:8px;
}
.backLive:hover{ background:rgba(255,212,0,.14) }
.chev{
  width:10px; height:10px;
  border-left:2px solid rgba(255,212,0,.95);
  border-bottom:2px solid rgba(255,212,0,.95);
  transform: rotate(45deg);
}

/* News */
.newsPage{ min-height:100vh; background: radial-gradient(circle at top, rgba(43,83,166,.18), transparent 55%), #0a0a0a; color:var(--text); }
.newsHeader{
  display:flex;
  gap:16px;
  align-items:center;
  padding:18px 22px;
  border-bottom:1px solid rgba(255,255,255,.08);
  position:sticky;
  top:0;
  background:rgba(10,10,10,.9);
  backdrop-filter: blur(10px);
  z-index:2;
}
.newsBrand{
  font-weight:1000;
  letter-spacing:.2em;
  font-size:14px;
  color:rgba(255,255,255,.75);
}
.newsTitleWrap{ display:flex; flex-direction:column; gap:2px; }
.newsTitle{ font-size:20px; font-weight:1000; }
.newsSubtitle{ font-size:12px; color:var(--muted); }
.newsMain{ padding:24px; max-width:1120px; margin:0 auto; width:100%; }
.newsGrid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.newsCard{
  display:grid;
  grid-template-rows: 160px 1fr;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  color:inherit;
  text-decoration:none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.newsCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,212,0,.45);
  box-shadow: 0 16px 24px rgba(0,0,0,.35);
}
.newsCardMedia{
  background: rgba(0,0,0,.5);
  display:grid;
  place-items:center;
}
.newsCardMedia img{ width:100%; height:100%; object-fit:cover; }
.newsCardPlaceholder{ color:rgba(255,255,255,.65); font-weight:900; font-size:12px; }
.newsCardBody{ padding:14px 16px 18px; display:grid; gap:10px; }
.newsCardTitle{ font-size:16px; font-weight:900; }
.newsCardExcerpt{ font-size:12px; color:var(--muted); line-height:1.5; }
.newsCardMeta{ font-size:11px; color:rgba(255,255,255,.5); }
.newsEmpty{
  padding:28px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.12);
  color:var(--muted);
  text-align:center;
}

.newsArticle{
  display:grid;
  gap:18px;
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:24px;
  border:1px solid rgba(255,255,255,.08);
}
.newsArticleMeta{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.newsCats{ display:flex; gap:8px; flex-wrap:wrap; }
.newsCat{
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  font-size:11px;
  font-weight:700;
}
.newsDate{ font-size:12px; color:var(--muted); }
.newsArticleTitle{ font-size:28px; font-weight:1000; margin:0; }
.newsArticleExcerpt{ margin:0; color:var(--muted); font-size:14px; }
.newsHero{ border-radius:14px; overflow:hidden; border:1px solid rgba(255,255,255,.08); }
.newsHero img{ width:100%; display:block; object-fit:cover; }
.newsArticleBody{ display:grid; gap:14px; }
.newsHeading{ margin:0; font-weight:900; }
.newsParagraph{ color:var(--text); line-height:1.7; }
.newsImage{ margin:0; border-radius:12px; overflow:hidden; border:1px solid rgba(255,255,255,.08); }
.newsImage img{ width:100%; display:block; object-fit:cover; }
.newsButton{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.45);
  background: rgba(255,212,0,.14);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  font-size:12px;
}
.newsQuote{
  margin:0;
  padding:14px;
  border-left:3px solid rgba(255,212,0,.6);
  background: rgba(255,255,255,.04);
  border-radius:10px;
}
.newsVideo video{ width:100%; border-radius:12px; border:1px solid rgba(255,255,255,.08); }
.newsGallery{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.newsGalleryItem img{ width:100%; border-radius:10px; border:1px solid rgba(255,255,255,.08); }
.newsColumns{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr));
}
.newsColumn{ padding:10px; border-radius:10px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); }
.newsCta{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  flex-wrap:wrap;
}
.newsEmbed{ border-radius:12px; overflow:hidden; border:1px solid rgba(255,255,255,.08); }

@media (max-width: 700px){
  .newsHeader{ flex-direction:column; align-items:flex-start; }
  .newsMain{ padding:16px; }
  .newsArticleTitle{ font-size:22px; }
  .newsCard{ grid-template-rows: 140px 1fr; }
}

.std-wysiwyg,
.newsWysiwyg{
  display:grid;
  gap:12px;
  line-height:1.7;
}
.std-wysiwyg img,
.newsWysiwyg img{
  max-width:100%;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.08);
}
.std-wysiwyg a,
.newsWysiwyg a{
  color:rgba(255,212,0,.9);
}
.std-wysiwyg blockquote,
.newsWysiwyg blockquote{
  margin:0;
  padding:12px 14px;
  border-left:3px solid rgba(255,212,0,.6);
  background: rgba(255,255,255,.04);
  border-radius:10px;
}
.std-wysiwyg table,
.newsWysiwyg table{
  width:100%;
  border-collapse:collapse;
}
.std-wysiwyg table td,
.std-wysiwyg table th,
.newsWysiwyg table td,
.newsWysiwyg table th{
  border:1px solid rgba(255,255,255,.12);
  padding:8px;
}

.std-shell{
  display:grid;
  gap:16px;
}
.standard-page .standard-content{
  padding:24px;
}
.std-layout.left .std-shell,
.std-layout.right .std-shell{
  grid-template-columns: minmax(0, calc(100% - var(--sidebar-p, 30%))) minmax(0, var(--sidebar-p, 30%));
}
.std-layout.right .std-shell{
  grid-template-columns: minmax(0, var(--sidebar-p, 30%)) minmax(0, calc(100% - var(--sidebar-p, 30%)));
}
.std-layout.left .std-sidebar{ order:2; }
.std-layout.right .std-sidebar{ order:1; }
.std-layout.left .std-main{ order:1; }
.std-layout.right .std-main{ order:2; }
.std-layout.full .std-shell{
  grid-template-columns: 1fr;
}
.std-sidebar{ padding:0; border:none; background: transparent; }
.std-sidebar-card{
  padding:16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.std-sidebar-card.theme-light{
  background: rgba(255,255,255,.9);
  color:#111;
}
.std-sidebar-card.theme-light a{ color:#0a4b9b; }
.std-sidebar-card.theme-accent{
  background: rgba(255,212,0,.12);
  border-color: rgba(255,212,0,.35);
}
.std-sidebar-empty{
  color:rgba(255,255,255,.6);
  font-size:12px;
}
.std-main{
  padding:16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.standard-footer{
  padding:16px 24px 28px;
  color:rgba(255,255,255,.6);
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

@media (max-width: 900px){
  .std-layout.left .std-shell,
  .std-layout.right .std-shell{
    grid-template-columns: 1fr;
  }
  .std-layout.left .std-sidebar,
  .std-layout.right .std-sidebar{
    order:2;
  }
  .std-layout.left .std-main,
  .std-layout.right .std-main{
    order:1;
  }
}

/* Hero */
.hero{
  height:auto;
  min-height:var(--heroH);
  padding:14px 14px;
  position:relative;
}
.heroInner{
  display:grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap:0px;
  align-items:start;
}
.heroLeft{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
}
.heroTopWidgets{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  align-items:stretch;
}
.heroInfo{
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:16px;
  backdrop-filter: blur(8px);
}
.heroMeta{ min-width:0; }
.heroLine{ display:flex; align-items:center; gap:10px; }
.heroTitle{ font-weight:1000; font-size:var(--title); letter-spacing:.02em; min-width:0; }
.heroTitle .sep{ margin:0 10px; opacity:.4 }
.heroTitle .sub{ font-weight:900; font-size:14px; opacity:.80; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:inline-block; max-width:62vw; vertical-align:middle; }
.heroFacts{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.heroFact{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-size:11px;
  font-weight:800;
  letter-spacing:.05em;
}
.heroDesc{
  margin-top:12px;
  font-size:14px;
  line-height:1.65;
  color:var(--muted);
}
.heroDesc.underVideo{
  margin-top:6px;
}
.desktopOnly{ display:block; }
.mobileOnly{ display:none; }
.desktopOnly.heroTopWidgets{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
}
.heroHint{ margin-top:12px; font-size:12px; color:var(--muted2) }
.owWeatherWrap{ margin-bottom:10px; }
.heroTopWidgets .owWeatherWrap{ margin-bottom:0; }
.heroTopWidgets .noticesWrap{ margin:0; }
.heroTopWidgets .notices-card{ height:100%; }
.heroTopWidgets > .owWeatherWrap,
.heroTopWidgets > .noticesWrap{
  width:100%;
}

@media (max-width:560px){
  .desktopOnly.heroTopWidgets{
    display:none !important;
  }
}

@media (min-width:1025px){
  .benefits-card.ow-card.benefitsWrap,
  .daily-verse-section.ow-card.dailyVerseWrap,
  .hero-card.ow-card.heroSliderWrap,
  .ow-card.featuredBannerWrap{
    display:none !important;
  }
}
.owWeatherStandalone{
  margin:10px 14px 0;
  max-width: calc(100% - 28px);
}

.playerWrap{
  width:min(52vw, 720px);
  max-width:100%;
  position:relative;
}
.playerAnchor{
  position:relative;
}
.playerDockPlaceholder{
  display:none;
  width:100%;
}
.playerDock{
  width:100%;
  position:relative;
}
.popout-frame{
  display:flex;
  flex-direction:column;
  gap:10px;
  width:100%;
}
.playerStage{
  width:100%;
  aspect-ratio:16/9;
  border-radius:var(--playerR);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#000;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.playerShell{
  position:relative;
  width:100%;
  height:100%;
  background:#000;
  border-radius:var(--playerR);
  overflow:hidden;
}
.player{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#000;
}

.bigPlay{
  position:absolute; inset:0; margin:auto;
  width:86px; height:86px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.55);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.95);
  cursor:pointer;
  transition: transform 140ms ease, opacity 160ms ease, background 160ms ease;
  z-index:4;
}
.bigPlay::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.35);
  opacity:.7;
  animation:playPulse 1.6s ease-out infinite;
}
.bigPlay.isPlaying{ opacity:0; pointer-events:none; }
.playerShell:hover .bigPlay{ opacity:1; pointer-events:auto; }
@keyframes playPulse{
  0%{ transform:scale(.85); opacity:.1; }
  35%{ opacity:.7; }
  100%{ transform:scale(1.2); opacity:0; }
}

.controlsBar{
  position:absolute; left:0; right:0; bottom:0;
  padding:10px 12px 12px;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  background:transparent;
  opacity:0; transform:translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index:3;
  pointer-events:none;
  visibility:hidden;
}
.controlsBar.show{
  opacity:1;
  transform:translateY(0);
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 58%, rgba(0,0,0,.68) 100%);
  pointer-events:auto;
}
.controlsLeft,.controlsRight{ display:flex; align-items:center; gap:8px; }
.playerBtn{ width:36px; height:36px; }
.controlsSep{ width:1px; height:16px; background:rgba(255,255,255,.18); margin:0 4px; }
.controlsBar .playerBtn{
  width:38px;
  height:38px;
}
.controlsBar .iconBtn{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 6px 16px rgba(0,0,0,.38);
  backdrop-filter: blur(6px);
}
.controlsBar .iconBtn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.32);
}
.controlsBar .iconBtn:active{
  transform: translateY(1px);
}
.livePillSm{ padding:4px 8px; font-size:10px; letter-spacing:.08em; }
.livePillSm .bolt{ width:8px; height:8px; }
.livePillSm .pulseDot{ width:7px; height:7px; }

.playerLivePill{
  position:absolute;
  top:10px;
  left:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,45,85,.14);
  border:1px solid rgba(255,45,85,.35);
  font-weight:1000;
  letter-spacing:.06em;
  font-size:11px;
  z-index:5;
}
.playerOverlay{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(20,20,20,.88);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.playerOverlayTitle{
  font-weight:900;
  font-size:13px;
  letter-spacing:.01em;
}
.playerOverlaySub{
  margin-top:2px;
  font-size:12px;
  color:var(--muted);
}
.overlayPill{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,45,85,.35);
  background:rgba(255,45,85,.16);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
}
.video-popout-close,
.video-popout-pip{
  display:none;
}
.pip-status,
.pip-placeholder,
.seek-toast{
  display:none;
}
.seek-toast{
  position:absolute;
  inset:0;
  z-index:40005;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.seek-toast.show{ display:flex; }
.seek-bubble{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  border:0.1px solid rgba(255,255,255,0.25);
  color:#fff;
  font-weight:700;
  font-size:13px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: toastPop 520ms ease both;
}

/* LIVE pill */
.livePill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,45,85,.14);
  border:1px solid rgba(255,45,85,.35);
  font-weight:1000;
  letter-spacing:.06em;
  font-size:12px;
}
.bolt{
  width:10px;height:10px; display:inline-block;
  background:conic-gradient(from 180deg, rgba(255,255,255,.9), rgba(255,255,255,.2));
  clip-path: polygon(45% 0%, 75% 0%, 55% 45%, 80% 45%, 35% 100%, 50% 55%, 25% 55%);
  opacity:.9;
  animation:boltPulse 1.4s ease-out infinite;
}
@keyframes boltPulse{
  0%{transform:scale(1);opacity:1}
  50%{transform:scale(1.08);opacity:.92}
  100%{transform:scale(1);opacity:1}
}
.pulseDot{
  width:8px;height:8px;border-radius:999px;background:rgba(255,255,255,.98);
  position:relative;display:inline-block;
}
.pulseDot::after{
  content:"";position:absolute;inset:-6px;border-radius:999px;
  border:2px solid rgba(255,255,255,.6);
  animation:pulse 1.4s ease-out infinite;
  opacity:.0;
}
@keyframes pulse{
  0%{transform:scale(.2);opacity:.0}
  20%{opacity:.65}
  100%{transform:scale(1.6);opacity:0}
}
@keyframes popScale{
  0%{ transform: scale(0.72); opacity:0; }
  100%{ transform: scale(1); opacity:1; }
}
@keyframes toastPop{
  0%{ opacity:0; transform: scale(0.92); }
  20%{ opacity:1; transform: scale(1); }
  100%{ opacity:0; transform: scale(1.02); }
}

/* Time ruler */
.rulerWrap{ margin:0 0 6px; overflow:visible; }
.ruler{
  display:flex;
  overflow:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  padding:6px 0 10px;
}

/* Wrap ruler + rails so a single NOW line can span the whole section */
.epgShell{
  position:relative;
  padding:0 var(--pad) 18px;
}

/* Align the ruler with the start of the program rails (skip the channel column) */
.ruler{ padding-left: calc(var(--chW) + var(--gap)); }

/* One continuous NOW line (like the TBN example) */
.nowLine{
  position:absolute;
  top:0;
  bottom:0;
  width:0;
  pointer-events:none;
  z-index:0;
}
.nowLine::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:2px;
  background:#9b001e;
  box-shadow:0 0 0 4px #0000001a;
}
.nowLineLabel{
  position:absolute;
  top:27px;
  left:-26px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.02em;
  color:#fff;
  background:#9b001e;
  border:none;
  padding:5px;
  border-radius:3px;
  box-shadow:0 10px 24px #ff005047;
  text-transform:uppercase;
  white-space:nowrap;
}
.ruler::-webkit-scrollbar{ display:none }
.ruler{
  position:relative;
  padding:20px 0 5px;
}
.rulerTrack{
  position:relative;
  height:24px;
  min-width:100%;
}
.rulerTick{
  position:absolute;
  bottom:0;
  width:1px;
  height:5px;
  background:var(--rulerTick);
}
.rulerTick.mid{
  height:8px;
  background:var(--rulerTickMid);
}
.rulerTick.major{
  height:16px;
  width:2px;
  background:var(--rulerTickMajor);
}
.rulerLabel{
  position:absolute;
  top:-10px;
  transform:translate(-45%);
  font-size:12px;
  font-weight:400;
  color:var(--rulerText);
  letter-spacing:.01em;
  white-space:nowrap;
}
.rulerLabel.first{
  transform:translateX(0);
  padding-left:2px;
}

/* EPG grid */
.epg{ display:flex; flex-direction:column; gap:var(--gap); padding:0; position:relative; z-index:-1; }
.row{ position:relative; z-index:1; }
.row{ display:flex; gap:var(--gap); align-items:stretch; }
.row.active .channelCell{ border-color:#017b08; }

.channelCell{
  width:var(--chW);
  flex:0 0 var(--chW);
  height:var(--rowH);
  border-radius:5px;
  background-color:transparent;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  border:0.1px solid rgba(255,255,255,.08);
  padding:var(--chPad);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  cursor:pointer;
  text-align:left;
  color:inherit;
  font:inherit;
  -webkit-appearance:none;
  appearance:none;
  position:relative;
  z-index:4; /* keep above nowLine */
}
.channelCell.hasLogo{
  filter: grayscale(1) saturate(0.15) brightness(0.9);
  transition: filter 180ms ease;
}
.channelCell.hasLogo:hover,
.channelCell.hasLogo:focus-visible,
.channelCell.hasLogo.colorOn{
  filter: none;
}
.channelCell:focus-visible{
  outline:2px solid var(--focus);
  outline-offset:2px;
}
.channelCell:active{
  transform:none;
}
.channelLogo{
  height:28px;
  border-radius:var(--r);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
  font-weight:1000;
  letter-spacing:.06em;
}
.channelLogo img{ max-height:24px; max-width:100%; object-fit:contain; }
.channelName{
  font-size:12px;
  font-weight:950;
  color:rgba(255,255,255,.78);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Rail */
.rail{
  flex:1;
  display:flex;
  align-items:stretch;
  gap:var(--gap);
  overflow:auto;
  scrollbar-width:none;
  scroll-behavior:smooth;
  overscroll-behavior-x:contain;
  -webkit-overflow-scrolling:touch;
  padding:0 0 2px;
  position:relative;
  min-height:var(--rowH);
  border-radius:5px;
}
.rail::-webkit-scrollbar{ display:none }

/* (Removed per-row NOW markers; we draw one continuous .nowLine in .epgShell) */

/* Tiles */
.tile{
  height:var(--tileH);
  border-radius:5px;
  border:0.1px solid rgba(255,255,255,.08);
  background:var(--tileBg);
  color:var(--text);
  padding:var(--tilePadV) var(--tilePadH);
  display:flex;
  flex-direction:row;
  align-items:stretch;
  gap:10px;
  justify-content:flex-start;
  text-align:left;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.tile:hover{ background:var(--tileBgHover) }
.tile.hasArt{
  border-color:rgba(255,255,255,.08);
}
.tile:focus-visible{
  outline:2px solid var(--focus);
  outline-offset:2px;
}
.tile.is-live{ border-color: rgba(255,45,85,.50); }

.tilePoster{
  height:100%;
  aspect-ratio:16/9;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px;
  font-size:10px;
  color:rgba(255,255,255,.6);
  text-align:center;
  flex:0 0 auto;
  position:relative;
  z-index:1;
}
.tilePoster.hasArt{
  padding:0;
  background-color:transparent;
}
.tileBody{
  min-width:0;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  position:relative;
  z-index:1;
}
.tileProgress{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:0%;
  background:linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  border-radius:5px 0 0 5px;
  pointer-events:none;
  z-index:0;
}
.tileTop{ display:flex; align-items:center; gap:8px; min-height:16px }
.tileTop small{ margin:0; font-size:var(--tileMeta); font-weight:900; color:rgba(255,255,255,.60) }
.tileTop small{ font-weight:400; }
.tTitle{
  margin-top:6px;
  font-weight:1000;
  font-size:var(--tileTitle);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  width:100%;
}
.tileLiveDot{
  width:7px;height:7px;border-radius:999px;background:var(--live);position:relative;flex:0 0 auto
}
.tileLiveDot::after{
  content:"";position:absolute;inset:-5px;border-radius:999px;border:2px solid rgba(255,45,85,.55);
  animation:pulse 1.4s ease-out infinite;
}

/* Gaps */
.gapBlock{
  height:var(--tileH);
  border-radius:5px;
  background:#1b1b1b;
  border:0.1px dashed rgba(255,255,255,.08);
}

/* Skeletons */
.skeletonGrid{ display:flex; flex-direction:column; gap:var(--gap); }
.skeletonRow .rail{ overflow:hidden; }
.skeleton{
  position:relative;
  overflow:hidden;
  background:#232323;
  border:0.1px solid rgba(255,255,255,.06);
}
.skeleton::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, rgba(255,255,255,.03) 20%, rgba(255,255,255,.12) 40%, rgba(255,255,255,.03) 60%);
  transform:translateX(-120%);
  animation:skeletonShimmer 1.2s ease-in-out infinite;
}
@keyframes skeletonShimmer{
  0%{ transform:translateX(-120%); }
  100%{ transform:translateX(120%); }
}

/* Program details sheet */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  z-index:50;
  padding:14px;
}
.sheet{
  width:min(720px, 100%);
  border-radius:12px;
  background:rgba(14,16,24,.96);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  overflow:hidden;
}
.sheetTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.sheetKicker{
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,.62);
  letter-spacing:.04em;
}
.sheetH1{
  margin-top:4px;
  font-size:18px;
  font-weight:1000;
}
.xBtn{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:999px;
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.xBtn:hover{ background:rgba(255,255,255,.10) }

.sheetMeta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:10px 14px 0;
}
.metaPill{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,.82);
}
.liveMeta{
  border-color:rgba(255,45,85,.35);
  background:rgba(255,45,85,.12);
  color:rgba(255,255,255,.92);
}

.sheetBody{ padding:12px 14px 14px; }
.desc{
  color:rgba(255,255,255,.70);
  font-size:13px;
  line-height:1.35;
}
.bigTrack{
  margin-top:14px;
  height:6px;
  width:100%;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
}
.bigFill{
  height:100%;
  width:0%;
  background:rgba(255,212,0,.95);
  transition: width 220ms linear;
}
.sheetActions{
  display:flex;
  gap:10px;
  padding:12px 14px 14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.btn{
  flex:1;
  border:1px solid rgba(255,212,0,.30);
  background:rgba(255,212,0,.14);
  color:var(--text);
  padding:12px 12px;
  border-radius:10px;
  font-weight:1000;
  cursor:pointer;
}
.btn:hover{ background:rgba(255,212,0,.18) }
.btn.ghost{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
.btn.ghost:hover{ background:rgba(255,255,255,.10) }

.state{ padding:14px; color:var(--muted); }
.state.error{ color:rgba(255,120,120,.95) }
.foot{ padding:10px 14px 18px; color:var(--muted2); font-size:12px }
.muted{ color:var(--muted2) }

@media (max-width:820px){
  .heroInner{ grid-template-columns: 1fr; }
  .playerWrap{ width:100%; }
  .heroTitle .sub{ max-width:90vw; }
}
@media (max-width:560px){
  .playerDock.is-popout{
    position:fixed !important;
    left:13px !important;
    top:10px;
    z-index:5000000 !important;
    border-radius:16px;
    overflow:visible !important;
    background:transparent !important;
    transition:left .22s ease, top .22s ease, width .22s ease, transform .22s ease, opacity .22s ease;
    will-change:left, top, width, transform, opacity;
    animation: popScale .28s ease-out;
    touch-action:none;
  }
  .playerDock.is-popout::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    background:rgba(255,255,255,0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events:none;
    z-index:0;
  }
  .playerDock.is-popout .popout-frame{
    position:relative;
    z-index:1;
    width:102%;
    height:102%;
    border-radius:16px;
    overflow:hidden;
    background:#000;
    box-shadow:0 14px 40px #000000bf;
  }
  .playerDock.is-popout .playerStage{
    height:100%;
    border-radius:0;
    border-bottom:none;
    box-shadow:none;
  }
  .playerDock.is-popout .playerShell{
    border-radius:0;
  }
  .playerDock.is-popout .playerOverlay{
    display:none;
  }
  .playerDock.is-dragging{ transition:none !important; }
  .playerDock.is-popout .video-popout-close,
  .playerDock.is-popout .video-popout-pip{
    position:absolute;
    top:8px;
    z-index:40010;
    width:34px;
    height:34px;
    border-radius:999px;
    border:0.1px solid rgba(255,255,255,0.25);
    background:rgba(0,0,0,0.55);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-tap-highlight-color: transparent;
  }
  .playerDock.is-popout .video-popout-close{
    right:8px;
    z-index:40011;
    font-size:20px;
  }
  .playerDock.is-popout .video-popout-pip{
    right:50px;
    padding:0;
  }
  .playerDock.is-popout .video-popout-close:hover,
  .playerDock.is-popout .video-popout-pip:hover{
    background:rgba(0,0,0,0.80);
  }
  .playerDock.is-popout .video-popout-pip svg{
    width:22px;
    height:22px;
    display:block;
  }
  .pip-status{
    position:absolute;
    left:12px;
    right:12px;
    bottom:8px;
    z-index:40012;
    padding:6px 10px;
    border-radius:999px;
    border:0.1px solid rgba(255,255,255,0.22);
    background:rgba(0,0,0,0.55);
    color:rgba(255,255,255,0.92);
    font-size:11px;
    font-weight:600;
    text-align:center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events:none;
  }
  .pip-placeholder{
    position:absolute;
    inset:0;
    z-index:2;
    align-items:center;
    justify-content:center;
    padding:16px;
    pointer-events:none;
  }
  .pip-placeholder img{
    width:min(78%, 360px);
    height:auto;
    display:block;
    border-radius:14px;
    border:0.1px solid rgba(255,255,255,0.18);
    box-shadow:0 10px 26px rgba(0,0,0,0.55);
  }
  .playerDock.is-in-pip .pip-status{ display:block; }
  .playerDock.is-in-pip .pip-placeholder{ display:flex; }
  .playerDock.is-in-pip video{ opacity:0; }
}
@media (max-width:560px){
  .hero{
    background:#0a0a0a;
  }
  .hero::after{
    display:none;
  }
  .hero::before{
    background:#0a0a0a;
  }
  .heroInfo{
    background:transparent;
    border:0;
    padding:0;
    display:none;
  }
  .desktopOnly{ display:none; }
  .mobileOnly{ display:block; }
  .epg{
    max-height: calc((var(--rowH) * 4) + (var(--gap) * 3));
    overflow-y:auto;
    overscroll-behavior:contain;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
    position:relative;
    transition: max-height .35s ease, opacity .25s ease;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0, #000 10px, #000 calc(100% - 10px), rgba(0,0,0,0.35) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0, #000 10px, #000 calc(100% - 10px), rgba(0,0,0,0.35) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .epg.collapsed{
    max-height:0;
    opacity:0;
    pointer-events:none;
  }
  .epg::-webkit-scrollbar{ display:none; }
}
@media (min-width:900px){
  .overlay{ align-items:center; }
  .sheet{ border-radius:14px; }
}

/* Hero backdrop image behind player (black & white) */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--heroImage);
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  filter: grayscale(1);
  opacity:.9;
  z-index:0;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(7,7,11,.92) 0%, rgba(7,7,11,.70) 45%, rgba(7,7,11,.55) 100%);
  pointer-events:none;
  z-index:1;
}
.hero > *{ position:relative; z-index:2; }

/* Details media */
.sheetMedia{
  padding:12px 14px 0;
}
.mediaFrame{
  position:relative;
  width:100%;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  aspect-ratio: 16 / 9;
}
.mediaFrame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.01);
}
.mediaShade{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));
}

/* Reminder banner */
.remBanner{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  top:72px;
  z-index:60;
  width:min(720px, calc(100% - 24px));
  border-radius:12px;
  border:1px solid rgba(255,212,0,.28);
  background:rgba(15,17,24,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  padding:12px 12px;
  display:flex;
  gap:10px;
  align-items:center;
}
.remBanner strong{ font-weight:1000; }
.remBanner span{ color:rgba(255,255,255,.72); font-size:12px; }
.remBanner .dismiss{
  margin-left:auto;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:999px;
  padding:8px 10px;
  font-weight:950;
  cursor:pointer;
}
.remBanner .dismiss:hover{ background:rgba(255,255,255,.10) }


/* --- Tubi-ish header + chips (v2) --- */
.topbar{
  justify-content:space-between;
  padding:10px 16px;
}

.topLeft, .topRight{ display:flex; align-items:center; gap:14px; min-width:0; }
.topRight{ justify-content:flex-end; }

.logo{ text-decoration:none; color:inherit; display:flex; align-items:center; }
.logoMark{
  font-weight:900;
  letter-spacing:.06em;
  text-transform:lowercase;
  font-size:20px;
  line-height:1;
  padding:8px 10px;
  border-radius:10px;
  background:linear-gradient(135deg, rgba(255,212,0,.95), rgba(255,212,0,.55));
  color:#0a0b10;
}

.nav{ display:flex; align-items:center; gap:14px; min-width:0; }
.navItem{
  color:rgba(255,255,255,.90);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  padding:8px 8px;
  border-radius:10px;
  white-space:nowrap;
}
.navItem:hover{ background:rgba(255,255,255,.06); }
.navBtn{
  background:transparent;
  border:1px solid transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}
.liveNav{ color:rgba(255,255,255,.95); }
.liveDot{
  display:inline-block;
  width:8px; height:8px;
  border-radius:999px;
  background:var(--live);
  box-shadow:0 0 0 4px rgba(255,45,85,.12);
  margin-right:6px;
  vertical-align:middle;
}

.search{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  min-width:320px;
  max-width:520px;
}
.searchIcon{ color:rgba(255,255,255,.72); display:flex; }
.search input{
  border:0; outline:none; background:transparent; color:var(--text);
  width:100%;
  font-size:14px;
}
.search input::placeholder{ color:rgba(255,255,255,.55); }

.btn{
  border-radius:999px;
  padding:10px 14px;
  font-weight:750;
  font-size:13px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.92);
  cursor:pointer;
}
.btn:hover{ background:rgba(255,255,255,.07); }
.btn.solid{
  background:rgba(255,255,255,.92);
  color:#0a0b10;
  border-color:rgba(255,255,255,.24);
}
.btn.solid:hover{ background:#fff; }
.btn.ghost{ background:transparent; }

.iconBtn{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.9);
  cursor:pointer;
}
.radioBtn{
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:0 12px;
  width:auto;
  min-width:78px;
  display:none;
  background:linear-gradient(135deg, rgba(250,204,21,.85), rgba(249,115,22,.85));
  color:#111;
  border:1px solid rgba(255,255,255,.12);
}
.iconBtn:hover{ background:rgba(255,255,255,.07); }
.iconBtn:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.menuBtn{
  display:none;
}
.installTopBtn{
  display:none;
}
.gridIcon{
  width:18px; height:18px;
  display:grid;
  grid-template-columns:repeat(3,4px);
  grid-auto-rows:4px;
  gap:3px;
}
.gridIcon span{
  width:4px; height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.8);
}

.slideOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:70;
}
.slideOverlay.show{
  opacity:1;
  pointer-events:auto;
}
.slidePanel{
  position:fixed;
  top:0; right:0;
  height:100vh;
  width:min(86vw, 320px);
  background:#111;
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:-20px 0 40px rgba(0,0,0,.45);
  transform:translateX(100%);
  transition:transform .25s ease;
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:16px;
}
.slidePanel.open{ transform:translateX(0); }
.slideHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.slideTitle{
  font-weight:900;
  letter-spacing:.04em;
}
.slideNav{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.slideLink{
  text-align:left;
  border-radius:10px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:650;
  cursor:pointer;
}
.slideLink:hover{ background:rgba(255,255,255,.07); }

.backLive{
  border-radius:999px;
  padding:10px 12px;
  background:rgba(255,212,0,.10);
  border:1px solid rgba(255,212,0,.18);
}
.backLive:hover{ background:rgba(255,212,0,.16); }

.genreRail{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 16px 6px 16px;
  overflow:auto;
  scrollbar-width:none;
  background:#141414;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.genreRail::-webkit-scrollbar{ display:none }
.genreChip{
  border-radius:999px;
  padding:10px 14px;
  font-weight:600;
  font-size:13px;
  border:1px solid rgba(255,255,255,.10);
  background:#1c1c1c;
  color:rgba(255,255,255,.65);
  cursor:pointer;
  white-space:nowrap;
}
.genreChip:hover{ background:#232323; }
.genreChip:first-child{
  background:#2a2a2a;
  color:#fff;
  border-color:rgba(255,255,255,.18);
}

/* Quick actions section */
.railsSpacer{
  display:none;
  width:100%;
  height:16px;
  border:0;
  padding:0;
  background:transparent;
  color:var(--text);
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.02em;
  cursor:pointer;
  appearance:none;
}
.railsHandle{
  display:inline-block;
  width:0;
  height:0;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-top:7px solid rgba(255,255,255,.75);
  margin-right:10px;
  transform:rotate(0deg);
  transition: transform 180ms ease;
}
.railsSpacer[aria-expanded="true"] .railsHandle{
  transform:rotate(180deg);
}
.quick-actions-section{
  margin:16px var(--pad) 12px;
  display:none;
}
.quick-actions-section .quick-actions-shell{
  border-radius: var(--card-radius);
  padding: 15px 0px 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.quick-actions-header{ display:flex; flex-direction:column; gap:2px; margin-bottom: 6px; }
.quick-actions-title{ margin:0; font-size: 14px; font-weight: 600; }
.quick-actions-subtitle{ margin:0; font-size: 11px; color: var(--text-subtle); }

.quick-actions-scroller{
  display:flex;
  gap: 10px;
  padding-top: 6px;
  padding-bottom: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.quick-actions-scroller::-webkit-scrollbar{ height:0; width:0; display:none; }

.deferredMount{
  min-width:0;
}
.deferredSkeleton{
  position:relative;
  overflow:hidden;
  border-radius:var(--card-radius);
  border:0.1px solid var(--border-subtle);
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.deferredSkeleton::before{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-100%);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  animation:deferredShimmer 1.3s infinite;
}
@keyframes deferredShimmer{
  100%{ transform:translateX(100%); }
}
.quick-actions-section.deferredSkeletonQuick{
  display:block;
  min-height:126px;
}
.featuredBannerWrap.deferredSkeletonBanner{
  aspect-ratio:900 / 472;
  min-height:164px;
}
.heroSliderWrap.deferredSkeletonHero{
  min-height:236px;
}
.dailyVerseWrap.deferredSkeletonVerse{
  min-height:340px;
}
.benefitsWrap.deferredSkeletonBenefits{
  min-height:152px;
}

.quick-card{
  flex: 0 0 auto;
  width: 150px !important;
  text-decoration:none;
  color: inherit;
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  margin-right: 5px;
}
@media (max-width: 480px){ .quick-card{ width: 110px; } }

.quick-card-inner{
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius: 9px;
  overflow:hidden;
  background:#111;
  border: 0.1px solid var(--border-subtle);
  box-shadow: 0 8px 18px #00000073;
  transition: transform .12s ease, box-shadow .16s ease, border-color .16s ease;
}
.quick-card:hover .quick-card-inner{
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.9);
  box-shadow: 0 12px 24px rgba(0,0,0,.40);
}
.quick-card-image{ width:100%; height:100%; object-fit:cover; display:block; }
.quick-card-label{
  font-size: 11px;
  margin-top: 2px;
  text-align:center;
  color: var(--text-subtle);
  max-width: 120px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Hero slider (from oneapp) */
.featuredBannerWrap{
  margin: 0 var(--pad) 12px;
}
.feature-slider-shell{
  position: relative;
  overflow:hidden;
  border-radius: var(--card-radius);
  background: var(--bg-elevated);
  border: 0.1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}
.feature-slider-track{ position:relative; width:100%; height:100%; }
.feature-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity 0.7s ease;
  pointer-events:none;
}
.feature-slide[data-active="true"]{ opacity:1; pointer-events:auto; }
.feature-slide a.slide-link{ display:block; width:100%; height:100%; text-decoration:none; color:inherit; }
.feature-slide img{ width:100%; height:100%; object-fit:cover; display:block; border-radius: calc(var(--card-radius) - 2px); }

.feature-slider-dots{
  position:absolute;
  bottom: 8px;
  left:0; right:0;
  display:flex;
  justify-content:center;
  gap: 6px;
  padding-inline: 10px;
}
.feature-slider-dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 0.1px solid rgba(248,250,252,.6);
  background: rgba(15,23,42,.9);
  cursor:pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease, width .2s ease;
}
.feature-slider-dot[aria-current="true"]{
  background:#f97316;
  border-color:#fed7aa;
  transform: translateY(-1px);
}
html[data-theme="light"] .feature-slider-dot{
  background: rgba(249,250,251,.9);
  border-color: #e5e7eb;
}

.heroSliderWrap{
  margin: 0 var(--pad) 16px;
}

/* Daily verse + notices + benefits wrappers */
.dailyVerseWrap,
.noticesWrap,
.benefitsWrap{
  margin: 0 var(--pad) 16px;
}
.hero-card{ background: #ffffff; color: var(--text-dark); position: relative; }
html[data-theme="dark"] .hero-card{ background: rgba(255,255,255,0.06); color: var(--text-main); }
html[data-theme="dark"] .hero-sub{ color: rgba(245,245,247,.75); }

.hero-slider{ overflow: hidden; position: relative; padding: 20px 18px 16px; }
.hero-track{ display:flex; transition: transform 0.55s ease; will-change: transform; }
.hero-slide{ min-width: 100%; padding-left: 20px; padding-right: 20px; }

.hero-layout{ display:flex; gap: 8px; align-items:center; }
.hero-text{ flex: 1 1 58%; }
.hero-label{
  display:inline-block;
  background: var(--accent-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.hero-title{ font-size: 24px; line-height: 1.1; font-weight: 700; margin: 0 0 8px; }
.hero-sub{ font-size: 12px; line-height: 1.4; margin: 0 0 14px; max-width: 260px; }

.primary-btn{
  border: none;
  outline: none;
  background: var(--button-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.primary-btn:active{ transform: scale(.98); }

.hero-media{ flex: 1 1 42%; display:flex; justify-content:flex-end; }
.hero-media-placeholder{
  width: 100%;
  max-width: 150px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: #181820;
  position: relative;
  border: 0.1px solid var(--border-subtle);
}
.hero-media-placeholder::before,
.hero-media-placeholder::after{
  content:"";
  position:absolute;
  border-radius: 12px;
  border: 0.1px solid rgba(255,255,255,0.04);
}
.hero-media-placeholder::before{ inset: 12% 16% 34% 8%; background:#0b0b0f; }
.hero-media-placeholder::after{ inset: 40% 6% 12% 30%; background:#111218; }

.hero-index-pill{
  position:absolute;
  right: 16px;
  bottom: 10px;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  color: #55565a;
}
html[data-theme="dark"] .hero-index-pill{ background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

.hero-dots{ position:absolute; left: 16px; bottom: 12px; display:flex; gap: 6px; }
.hero-dot{ width: 8px; height: 8px; border-radius: 999px; background:#c0c0c5; opacity:.6; }
.hero-dot.active{ opacity:1; background:#f97316; }

/* Notices */
.notices-card{ padding: 18px 18px 16px; }
.notices-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 10px; }
.notices-title{ display:flex; align-items:center; gap: 10px; font-weight: 600; font-size: 16px; }
.notice-icon{ width: 18px; height: 18px; display:inline-block; color: var(--text-main); }
.notices-close{ font-size: 18px; opacity: .7; cursor:pointer; user-select:none; }
.notices-window{ overflow:hidden; margin-bottom: 16px; }
.notices-track{ display:flex; transition: transform 0.55s ease; will-change: transform; }
.notice-item{ min-width: 100%; }
.notices-body{ font-size: 13px; line-height: 1.4; color: var(--text-muted); max-width: 320px; }
.dots{ display:flex; justify-content:center; gap: 6px; }
.dot{ width: 8px; height: 8px; border-radius: 999px; background:#55565f; opacity:.6; }
.dot.active{ opacity:1; background:#f97316; }

/* Benefits */
.benefits-card{
  padding: 18px 18px 14px;
  display:flex;
  gap: 10px;
  align-items:center;
}
.benefits-text{ flex: 1 1 55%; }
.benefits-title{ font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.benefits-sub{ font-size: 12px; line-height: 1.4; margin: 0 0 10px; opacity: .85; }
.benefits-link{ font-size: 11px; font-weight: 600; color: var(--accent-blue); }
.benefits-media{ flex: 1 1 45%; display:flex; justify-content:flex-end; }
.benefits-bubble{
  width: 100%;
  max-width: 150px;
  aspect-ratio: 5 / 3;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 10%, #e4f5ff 0, #d3e4ff 40%, #e4f3ff 55%, #f6f7fb 75%);
  position: relative;
  overflow: hidden;
  border: 0.1px solid rgba(148, 163, 184, 0.3);
}
.benefits-phone{
  position:absolute;
  inset: 16% 26% 6% 44%;
  border-radius: 20px;
  background: linear-gradient(145deg, #151b2f, #3f4b7a);
  box-shadow: 0 12px 22px rgba(0,0,0,.4);
}

/* Daily verse */
.daily-verse-section{ }
.vot-wrap{
  width:100%;
  display:grid;
  gap: 12px;
  --muted: rgba(245,247,255,.75);
  --muted2: rgba(245,247,255,.62);
}
html[data-theme="light"] .vot-wrap{
  --muted: rgba(17,24,39,.72);
  --muted2: rgba(17,24,39,.58);
}
.vot-status{
  font-size: 13px;
  color: var(--text-subtle);
  display:flex;
  justify-content:space-between;
  gap:10px;
  opacity:.95;
  padding: 0 6px;
  display:none;
}
.vot-card{
  width:100%;
  border-radius: var(--radius-card);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  position:relative;
  isolation:isolate;
  background: var(--bg-elevated);
  border: 0.1px solid var(--border-subtle);
}
.vot-card__bg{
  position:absolute;
  inset:0;
  background-image: var(--bgimg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
  z-index:-3;
  transition: opacity .35s ease;
  opacity: 1;
}
.vot-card__shade{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(to bottom, rgba(94,114,132,.30) 0%, rgba(0,0,0,.48) 40%, rgba(0,0,0,.60) 78%, rgba(0,0,0,.79) 100%),
    radial-gradient(900px 500px at 50% 80%, rgba(0,0,0,0) 0%, rgba(0,0,0,.62) 70%, rgba(0,0,0,.75) 100%);
}
html[data-theme="light"] .vot-card__shade{
  background:
    linear-gradient(to bottom, rgba(255,255,255,.10) 0%, rgba(255,255,255,.06) 40%, rgba(0,0,0,.28) 78%, rgba(0,0,0,.44) 100%),
    radial-gradient(900px 500px at 50% 80%, rgba(0,0,0,0) 0%, rgba(0,0,0,.20) 70%, rgba(0,0,0,.35) 100%);
}
.vot-card__content{
  padding: 28px 26px 18px;
  min-height: 100% !important;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap: 14px;
}
.vot-meta{ display:flex; flex-direction:column; gap: 10px; color:#fff; }
.vot-label{ font-size: 12px; letter-spacing:.12em; text-transform:uppercase; opacity:.92; }
.vot-ref{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
  color:#fff;
}
.vot-verse{
  margin-top: 10px;
  max-width: 92%;
  font-size: 16px;
  line-height: 1.8;
  text-shadow: 0 0px 2px rgb(0 0 0 / 50%);
  white-space: pre-wrap;
  color: #fff;
}
.vot-bottom{ padding: 5px 10px 5px; }
.vot-actions{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  width:100%;
  gap: 10px;
  padding: 4px 8px;
}
.vot-action{
  flex:1; min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 8px;
  padding: 10px 6px 6px;
  border-radius: 16px;
  cursor:pointer;
  user-select:none;
  transition: transform .12s ease, background .12s ease;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: 0;
  color: inherit;
  position: relative;
  overflow: visible;
}
.vot-action[disabled]{
  opacity: .55;
  cursor: default;
  pointer-events: none;
  transform: none;
}
.vot-action:active{ transform: scale(.98); }
.vot-action:hover{ background: rgba(255,255,255,.06); }
html[data-theme="light"] .vot-action:hover{ background: rgba(17,24,39,.06); }
.vot-icon{ width: 28px; height: 28px; display:grid; place-items:center; color:#fff; }
.vot-count-row{ display:flex; flex-direction:column; align-items:center; line-height: 1.1; }
.vot-count{ color:#fff; letter-spacing: .2px; font-weight: 800; font-size: 16px; }
.vot-toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(17,19,25,.92);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  font-size: 14px;
  z-index: 9999;
}
.vot-toast.show{ opacity:1; transform: translateX(-50%) translateY(-6px); }
.vot-burst{
  position:absolute;
  left:50%; top:18px;
  width:1px; height:1px;
  pointer-events:none;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.vot-p{
  position:absolute;
  width:8px; height:8px;
  border-radius: 999px;
  opacity: 0;
  transform: translate(0,0) scale(1);
  animation: votPop 700ms ease-out forwards;
  background: rgba(255,59,59,.95);
}
@keyframes votPop{
  0%{ opacity: 0; transform: translate(0,0) scale(.7); }
  15%{ opacity: 1; }
  100%{ opacity: 0; transform: translate(var(--dx), var(--dy)) scale(.2); }
}
@media (max-width: 520px){
  .vot-card__content{ padding: 25px 28px 18px; min-height: 520px; }
  .vot-verse{ max-width: 100%; }
}

@media (max-width:1024px){
  .quick-actions-section{ display:block; }
  .railsSpacer{
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#141414;
    border-top:1px solid rgba(255,255,255,.06);
  }
}

/* responsive: collapse nav + shrink search */
@media (max-width: 980px){
  .nav{ display:none; }
  .search{ min-width:220px; }
}
@media (max-width: 560px){
  .btn.ghost{ display:none; }
  .btn.solid{ display:none; }
  .search{ display:none; min-width:160px; padding:9px 10px; }
  .backLive{ display:none; }
  .radioBtn{ display:grid; }
  .topRight > :not(.menuBtn):not(.radioBtn):not(.installTopBtn){ display:none; }
  .installTopBtn{ display:grid; }
  .menuBtn{ display:grid; }
}

/* Dedicated mobile page shell (/site/mobile.php) */
.page.mobileAppPage{
  padding-bottom:calc(74px + env(safe-area-inset-bottom));
}
.page.mobileAppPage .deferredMount{
  content-visibility:auto;
  contain-intrinsic-size:1px 260px;
}
.page.mobileAppPage .desktopOnly{
  display:none !important;
}
.page.mobileAppPage .mobileOnly{
  display:block !important;
}
.page.mobileAppPage .topbar{
  padding-top:max(10px, env(safe-area-inset-top));
}
.page.mobileAppPage .nav,
.page.mobileAppPage .search,
.page.mobileAppPage .btn.ghost,
.page.mobileAppPage .btn.solid,
.page.mobileAppPage .backLive{
  display:none !important;
}
.page.mobileAppPage .menuBtn,
.page.mobileAppPage .radioBtn,
.page.mobileAppPage .installTopBtn{
  display:grid !important;
}
.page.mobileAppPage .topRight > :not(.menuBtn):not(.radioBtn):not(.installTopBtn){
  display:none;
}
.page.mobileAppPage .hero{
  background:#0a0a0a;
}
.page.mobileAppPage .heroInner{
  grid-template-columns:1fr;
}
.page.mobileAppPage .playerWrap{
  width:100%;
}
.page.mobileAppPage .heroInfo{
  background:transparent;
  border:0;
  padding:0;
  display:none;
}
.mobileTabBar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:90;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(10,10,10,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:8px 10px calc(8px + env(safe-area-inset-bottom));
}
.installBanner{
  position:fixed;
  left:10px;
  right:10px;
  bottom:calc(78px + env(safe-area-inset-bottom));
  z-index:95;
  display:flex;
  gap:10px;
  align-items:flex-start;
  justify-content:space-between;
  border-radius:12px;
  border:0.1px solid rgba(255,255,255,.14);
  background:rgba(20,20,20,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:10px 12px;
  box-shadow:0 14px 34px rgba(0,0,0,.45);
}
.sponsor-float{
  position:fixed;
  left:50%;
  bottom:calc(78px + env(safe-area-inset-bottom));
  transform:translateX(-50%);
  width:calc(100% - 24px);
  max-width:960px;
  z-index:93;
  pointer-events:none;
}
.sponsor-card{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  display:flex;
  align-items:stretch;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  background:rgba(8,8,10,.45);
  box-shadow:0 12px 28px rgba(0,0,0,.65);
  border:0.1px solid rgba(148,163,184,.35);
  pointer-events:auto;
}
.sponsor-card-left{
  background:#fff;
  color:#5b22ff;
  padding:18px 16px;
  min-width:140px;
  max-width:200px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.sponsor-card-left.hasThumb{
  padding:0;
  background:#0b0b0f;
  overflow:hidden;
}
.sponsor-card-left p{
  margin:0;
  font-weight:700;
  font-size:18px;
  line-height:1.15;
  white-space:pre-line;
}
.sponsor-left-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.sponsor-card-right{
  flex:1;
  padding:14px 44px 14px 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  color:#f5f5f7;
}
.sponsor-title{
  font-size:20px;
  font-weight:700;
  margin:0 0 4px;
}
.sponsor-meta{
  font-size:14px;
  color:rgba(245,245,247,.75);
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
  margin:0 0 6px;
}
.sponsor-dot{
  width:4px;
  height:4px;
  border-radius:999px;
  background:rgba(245,245,247,.6);
}
.sponsor-learn-more{
  display:inline-flex;
  margin-top:2px;
  font-size:13px;
  font-weight:600;
  color:#bfdbfe;
  text-decoration:underline;
}
.sponsor-learn-more:hover{
  text-decoration:none;
}
.sponsor-close{
  position:absolute;
  right:10px;
  top:10px;
  width:30px;
  height:30px;
  border-radius:999px;
  border:0.1px solid rgba(148,163,184,.5);
  background:rgba(0,0,0,.65);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  outline:none;
  -webkit-tap-highlight-color:transparent;
}
.sponsor-close:hover{
  background:rgba(0,0,0,.9);
}
@media (max-width:640px){
  .sponsor-card{
    border-radius:14px;
  }
  .sponsor-card-left{
    min-width:120px;
    padding:16px 12px;
  }
  .sponsor-card-left p{
    font-size:16px;
  }
  .sponsor-card-right{
    padding:10px 40px 10px 12px;
  }
  .sponsor-title{
    font-size:17px;
  }
  .sponsor-meta{
    font-size:12px;
  }
}
.installBannerText{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.installBannerText strong{
  font-size:13px;
  font-weight:800;
  color:#fff;
}
.installBannerText span{
  font-size:11px;
  color:rgba(255,255,255,.78);
  line-height:1.3;
}
.installBannerActions{
  display:flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
}
.installAction{
  border:0.1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  color:#fff;
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:700;
  cursor:pointer;
}
.installActionPrimary{
  background:rgba(255,45,85,.9);
  border-color:rgba(255,45,85,.9);
}
.mobileTab{
  border:0;
  background:transparent;
  color:rgba(255,255,255,.70);
  text-decoration:none;
  font-size:11px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex-direction:column;
  min-height:52px;
}
.mobileTabIcon{
  font-size:16px;
  line-height:1;
}
.mobileTab.isActive{
  color:#fff;
}
.mobileTabBtn{
  cursor:pointer;
}

.mobileRadioLaunchWrap{
  display:none;
}
.mobileRadioBackdrop{
  display:none;
}
.mobileRadioPanel{
  display:none;
}
.mobilePartnerLaunchWrap{
  display:none;
}
.mobilePartnerBackdrop{
  display:none;
}
.mobilePartnerPanel{
  display:none;
}

.page.mobileAppPage .mobileRadioLaunchWrap{
  display:block;
  margin:0 var(--pad) 14px;
}
.page.mobileAppPage .mobileRadioLaunchBtn{
  width:100%;
  border:0.1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:
    radial-gradient(120% 150% at 90% 0%, rgba(255,45,85,.28), transparent 48%),
    radial-gradient(110% 120% at 0% 100%, rgba(220,38,127,.22), transparent 52%),
    linear-gradient(145deg, #1d1324 0%, #121216 60%, #101114 100%);
  color:#fff;
  min-height:116px;
  padding:16px 16px 14px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  column-gap:14px;
  row-gap:4px;
  text-align:left;
  cursor:pointer;
}
.page.mobileAppPage .mobileRadioLaunchBadge{
  grid-column:1;
  display:inline-flex;
  width:max-content;
  padding:3px 9px;
  border-radius:999px;
  font-size:10px;
  letter-spacing:.1em;
  font-weight:800;
  color:#ffd6e1;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(155,0,30,.45);
}
.page.mobileAppPage .mobileRadioLaunchTitle{
  grid-column:1;
  font-size:20px;
  font-weight:800;
  line-height:1.15;
}
.page.mobileAppPage .mobileRadioLaunchMeta{
  grid-column:1;
  color:rgba(255,255,255,.76);
  font-size:12px;
}
.page.mobileAppPage .mobileRadioLaunchGraphic{
  grid-column:2;
  grid-row:1 / span 3;
  align-self:center;
  display:flex;
  align-items:flex-end;
  gap:4px;
  padding-right:2px;
}
.page.mobileAppPage .mobileRadioLaunchGraphic .bar{
  display:block;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,45,85,.95));
  animation:mobileRadioEq 1.1s ease-in-out infinite;
}
.page.mobileAppPage .mobileRadioLaunchGraphic .b1{ height:12px; animation-delay:.05s; }
.page.mobileAppPage .mobileRadioLaunchGraphic .b2{ height:22px; animation-delay:.18s; }
.page.mobileAppPage .mobileRadioLaunchGraphic .b3{ height:30px; animation-delay:.28s; }
.page.mobileAppPage .mobileRadioLaunchGraphic .b4{ height:18px; animation-delay:.12s; }
.page.mobileAppPage .mobileRadioLaunchGraphic .b5{ height:26px; animation-delay:.23s; }
@keyframes mobileRadioEq{
  0%,100%{ transform:scaleY(.55); opacity:.78; }
  50%{ transform:scaleY(1); opacity:1; }
}

.page.mobileAppPage .mobilePartnerLaunchWrap{
  display:block;
  margin:0 var(--pad) 14px;
}
.page.mobileAppPage .mobilePartnerLaunchBtn{
  width:100%;
  border:0.1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(59,130,246,.28), transparent 50%),
    radial-gradient(95% 130% at 0% 100%, rgba(14,116,144,.26), transparent 54%),
    linear-gradient(145deg, #101a2a 0%, #0f141f 58%, #0d1018 100%);
  color:#fff;
  min-height:96px;
  padding:14px 16px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  column-gap:14px;
  row-gap:4px;
  text-align:left;
  cursor:pointer;
}
.page.mobileAppPage .mobilePartnerLaunchBadge{
  grid-column:1;
  display:inline-flex;
  width:max-content;
  padding:3px 9px;
  border-radius:999px;
  font-size:10px;
  letter-spacing:.1em;
  font-weight:800;
  color:#dbeafe;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(30,64,175,.4);
}
.page.mobileAppPage .mobilePartnerLaunchTitle{
  grid-column:1;
  font-size:20px;
  font-weight:800;
  line-height:1.15;
}
.page.mobileAppPage .mobilePartnerLaunchMeta{
  grid-column:1;
  color:rgba(255,255,255,.76);
  font-size:12px;
}
.page.mobileAppPage .mobilePartnerLaunchIcon{
  grid-column:2;
  grid-row:1 / span 3;
  align-self:center;
  display:grid;
  gap:5px;
}
.page.mobileAppPage .mobilePartnerLaunchIcon span{
  display:block;
  width:22px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,.95), rgba(59,130,246,.92));
}
.page.mobileAppPage .mobilePartnerLaunchIcon span:nth-child(2){ width:14px; justify-self:end; }
.page.mobileAppPage .mobilePartnerLaunchIcon span:nth-child(3){ width:18px; }

.page.mobileAppPage .mobileRadioBackdrop{
  position:fixed;
  inset:0;
  border:0;
  width:100%;
  z-index:140;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  display:block;
}
.page.mobileAppPage .mobileRadioBackdrop.show{
  opacity:1;
  pointer-events:auto;
}
.page.mobileAppPage .mobileRadioPanel{
  --radioDragY: 0px;
  position:fixed;
  left:max(10px, env(safe-area-inset-left));
  right:0;
  top:max(0px, env(safe-area-inset-top));
  bottom:max(0px, env(safe-area-inset-bottom));
  height:auto;
  border-radius:18px 0 0 18px;
  border:0.1px solid rgba(255,255,255,.14);
  border-right:0;
  background:#0a0a0a;
  box-shadow:-16px 0 44px rgba(0,0,0,.52);
  overflow:hidden;
  z-index:150;
  transform:translateX(calc(100% + 12px));
  opacity:0;
  transition:
    transform .28s cubic-bezier(.22,1,.36,1),
    opacity .22s ease,
    width .28s ease,
    height .28s ease,
    left .28s ease,
    right .28s ease,
    top .28s ease,
    bottom .28s ease,
    border-radius .28s ease,
    box-shadow .28s ease;
  display:flex;
  flex-direction:column;
  will-change: transform, width, height;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.page.mobileAppPage .mobileRadioPanel.dragging{
  transition: none !important;
}
.page.mobileAppPage .mobileRadioPanel.open{
  transform:translate3d(0, var(--radioDragY), 0);
  opacity:1;
}
.page.mobileAppPage .mobileRadioPanel.compactHidden{
  left:-10000px !important;
  top:-10000px !important;
  right:auto !important;
  bottom:auto !important;
  width:1px !important;
  height:1px !important;
  border:0 !important;
  box-shadow:none !important;
  opacity:0 !important;
  transform:none !important;
  pointer-events:none !important;
}
.page.mobileAppPage .mobileRadioDragHandle{
  position:absolute;
  left:50%;
  top:8px;
  transform:translateX(-50%);
  width:86px;
  height:20px;
  border:0;
  background:transparent;
  border-radius:999px;
  display:grid;
  place-items:center;
  z-index:3;
  cursor:grab;
  touch-action:none;
  -webkit-tap-highlight-color: transparent;
}
.page.mobileAppPage .mobileRadioDragHandle:active{
  cursor:grabbing;
}
.page.mobileAppPage .mobileRadioGrabber{
  width:42px;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.42);
  box-shadow:0 2px 8px rgba(0,0,0,.24);
}
.page.mobileAppPage .mobileRadioMiniCardFloating{
  --radioMiniDragY: 0px;
  position:fixed;
  right:max(10px, env(safe-area-inset-right));
  bottom:calc(76px + env(safe-area-inset-bottom));
  width:min(92vw, 360px);
  min-height:92px;
  border-radius:12px;
  border:0.1px solid rgba(255,255,255,.14);
  background:rgba(11,11,14,.48);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:0 18px 42px rgba(0,0,0,.56);
  z-index:151;
  display:grid;
  grid-template-columns:minmax(0,1fr) 44px;
  grid-template-rows:20px auto;
  align-items:center;
  transform:translate3d(0, var(--radioMiniDragY), 0);
  transition:transform .24s cubic-bezier(.22,1,.36,1), box-shadow .22s ease, background .22s ease;
  overflow:hidden;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.page.mobileAppPage .mobileRadioMiniCardFloating.dragging{
  transition: none !important;
}
.page.mobileAppPage .mobileRadioMiniDrag{
  grid-column:1 / -1;
  display:grid;
  place-items:center;
  cursor:grab;
  touch-action:none;
  -webkit-tap-highlight-color: transparent;
}
.page.mobileAppPage .mobileRadioMiniDrag:active{
  cursor:grabbing;
}
.page.mobileAppPage .mobileRadioMiniMain{
  align-items:center;
  gap:10px;
  width:100%;
  border:0;
  background:transparent;
  color:#fff;
  text-align:left;
  display:grid;
  grid-template-columns:56px minmax(0,1fr);
  padding:8px 10px;
  cursor:pointer;
}
.page.mobileAppPage .mobileRadioMiniArtWrap{
  width:56px;
  height:56px;
  border-radius:10px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:0.1px solid rgba(255,255,255,.18);
}
.page.mobileAppPage .mobileRadioMiniArt{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.page.mobileAppPage .mobileRadioMiniArtPh{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  opacity:.85;
}
.page.mobileAppPage .mobileRadioMiniMeta{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.page.mobileAppPage .mobileRadioMiniTitle{
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  position:relative;
  width:100%;
  max-width:100%;
}
.page.mobileAppPage .mobileRadioMiniTitleTrack{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  will-change:transform;
  transform:translate3d(0,0,0);
}
.page.mobileAppPage .mobileRadioMiniTitleGap,
.page.mobileAppPage .mobileRadioMiniTitleClone{
  display:none;
}
.page.mobileAppPage .mobileRadioMiniTitle.is-marquee .mobileRadioMiniTitleGap,
.page.mobileAppPage .mobileRadioMiniTitle.is-marquee .mobileRadioMiniTitleClone{
  display:inline-block;
}
.page.mobileAppPage .mobileRadioMiniTitle.is-marquee .mobileRadioMiniTitleTrack{
  animation:mobileRadioMiniTitleMarquee var(--mini-title-duration, 12s) linear infinite;
}
@keyframes mobileRadioMiniTitleMarquee{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(calc(-1 * var(--mini-title-distance, 180px)),0,0); }
}
.page.mobileAppPage .mobileRadioMiniSub{
  font-size:12px;
  color:rgba(255,255,255,.72);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.page.mobileAppPage .mobileRadioMiniPlay{
  align-self:center;
  justify-self:center;
  margin-right:6px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:0.1px solid rgba(255,255,255,.26);
  background:linear-gradient(145deg, #ff2d55, #cf1940);
  color:#fff;
  box-shadow:0 8px 20px rgba(255,45,85,.36), inset 0 1px 1px rgba(255,255,255,.24);
  display:grid;
  place-items:center;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease;
}
.page.mobileAppPage .mobileRadioMiniPlay:active{
  transform:scale(.96);
  filter:brightness(.95);
}
.page.mobileAppPage .mobileRadioPanelBody{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  background:#0a0a0a;
  padding-top:22px;
}
.page.mobileAppPage .mobileRadioPanelBody iframe{
  display:block;
  width:100%;
  height:calc(100% - 22px);
  border:0;
  background:#0a0a0a;
}
.page.mobileAppPage .mobileRadioPanel.compactHidden .mobileRadioLoading,
.page.mobileAppPage .mobileRadioPanel.compactHidden .mobileRadioFallback{
  display:none;
}
.page.mobileAppPage .mobileRadioLoading{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,45,85,.24), transparent 55%),
    #0a0a0a;
  z-index:1;
}
.page.mobileAppPage .mobileRadioLoaderCircle{
  width:36px;
  height:36px;
  border-radius:999px;
  border:3px solid rgba(255,255,255,.18);
  border-top-color:#ff2d55;
  border-right-color:#ff7b95;
  animation:mobileRadioSpin .8s linear infinite;
}
@keyframes mobileRadioSpin{
  to{ transform:rotate(360deg); }
}
.page.mobileAppPage .mobileRadioFallback{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:2;
  border-radius:12px;
  border:0.1px solid rgba(255,255,255,.18);
  background:rgba(10,10,10,.86);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.page.mobileAppPage .mobileRadioFallback p{
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.8);
}
.page.mobileAppPage .mobileRadioRetry{
  align-self:flex-start;
  border:0.1px solid rgba(255,255,255,.18);
  border-radius:10px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:12px;
  font-weight:600;
  padding:6px 10px;
  cursor:pointer;
}

.page.mobileAppPage .mobilePartnerBackdrop{
  position:fixed;
  inset:0;
  border:0;
  width:100%;
  z-index:160;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  display:block;
}
.page.mobileAppPage .mobilePartnerBackdrop.show{
  opacity:1;
  pointer-events:auto;
}
.page.mobileAppPage .mobilePartnerPanel{
  position:fixed;
  left:10px;
  right:10px;
  top:max(8px, env(safe-area-inset-top));
  bottom:max(8px, env(safe-area-inset-bottom));
  height:auto;
  border-radius:18px;
  border:0.1px solid rgba(255,255,255,.14);
  background:#0d0d10;
  box-shadow:0 24px 54px rgba(0,0,0,.52);
  overflow:hidden;
  z-index:170;
  transform:translateY(calc(100% + 24px));
  opacity:0;
  transition:transform .28s ease, opacity .22s ease;
  display:flex;
  flex-direction:column;
}
.page.mobileAppPage .mobilePartnerPanel.open{
  transform:translateY(0);
  opacity:1;
}
.page.mobileAppPage .mobilePartnerPanelTop{
  min-height:46px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-bottom:0.1px solid rgba(255,255,255,.12);
  background:#101117;
}
.page.mobileAppPage .mobilePartnerPanelTitle{
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
}
.page.mobileAppPage .mobilePartnerPanelOpen{
  margin-left:auto;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  border:0.1px solid rgba(255,255,255,.18);
  color:#fff;
  background:rgba(255,255,255,.06);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  font-size:11px;
  font-weight:700;
}
.page.mobileAppPage .mobilePartnerFloatClose{
  width:30px;
  height:30px;
  border-radius:999px;
  border:0.1px solid rgba(255,255,255,.16);
  background:rgba(12,12,14,.7);
  color:#fff;
  font-size:20px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  flex:0 0 auto;
}
.page.mobileAppPage .mobilePartnerPanelBody{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  background:#0a0a0a;
}
.page.mobileAppPage .mobilePartnerPanelBody iframe{
  display:block;
  width:100%;
  height:100%;
  border:0;
  background:#0a0a0a;
}
.page.mobileAppPage .mobilePartnerLoading{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 12%, rgba(59,130,246,.24), transparent 55%),
    #0a0a0a;
  z-index:1;
}
.page.mobileAppPage .mobilePartnerLoaderCircle{
  width:36px;
  height:36px;
  border-radius:999px;
  border:3px solid rgba(255,255,255,.18);
  border-top-color:#60a5fa;
  border-right-color:#93c5fd;
  animation:mobilePartnerSpin .8s linear infinite;
}
@keyframes mobilePartnerSpin{
  to{ transform:rotate(360deg); }
}
.page.mobileAppPage .mobilePartnerFallback{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:2;
  border-radius:12px;
  border:0.1px solid rgba(255,255,255,.18);
  background:rgba(10,10,10,.86);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.page.mobileAppPage .mobilePartnerFallback p{
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.8);
}
body.partner-panel-open{
  overflow:hidden;
}

/* Welcome page styles */
body.welcome-body{
  background:#f5f7fb;
  color:#111827;
}

.welcome{
  --w-bg:#f5f7fb;
  --w-surface:#ffffff;
  --w-text:#111827;
  --w-muted:#5b6475;
  --w-accent:#f97316;
  --w-accent-dark:#d65a0f;
  --w-navy:#0b1b3a;
  --w-navy-2:#0a1530;
  --w-indigo:#243b82;
  --w-border:rgba(15,23,42,.10);
  --w-shadow:0 18px 40px rgba(15,23,42,.14);
  font-family:"Manrope", "Segoe UI", sans-serif;
  background:var(--w-bg);
  color:var(--w-text);
  min-height:100vh;
}

.welcome h1,
.welcome h2,
.welcome h3,
.welcome h4{
  font-family:"Space Grotesk", "Manrope", sans-serif;
  margin:0;
}

.welcome p{ margin:0; color:var(--w-muted); }

.welcome-header{
  background:var(--w-surface);
  border-bottom:0px solid var(--w-border);
  position:sticky;
  top:0;
  z-index:10;
}

.topVav-inner,
.welcome-nav,
.welcome-hero,
.welcome-tabs,
.welcome-tiles,
.welcome-prayer,
.welcome-quote,
.welcome-collab,
.welcome-articles,
.welcome-footer .footer-main,
.welcome-footer .footer-bottom{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

.topVav{
  background:var(--w-navy);
  color:#e2e8f0;
}

.topVav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  font-size:12px;
  color:#e2e8f0;
}

.welcome-top-actions{ display:flex; gap:8px; }

.welcome-pill{
  border:1px solid var(--w-border);
  background:#f0f3ff;
  color:#1f2a44;
  border-radius:999px;
  padding:6px 12px;
  font-size:11px;
  font-weight:700;
  cursor:pointer;
}

.welcome-pill.ghost{ background:transparent; }

.topVav .welcome-pill{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.22);
  color:#f8fafc;
}

.topVav .welcome-pill.ghost{
  background:transparent;
  border-color:rgba(255,255,255,.2);
}

.welcome-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0px 0 0px;
}

.welcome-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.welcome-logo{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, #ffb454, #f97316);
  color:#121826;
  font-weight:800;
  display:grid;
  place-items:center;
  font-size:14px;
  letter-spacing:.06em;
}

.welcome-brand-title{ font-weight:700; font-size:14px; }
.welcome-brand-sub{ font-size:11px; color:var(--w-muted); }

.welcome-nav-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.welcome-nav-item{ position:relative; display:flex; align-items:center; }
.welcome-nav-item.has-mega > .welcome-nav-link:after{
  content:"▾";
  margin-left:6px;
  font-size:11px;
  color:#6b7280;
}
.welcome-nav-item.has-submenu > .welcome-nav-link:after{
  content:"▾";
  margin-left:6px;
  font-size:11px;
  color:#6b7280;
}

.welcome-nav-link{
  text-decoration:none;
  color:#1f2937;
  font-weight:600;
  font-size:13px;
}

.welcome-mega{
  position:absolute;
  top:calc(100% + 28px);
  left:50%;
  width:min(1200px, 92vw);
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .6fr) minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap:0;
  padding:0;
  border-radius:3px;
  border:0px solid rgba(15, 23, 42, .12);
  background:linear-gradient(240deg, #0a1f47, #2e77fc 55%, #1c2a5a);
  box-shadow:0 24px 45px rgba(2,6,23,.35);
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  transform:translate(-50%, 6px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:40;
}
.welcome-nav-item.has-mega.open .welcome-mega{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%, 0);
}
.welcome-submenu{
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
  border-radius:10px;
  box-shadow:0 18px 30px rgba(2,6,23,.18);
  padding:6px;
  opacity:0;
  pointer-events:none;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:45;
}
.welcome-nav-item.has-submenu.open .welcome-submenu{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.welcome-submenu-link{
  display:block;
  text-decoration:none;
  color:#1f2937;
  font-size:13px;
  font-weight:600;
  padding:9px 10px;
  border-radius:8px;
}
.welcome-submenu-link:hover{
  background:#f3f6ff;
}
.mega-col{
  padding:20px 22px;
  color:#ffffff;
  border-right:0px solid rgba(255, 255, 255, .12);
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999999;
}
.mega-col:last-child{ border-right:none; }
.mega-col h4{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#fff;
}
.mega-col p{ margin:0; line-height:1.5; font-size:13px; color:rgba(255,255,255,.78); }
.mega-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:8px;
  background:#f97316;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  width:max-content;
}
.mega-list ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.mega-list li{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:12px;
  padding:0 0 6px;
  border-bottom:1px solid rgba(255,255,255,.14);
  font-size:13px;
  color:#f1f5f9;
}
.mega-live{ justify-self:end; }
.mega-live{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  background:#ea2020;
  color:#fff;
  padding:2px 6px;
  border-radius:2px;
}
.mega-col.mega-list {
  background-color:#122b5a;
}
.mega-live-tv{
  padding:0;
  gap:0;
  background:#0b0b12;
}
.mega-video-link{
  text-decoration:none;
  display:block;
  width:100%;
  height:100%;
}
.mega-video{
  width:100%;
  height:100%;
  min-height:100%;
  border-radius:0;
  border:0;
  background:
    linear-gradient(135deg, rgba(2,6,23,.6), rgba(30,64,175,.35)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='200' viewBox='0 0 360 200'><rect width='360' height='200' fill='%2318285a'/><circle cx='70' cy='70' r='50' fill='%234f46e5' opacity='0.35'/><circle cx='280' cy='140' r='60' fill='%23f97316' opacity='0.35'/><polygon points='150,80 230,120 150,160' fill='%23ffffff' opacity='0.7'/></svg>");
  background-size:cover;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:700;
}
.mega-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  display:block;
}
.mega-feature-col{
  padding:0;
  gap:0;
  background:#eceff4;
}
.mega-feature-media{
  width:100%;
  height:100%;
  display:block;
  text-decoration:none;
}
.mega-feature-slide{
  animation:megaFeatureFade .28s ease-out;
}
.mega-feature-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.mega-feature-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:#1f2937;
  font-weight:700;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
@keyframes megaFeatureFade{
  from{ opacity:.5; transform:scale(1.01); }
  to{ opacity:1; transform:scale(1); }
}

.nav-mini-video{
  position:relative;
  width:132px;
  height:74px;
  border-radius:0px;
  overflow:hidden;
  border:0px solid rgba(15, 23, 42, .2);
  background:#0b1b3a;
  display:grid;
  place-items:center;
  margin:0 4px 0 0;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  box-shadow:0 0 0 rgba(249,115,22,0);
  transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.nav-mini-video:hover,
.nav-mini-video:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(249,115,22,.5);
  box-shadow:0 0 0 1px rgba(249,115,22,.35), 0 8px 18px rgba(249,115,22,.25);
}

.nav-mini-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
}

.nav-mini-placeholder{
  color:#e2e8f0;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background-image:
    linear-gradient(135deg, rgba(15,23,42,.88), rgba(15,23,42,.45)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='180' viewBox='0 0 320 180'><rect width='320' height='180' fill='%230b1b3a'/><circle cx='70' cy='60' r='34' fill='%23f97316' opacity='0.35'/><circle cx='250' cy='130' r='46' fill='%233b82f6' opacity='0.32'/><polygon points='138,70 210,90 138,110' fill='%23ffffff' opacity='0.55'/></svg>");
  background-size:cover;
  background-position:center;
}

.nav-mini-label{
  position:absolute;
  top:6px;
  left:6px;
  background:rgba(15,23,42,.7);
  color:#fff;
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:4px 6px;
  border-radius:999px;
}

.welcome-nav-actions{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }

.welcome-icon-btn{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid var(--w-border);
  background:#f7f8ff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3px;
  cursor:pointer;
}

.welcome-icon-btn .dot{
  width:4px;
  height:4px;
  border-radius:999px;
  background:#1f2937;
}

.welcome-btn{
  border-radius:999px;
  padding:10px 18px;
  border:1px solid var(--w-border);
  background:transparent;
  font-weight:700;
  font-size:12px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.welcome-btn.solid{
  background:var(--w-accent);
  border-color:var(--w-accent);
  color:#fff;
  box-shadow:0 12px 30px rgba(249,115,22,.25);
}

.welcome-btn.outline{
  background:#fff;
  color:#1f2937;
}

.welcome-btn.light{
  background:#fff;
  color:#0f172a;
  border-color:#ffffff70;
}

.welcome-hero{
  margin:0px 0 0;
  background:#0b1b3a;
  color:#fff;
  border-radius:0;
  padding:40px max(16px, calc((100% - 1200px) / 2));
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
  gap:30px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--w-shadow);
  width:100%;
}

.welcome-hero:after{
  content:"";
  position:absolute;
  top:-40px;
  right:-60px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.28), transparent 60%);
  opacity:.6;
  z-index:1;
}

.welcome-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(11,27,58,.8), rgba(11,27,58,.35) 40%, rgba(11,27,58,.85));
  z-index:1;
}

.welcome-hero-slides{
  position:absolute;
  inset:0;
  z-index:0;
}

.welcome-hero-slide{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.45);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.3em;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .8s ease, transform 1.2s ease;
}

.welcome-hero-slide.active{
  opacity:1;
  transform:scale(1);
}

.welcome-hero-slide.hero-slide-a{
  background:linear-gradient(120deg, #532a88, #2b3a7a 50%, #0b1b3a 100%);
}

.welcome-hero-slide.hero-slide-b{
  background:linear-gradient(120deg, #0f172a, #1e3a8a 55%, #0b1b3a 100%);
}

.welcome-hero-slide.hero-slide-c{
  background:linear-gradient(120deg, #4c1d95, #312e81 50%, #0b1b3a 100%);
}

.welcome-hero-content h1{
  font-size:44px;
  font-weight:800;
  letter-spacing:.02em;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.welcome-hero-content h1 span{
  font-size:14px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fcd34d;
}

.welcome-kicker{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.2em;
  color:#fcd34d;
  margin-bottom:8px;
}

.welcome-hero-sub{
  margin-top:12px;
  color:#f5f5f5;
  font-size:14px;
  line-height:1.6;
}

.welcome-hero-meta{
  margin-top:18px;
  font-size:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:#f5f5f5;
}

.welcome-hero-actions{ display:flex; gap:12px; margin-top:18px; }

.welcome-hero-media{
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
}

.welcome-hero-banner{
  margin:0;
  width:100%;
}

.welcome-hero-banner .feature-slider-shell{
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.32);
}

.welcome-hero-banner .feature-slider-dot{
  background:rgba(255,255,255,.9);
  border-color:rgba(255,255,255,.85);
}

.media-placeholder{
  width:100%;
  min-height:240px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.02));
  display:grid;
  place-items:center;
  color:#ffffffb3;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

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

@media (prefers-reduced-motion: reduce){
  .welcome-hero-slide{
    transition:none;
  }
}

.welcome-tabs{
  margin-top:24px;
  display:flex;
  gap:10px;
}

.welcome-tab{
  border-radius:999px;
  border:1px solid var(--w-border);
  background:#fff;
  padding:8px 14px;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
}

.welcome-tab.active{
  background:#0f172a;
  color:#fff;
  border-color:#0f172a;
}

.welcome-tiles{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}

.welcome-tile{
  background:var(--w-surface);
  border:1px solid var(--w-border);
  border-radius:16px;
  padding:16px;
  display:flex;
  gap:12px;
  align-items:center;
  box-shadow:0 8px 20px rgba(15,23,42,.06);
}

.welcome-tile.weather-tile{
  padding:0;
  overflow:hidden;
}

.welcome-tile.weather-tile .ow-topbar{
  height:100%;
  border:0;
  border-radius:16px;
  box-shadow:none;
}

.welcome-tile.weather-tile .ow-topbar__inner{
  background:#141c32;
  padding:16px 18px;
}

.welcome-tile.weather-tile .ow-close{
  display:none;
}

.welcome-tile.notice-tile{
  padding:0;
  overflow:hidden;
}

.welcome-tile.notice-tile .notices-card{
  border:0;
  border-radius:16px;
  box-shadow:none;
  padding:16px;
  background:linear-gradient(135deg, #0f172a, #111827);
  color:#e5e7eb;
  min-height:100%;
}

.welcome-tile.notice-tile .notices-body,
.welcome-tile.notice-tile .notices-title{
  color:#e5e7eb;
}

.welcome-tile.notice-tile .notices-close{
  color:#e5e7eb;
}

.welcome-tile.notice-tile .dot{
  background:#334155;
}

.welcome-tile.notice-tile .dot.active{
  background:#f97316;
}

.welcome-tile h3{ font-size:14px; }
.welcome-tile p{ font-size:12px; }

.tile-logo{
  width:46px;
  height:46px;
  border-radius:12px;
  background:linear-gradient(135deg, #fbbf24, #f97316);
  opacity:.85;
}

.welcome-tile.tone-b .tile-logo{ background:linear-gradient(135deg, #60a5fa, #2563eb); }
.welcome-tile.tone-c .tile-logo{ background:linear-gradient(135deg, #f472b6, #db2777); }
.welcome-tile.tone-d .tile-logo{ background:linear-gradient(135deg, #34d399, #059669); }

.welcome-app{
  margin-top:28px;
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap:24px;
  align-items:center;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:34px max(16px, calc((100vw - 1200px) / 2));
  background:linear-gradient(135deg, #0b1b3a, #101a34 55%, #0f172a);
  border-top:1px solid rgba(255, 255, 255, .07);
  border-bottom:1px solid rgba(255, 255, 255, .07);
}

.welcome-device{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:transparent;
  border-radius:22px;
  border:0;
}

.device-screen{
  flex:1;
  min-height:180px;
  border-radius:16px;
  background:transparent;
  display:grid;
  place-items:center;
  overflow:hidden;
}

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

.device-screen.small{
  flex:.6;
  min-height:140px;
  background:linear-gradient(135deg, #0f172a, #1f2937);
}

.welcome-app-card{
  background:linear-gradient(135deg, #1e3a8a, #0b1b3a);
  border-radius:22px;
  padding:28px;
  color:#fff;
  box-shadow:var(--w-shadow);
}

.welcome-app-card h2{ font-size:24px; margin-bottom:10px; }
.welcome-app-card p{ color:#e0e7ff; line-height:1.6; }
.welcome-app-card .welcome-btn{ margin-top:16px; }

.welcome-prayer{
  margin-top:28px;
  padding:26px 30px;
  background:linear-gradient(120deg, #0b1b3a, #111827);
  border-radius:22px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.welcome-prayer h2{ font-size:22px; margin-bottom:8px; }
.welcome-prayer p{ color:#e5e7eb; max-width:520px; }

.welcome-quote{
  margin-top:28px;
  background:#fff;
  border-radius:22px;
  padding:28px 30px;
  border:1px solid var(--w-border);
  text-align:center;
}

.welcome-quote blockquote{
  margin:0 0 16px;
  font-size:16px;
  color:#1f2937;
}

.quote-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  font-size:12px;
  color:var(--w-muted);
}

.welcome-collab{
  margin-top:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:linear-gradient(135deg, #e3f2ff, #f5f7fb);
  border-radius:22px;
  padding:26px 30px;
  border:1px solid rgba(37,99,235,.12);
}

.welcome-collab h2{ font-size:22px; margin-bottom:8px; }
.welcome-collab p{ max-width:520px; }

.welcome-prayer-center{
  margin-top:30px;
  border-radius:0;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(8,55,103,.82), rgba(6,46,89,.86)),
    url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat;
  color:#fff;
  box-shadow:none;
}

.welcome-prayer-center-inner{
  width:min(1100px, 92%);
  margin:0 auto;
  padding:70px 0 70px;
}

.welcome-prayer-center-top{
  text-align:center;
  margin-bottom:32px;
}

.welcome-prayer-center-top h2{
  margin:0;
  font-size:38px;
  line-height:1.1;
  letter-spacing:-.02em;
}

.welcome-prayer-center-top p{
  margin:12px auto 0;
  max-width:600px;
  color:rgba(235,245,255,.95);
  font-size:16px;
}

.welcome-prayer-center-submit{
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(196,221,247,.92);
  color:#f7fbff;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  border-radius:7px;
  padding:11px 34px;
  background:rgba(28,89,148,.26);
  transition:background .16s ease, border-color .16s ease;
}

.welcome-prayer-center-submit:hover{
  background:rgba(28,89,148,.42);
  border-color:#fff;
}

.welcome-prayer-center-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.welcome-prayer-center-head h3{
  margin:0;
  font-size:34px;
  font-weight:600;
  letter-spacing:-.015em;
}

.welcome-prayer-center-viewall{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#ecf5ff;
  text-decoration:none;
  font-size:20px;
  font-weight:600;
}

.welcome-prayer-center-viewall span{
  font-size:24px;
  line-height:1;
}

.welcome-prayer-center-card{
  border:1px solid rgba(214,231,251,.22);
  border-radius:10px;
  background:rgba(197,217,242,.30);
  backdrop-filter:blur(2px);
  padding:22px;
}

.welcome-prayer-center-card p{
  margin:0;
  color:#e8f2ff;
  font-size:16px;
  line-height:1.7;
  word-break:break-word;
}

.welcome-prayer-center-card.is-loading{
  opacity:.9;
}

.welcome-prayer-center-foot{
  margin-top:18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.welcome-prayer-center-author{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.welcome-prayer-center-author div{
  font-size:24px;
  font-weight:800;
  line-height:1.2;
}

.welcome-prayer-center-author small{
  font-size:14px;
  color:#ecf5ff;
}

.welcome-prayer-center-cta{
  min-width:200px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:7px;
}

.welcome-prayer-center-pray{
  min-width:146px;
  border:1px solid rgba(196,221,247,.92);
  border-radius:8px;
  padding:9px 14px;
  background:rgba(34,95,153,.20);
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.welcome-prayer-center-pray:hover{
  background:rgba(34,95,153,.36);
}

.welcome-prayer-center-pray:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.welcome-prayer-prayed{
  color:#8fed9d;
  font-size:15px;
  font-weight:700;
}

.welcome-prayer-center-cta small{
  color:#deebfa;
  font-size:13px;
}

.welcome-articles{
  margin:0px 0 0;
  width:100%;
  background:#efefef;
  padding:70px 0 70px;
}

.welcome-articles .articles-header,
.welcome-articles .articles-grid{
  width:min(1200px, calc(100% - 32px));
  margin-left:auto;
  margin-right:auto;
}

.articles-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.articles-header p{ margin-top:4px; }

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

.article-card{
  background:#fff;
  border-radius:18px;
  border:1px solid var(--w-border);
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.article-media{
  background:linear-gradient(135deg, #f3f4f6, #dbe1f0);
  min-height:140px;
  display:grid;
  place-items:center;
  color:#6b7280;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.article-body{
  padding:16px;
}

.article-body h3{ font-size:16px; margin-bottom:6px; }
.article-body p{ font-size:12px; }

.welcome-footer{
  margin-top:0px;
  background:#0b1329;
  color:#dbe2f1;
  padding:70px 0 70px;
}

.footer-main{
  display:flex;
  gap:40px;
  justify-content:space-between;
}

.footer-brand p{ color:#aab3c7; margin-top:10px; max-width:260px; }

.footer-social{
  display:flex;
  gap:8px;
  margin-top:12px;
}

.social-dot{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#1f2a44;
  display:inline-block;
}

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

.footer-columns h4{ margin-bottom:10px; font-size:14px; }

.footer-columns a{
  display:block;
  text-decoration:none;
  color:#aab3c7;
  font-size:12px;
  margin-bottom:6px;
}

.footer-bottom{
  margin-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:11px;
  color:#94a3b8;
}

.footer-logos{ display:flex; gap:8px; }
.footer-logos span{
  width:36px;
  height:18px;
  border-radius:4px;
  background:#1f2a44;
  display:inline-block;
}

@media (max-width:1024px){
  .welcome-nav{ flex-direction:column; align-items:flex-start; }
  .welcome-nav-actions{ width:100%; justify-content:flex-end; }
  .welcome-hero{ grid-template-columns: 1fr; }
  .welcome-tiles{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .welcome-app{ grid-template-columns: 1fr; }
  .footer-main{ flex-direction:column; }
  .nav-mini-video{ width:120px; height:68px; }
}

@media (max-width:640px){
  .topVav-inner{ flex-direction:column; gap:8px; align-items:flex-start; }
  .welcome-nav-links{ gap:12px; }
  .welcome-hero{ padding:28px; }
  .welcome-hero-content h1{ font-size:34px; }
  .welcome-tabs{ flex-wrap:wrap; }
  .welcome-tiles{ grid-template-columns: 1fr; }
  .welcome-prayer,
  .welcome-collab{
    flex-direction:column;
    align-items:flex-start;
  }
  .welcome-prayer-center-inner{
    width:min(1100px, 94%);
    padding:22px 0 24px;
  }
  .welcome-prayer-center-top{
    margin-bottom:20px;
  }
  .welcome-prayer-center-top h2{
    font-size:28px;
  }
  .welcome-prayer-center-top p{
    font-size:14px;
  }
  .welcome-prayer-center-submit{
    font-size:15px;
    width:100%;
    padding:10px 12px;
  }
  .welcome-prayer-center-head h3{
    font-size:23px;
  }
  .welcome-prayer-center-viewall{
    font-size:15px;
  }
  .welcome-prayer-center-viewall span{
    font-size:18px;
  }
  .welcome-prayer-center-card{
    padding:16px;
  }
  .welcome-prayer-center-card p{
    font-size:15px;
  }
  .welcome-prayer-center-foot{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
  .welcome-prayer-center-author div{
    font-size:24px;
  }
  .welcome-prayer-center-author small{
    font-size:14px;
  }
  .welcome-prayer-center-cta{
    width:100%;
    align-items:flex-start;
  }
  .welcome-prayer-center-pray{
    width:100%;
    min-width:0;
    font-size:18px;
    padding:10px 14px;
  }
  .welcome-prayer-prayed{
    font-size:16px;
  }
  .welcome-prayer-center-cta small{
    font-size:13px;
  }
  .articles-grid{ grid-template-columns: 1fr; }
  .footer-columns{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; gap:10px; align-items:flex-start; }
  .welcome-nav-actions{ width:100%; justify-content:space-between; }
  .nav-mini-video{ width:100%; height:140px; margin:0; }
}

/* Standard page renderer */
.standard-page{
  min-height:100vh;
  background:#f5f7fb;
  color:#111827;
}

.standard-header{
  display:flex;
  gap:14px;
  align-items:center;
  padding:18px 24px;
  border-bottom:1px solid rgba(15,23,42,.08);
  background:#ffffff;
}

.standard-brand{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, #ffb454, #f97316);
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.06em;
  color:#121826;
}

.standard-title{ font-weight:800; font-size:18px; }
.standard-sub{ font-size:12px; color:#6b7280; }

.standard-content{
  width:min(900px, calc(100% - 32px));
  margin:30px auto 60px;
  display:grid;
  gap:18px;
}

.std-heading{ margin:0; font-size:28px; }
.std-paragraph{ font-size:15px; line-height:1.7; color:#374151; }
.std-paragraph p{ margin:0 0 10px; }
.std-image img{ width:100%; border-radius:16px; display:block; box-shadow:0 12px 30px rgba(15,23,42,.16); }
.std-quote{ padding:18px 20px; border-left:4px solid #f97316; background:#fff7ed; border-radius:12px; }
.std-quote cite{ display:block; margin-top:8px; font-size:12px; color:#9a3412; }
.std-video video{ width:100%; border-radius:16px; display:block; box-shadow:0 12px 30px rgba(15,23,42,.16); background:#0f172a; }
.std-video-title{ margin-top:8px; font-size:13px; color:#6b7280; }
.std-gallery{ display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:12px; }
.std-gallery-item img{ width:100%; border-radius:14px; display:block; box-shadow:0 10px 22px rgba(15,23,42,.12); }
.std-columns{ display:grid; gap:16px; grid-template-columns:repeat(var(--cols, 2), minmax(0, 1fr)); }
.std-column{ background:#ffffff; border-radius:14px; padding:14px; box-shadow:0 10px 22px rgba(15,23,42,.10); color:#374151; font-size:14px; line-height:1.6; }
.std-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-radius:18px;
  background:linear-gradient(120deg, #0f172a, #1f2937);
  color:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.22);
}
.std-cta h3{ margin:0 0 6px; font-size:20px; color:#fff; }
.std-cta p{ margin:0; color:rgba(255,255,255,.78); }
.std-embed{ padding:6px; border-radius:14px; background:#ffffff; box-shadow:0 10px 20px rgba(15,23,42,.12); }
.std-embed iframe,
.std-embed embed,
.std-embed object{ width:100%; min-height:320px; border:0; }
.welcome-block{ width:min(1100px, 92%); margin:0 auto; }

/* I'm New Here (React page) */
.inh-page{
  min-height:100vh;
  background:#efefef;
}

.inh-hero{
  width:100%;
  height:20vh;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(1200px 420px at 80% 20%, rgba(43,175,197,.34), transparent 65%),
    linear-gradient(135deg, #070e41, #3f177f 55%, #111a63);
}

.inh-hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(155deg, rgba(18,28,78,.5), rgba(14,24,58,.26)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 90px, transparent 90px 180px);
  mix-blend-mode:screen;
}

.inh-hero-inner{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.inh-hero h1{
  color:#fff;
  font-size:clamp(34px, 5vw, 64px);
  font-weight:700;
  letter-spacing:.01em;
  margin:0;
}

.inh-main{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  padding:42px 0 74px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.inh-copy{
  width:min(860px, 100%);
  margin:0 auto;
  color:#4a4a4a;
  font-size:16px;
  line-height:1.78;
  font-weight:600;
}

.inh-copy p{
  margin:0 0 16px;
}

.inh-copy .inh-label{
  margin-top:2px;
  font-weight:800;
  letter-spacing:.01em;
  color:#595959;
}

.inh-cards{
  margin-top:56px;
  width:min(980px, 100%);
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.inh-card{
  background:#ececec;
  border:1px solid rgba(17,24,39,.06);
  border-radius:14px;
  padding:24px 22px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-height:344px;
  box-shadow:0 8px 24px rgba(2,6,23,.08);
}

.inh-card-icon{
  width:88px;
  height:88px;
  border-radius:999px;
  background:#2f6796;
  color:#fff;
  display:grid;
  place-items:center;
  margin-bottom:14px;
}

.inh-card-icon svg{
  width:44px;
  height:44px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.inh-card h2{
  font-size:30px;
  line-height:1.1;
  color:#212121;
  margin:0 0 8px;
}

.inh-card p{
  font-size:18px;
  line-height:1.55;
  color:#5a5a5a;
  margin:0 0 20px;
  flex:1;
}

.inh-card a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  min-width:186px;
  height:52px;
  border-radius:6px;
  background:linear-gradient(135deg, #f25f1b, #ef4d12);
  color:#fff;
  font-size:17px;
  font-weight:800;
  letter-spacing:.01em;
}

@media (max-width:1024px){
  .inh-cards{
    grid-template-columns:1fr;
  }
  .inh-card{
    min-height:0;
  }
}

@media (max-width:640px){
  .inh-hero{ height:20vh; }
  .inh-hero-inner{ height:100%; }
  .inh-main{
    padding:30px 0 44px;
  }
  .inh-copy{
    font-size:15px;
    line-height:1.7;
  }
  .inh-card h2{
    font-size:26px;
  }
  .inh-card p{
    font-size:16px;
  }
}

/* About OBN */
.about-page{
  min-height:100vh;
  background:#efefef;
}

.about-hero{
  width:100%;
  background:#e6e6e6;
  padding:0;
  display:grid;
  place-items:center;
}

.about-hero-banner{
  width:min(480px, calc(100% - 32px));
  min-height:240px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(145deg, rgba(8,18,72,.88), rgba(62,20,128,.84)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 90px, transparent 90px 180px);
  color:#fff;
}

.about-hero-banner h1{
  margin:0;
  font-size:56px;
  line-height:1;
  letter-spacing:.01em;
  color:#fff;
}

.about-main{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  padding:64px 0 70px;
}

.about-content{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(0, .55fr);
  gap:38px;
  align-items:start;
}

.about-copy{
  color:#3f3f46;
  font-size:16px;
  line-height:1.75;
}

.about-copy p{
  margin:0 0 16px;
}

.about-copy h2{
  margin:20px 0 10px;
  font-size:18px;
  color:#2f2f37;
}

.about-copy ul{
  margin:0 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.about-copy li{
  position:relative;
  padding-left:14px;
}

.about-copy li::before{
  content:"–";
  position:absolute;
  left:0;
  top:0;
  color:#4b5563;
}

.about-side{
  background:#f6f6f6;
  border:1px solid rgba(15,23,42,.08);
  border-radius:2px;
  padding:8px;
}

.about-side img{
  display:block;
  width:100%;
  height:auto;
  border-radius:1px;
}

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

.about-action-card{
  background:#e9e9ea;
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  text-decoration:none;
  color:inherit;
  min-height:108px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:20px 22px;
}

.about-action-icon{
  width:66px;
  height:66px;
  border-radius:999px;
  background:#f5f7fb;
  border:1px solid rgba(15,23,42,.08);
  display:grid;
  place-items:center;
  color:#2f6796;
  flex:0 0 auto;
}

.about-action-icon svg{
  width:30px;
  height:30px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.about-action-text{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.about-action-text strong{
  font-size:35px;
  line-height:1;
  color:#30343f;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:2px;
}

.about-action-text small{
  font-size:14px;
  line-height:1.45;
  color:#4b5563;
}

@media (max-width:900px){
  .about-content{
    grid-template-columns:1fr;
  }
  .about-side{
    max-width:400px;
  }
  .about-action-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .about-hero-banner{
    min-height:170px;
  }
  .about-hero-banner h1{
    font-size:40px;
  }
  .about-main{
    padding:34px 0 42px;
  }
  .about-copy{
    font-size:15px;
    line-height:1.68;
  }
  .about-action-card{
    min-height:94px;
    padding:14px;
  }
  .about-action-icon{
    width:54px;
    height:54px;
  }
  .about-action-text strong{
    font-size:26px;
  }
}

/* About Us */
.about-us-page{
  min-height:100vh;
  background:#efefef;
}

.about-us-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(260px, .7fr);
  gap:36px;
  align-items:start;
}

.about-us-aside{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

.about-us-aside img{
  width:100%;
  max-width:300px;
  height:auto;
  border:1px solid rgba(15,23,42,.08);
}

.about-us-dots{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}

.about-us-dots span{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#7d7d7d;
}

.about-us-cards{
  margin-top:54px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.about-us-card{
  background:#e9e9ea;
  border:1px solid rgba(15,23,42,.08);
  border-radius:0;
  padding:22px 20px 20px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:310px;
}

.about-us-card-icon{
  width:88px;
  height:88px;
  border-radius:999px;
  background:#2f6796;
  color:#fff;
  display:grid;
  place-items:center;
  margin-bottom:14px;
}

.about-us-card-icon svg{
  width:44px;
  height:44px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.about-us-card h2{
  margin:0 0 8px;
  font-size:36px;
  color:#212121;
  line-height:1.1;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:2px;
}

.about-us-card p{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.65;
  color:#4b5563;
  flex:1;
}

.about-us-card a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  height:44px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg, #f25f1b, #ef4d12);
  font-size:13px;
  font-weight:700;
  letter-spacing:.01em;
}

/* Partner */
.partner-page{
  min-height:100vh;
  background:#efefef;
}

.partner-main{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  padding:52px 0 62px;
}

.partner-layout{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, .9fr);
  gap:26px;
}

.partner-copy{
  color:#585b63;
  font-size:24px;
  line-height:1.75;
  padding:26px 8px 0 16px;
}

.partner-copy p{
  margin:0 0 20px;
}

.partner-copy h2{
  margin:8px 0 18px;
  font-size:66px;
  line-height:1.1;
  color:#111827;
}

.partner-lead{
  font-size:39px;
  line-height:1.55;
  color:#5a5a63;
}

.partner-side{
  display:grid;
  gap:12px;
}

.partner-side-card{
  background:#e9e9ea;
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  min-height:110px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  text-decoration:none;
  color:inherit;
}

.partner-side-icon{
  width:64px;
  height:64px;
  border-radius:999px;
  background:#f5f7fb;
  border:1px solid rgba(15,23,42,.08);
  color:#2f6796;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}

.partner-side-icon svg{
  width:30px;
  height:30px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.partner-side-text{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.partner-side-text strong{
  font-size:37px;
  line-height:1;
  color:#3d3f47;
  text-decoration:underline;
  text-underline-offset:2px;
  text-decoration-thickness:1px;
}

.partner-side-text small{
  font-size:14px;
  color:#4b5563;
}

.partner-cta-band{
  background:#e5e5e5;
  padding:34px 0;
}

.partner-cta-band-inner{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:20px;
  align-items:center;
}

.partner-cta-band p{
  margin:0;
  color:#2f2f37;
  font-size:15px;
  line-height:1.5;
  font-weight:600;
}

.partner-cta-btn{
  min-width:230px;
  height:58px;
  border:2px solid #f25f1b;
  color:#f25f1b;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:28px;
  font-weight:700;
}

/* Ways To Give */
.give-page{
  min-height:100vh;
  background:#efefef;
}

.give-hero{
  min-height:310px;
  background:
    linear-gradient(180deg, rgba(7,36,77,.22), rgba(7,26,58,.28)),
    url('https://images.unsplash.com/photo-1614313913007-2b4ae8ce32d6?auto=format&fit=crop&w=2200&q=80') center / cover no-repeat;
}

.give-hero-overlay{
  min-height:310px;
  display:grid;
  place-items:center;
}

.give-hero-overlay h1{
  margin:0;
  font-size:72px;
  color:#fff;
}

.give-main{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  padding:52px 0 72px;
}

.give-intro{
  max-width:960px;
  margin:0 auto;
}

.give-intro p{
  margin:0;
  color:#54575f;
  font-size:16px;
  line-height:1.95;
}

.give-cards{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.give-card{
  border-radius:26px;
  padding:26px 24px;
  min-height:390px;
  color:#fff;
}

.give-card.light{ background:#84c6e0; color:#0f3656; }
.give-card.dark{ background:#366d97; }
.give-card.mid{ background:#6f88aa; }

.give-icon-wrap{
  width:58px;
  height:58px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  color:#2f3d52;
  margin-bottom:18px;
}

.give-icon-wrap svg{
  width:32px;
  height:32px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.give-card h2{
  margin:0 0 12px;
  font-size:48px;
  line-height:1.05;
}

.give-card p{
  margin:0 0 18px;
  font-size:13px;
  line-height:1.8;
  white-space:normal;
}

.give-card a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:140px;
  height:44px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg, #f25f1b, #ef4d12);
  font-size:16px;
  font-weight:700;
}

@media (max-width:1024px){
  .about-us-layout,
  .partner-layout,
  .partner-cta-band-inner,
  .give-cards{
    grid-template-columns:1fr;
  }
  .about-us-cards{
    grid-template-columns:1fr;
  }
  .partner-copy{
    font-size:20px;
    padding:0;
  }
  .partner-copy h2{
    font-size:52px;
  }
  .partner-lead{
    font-size:30px;
  }
  .give-hero,
  .give-hero-overlay{
    min-height:230px;
  }
}

@media (max-width:640px){
  .welcome-submenu{
    left:auto;
    right:0;
    min-width:200px;
  }
  .about-us-card h2,
  .partner-side-text strong,
  .give-card h2{
    font-size:30px;
  }
  .partner-cta-btn{
    width:100%;
    min-width:0;
    font-size:22px;
  }
  .give-hero-overlay h1{
    font-size:44px;
  }
}

/* Contact + Volunteer */
.cv-page{
  min-height:100vh;
  background:#efefef;
}

.cv-hero{
  width:100%;
  background:#e6e6e6;
  display:grid;
  place-items:center;
}

.cv-hero-banner{
  width:min(520px, calc(100% - 32px));
  min-height:240px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(145deg, rgba(8,18,72,.88), rgba(62,20,128,.84)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 90px, transparent 90px 180px);
}

.cv-hero-banner h1{
  margin:0;
  color:#fff;
  font-size:58px;
  line-height:1;
}

.cv-main{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  padding:58px 0 72px;
}

.cv-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.cv-grid2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.cv-field{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.cv-field span{
  font-size:14px;
  color:#5a5f69;
  font-weight:700;
}

.cv-field small{
  font-size:12px;
  color:#8a909b;
  font-style:italic;
}

.cv-field input,
.cv-field select,
.cv-field textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.18);
  background:#efefef;
  color:#2b3340;
  border-radius:4px;
  padding:10px 12px;
  font-size:14px;
  font-family:inherit;
}

.cv-field textarea{
  resize:vertical;
  min-height:240px;
}

.cv-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:#5b6474;
  line-height:1.5;
}

.cv-check input{
  margin-top:3px;
}

.cv-submit-row{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:14px;
}

.cv-submit-row span{
  font-size:13px;
  color:#7f8794;
}

.cv-submit-row button{
  border:0;
  height:42px;
  min-width:138px;
  background:#3f7fb3;
  color:#fff;
  font-size:16px;
  font-weight:700;
  border-radius:2px;
  cursor:pointer;
}

/* Articles */
.articles-page{
  min-height:100vh;
  background:#efefef;
}

.articles-main{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
  padding:54px 0 72px;
}

.articles-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(260px, .42fr);
  gap:28px;
}

.articles-left .articles-head{
  border-bottom:1px solid rgba(15,23,42,.14);
  margin-bottom:20px;
}

.articles-left .articles-head h1{
  margin:0 0 12px;
  font-size:56px;
  color:#131a24;
}

.articles-page .articles-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px 20px;
}

.article-card-item img,
.article-right-item img{
  width:100%;
  height:auto;
  aspect-ratio: 16 / 9;
  object-fit:cover;
  display:block;
}

.article-title{
  display:inline-block;
  margin-top:10px;
  color:#3d6e9f;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
}

.article-card-item p,
.article-right-item p{
  margin:10px 0 0;
  color:#5b6170;
  font-size:14px;
  line-height:1.8;
}

.articles-right{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.articles-advert{
  width:100%;
  max-width:310px;
  border:1px solid rgba(15,23,42,.08);
}

.articles-right h3{
  margin:6px 0 0;
  color:#f25f1b;
  font-size:34px;
}

.articles-right-list{
  display:grid;
  gap:16px;
}

.article-right-item .article-title{
  font-size:42px;
}

@media (max-width:1024px){
  .cv-grid2{
    grid-template-columns:1fr;
  }
  .articles-layout{
    grid-template-columns:1fr;
  }
  .articles-page .articles-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .cv-hero-banner{
    min-height:170px;
  }
  .cv-hero-banner h1{
    font-size:42px;
  }
  .cv-main{
    padding:34px 0 44px;
  }
  .cv-field textarea{
    min-height:170px;
  }
  .articles-main{
    padding:34px 0 44px;
  }
  .articles-left .articles-head h1{
    font-size:36px;
  }
  .article-right-item .article-title{
    font-size:28px;
  }
}
