@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,600;0,7..72,700;1,7..72,400&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --ink: #07111f;
  --ink-2: #0f1c31;
  --paper: #eef3f9;
  --muted: #6b7a90;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(7,17,31,.1);
  --signal: #ff2d55;
  --aqua: #00e5c7;
  --sky: #3aa0ff;
  --gold: #ffb020;
  --shadow: 0 24px 60px rgba(7,17,31,.28);
  --radius: 18px;
  --nav-h: 72px;
  --font-display: "Source Serif 4", "Times New Roman", Times, Georgia, serif;
  --font-body: "Literata", "Times New Roman", Times, Georgia, serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(58,160,255,.2), transparent 55%),
    radial-gradient(900px 480px at 92% 0%, rgba(255,45,85,.14), transparent 50%),
    linear-gradient(180deg, #081421 0%, #0b1830 34%, var(--paper) 34%, var(--paper) 100%);
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
  word-break: break-word;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 1.25rem));
  margin-inline: auto;
}

/* LIVE BAR */
.live-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7,17,31,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: #fff;
  overflow: hidden;
  max-width: 100%;
}
.live-bar-inner {
  min-height: 40px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  padding: .45rem 0;
  min-width: 0;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--signal);
  white-space: nowrap;
}
.live-pill::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,45,85,.65); }
  70% { box-shadow: 0 0 0 10px rgba(255,45,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,85,0); }
}
.ticker {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: inline-flex;
  gap: 2.2rem;
  animation: ticker 40s linear infinite;
}
.ticker-track span { opacity: .92; font-size: .9rem; }
.ticker-track b { color: var(--aqua); font-weight: 700; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.live-time { font-size: .8rem; color: rgba(255,255,255,.7); white-space: nowrap; }

/* NAV */
.site-header {
  position: sticky;
  top: 40px;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8,20,33,.9);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-width: 100%;
}
.nav-row {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  min-width: 0;
  max-width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-left: auto;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  letter-spacing: -.02em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 52%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand i { font-style: italic; color: var(--aqua); font-weight: 600; }
.nav-links {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  padding: 0 0 .85rem;
  max-width: 100%;
  min-width: 0;
}
.nav-links a {
  color: rgba(255,255,255,.84);
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  padding: 0;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  flex: 0 0 auto;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.search-form {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .22rem .22rem .22rem .85rem;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 auto;
}
.search-form input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  width: min(160px, 28vw);
  min-width: 0;
  flex: 1 1 auto;
}
.search-form input::placeholder { color: rgba(255,255,255,.45); }
.search-form button {
  border: 0;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  padding: .45rem .85rem;
  cursor: pointer;
  font-weight: 700;
}
body.nav-open { overflow: hidden; }

/* HERO */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero-empty { min-height: min(62vh, 560px); }
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,.2) 0%, rgba(7,17,31,.55) 42%, rgba(7,17,31,.94) 100%),
    var(--hero-image) center/cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.4rem;
  max-width: 820px;
}
.hero-kicker {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .74rem;
  color: var(--aqua);
  margin-bottom: .9rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.6vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 .9rem;
  max-width: 15ch;
}
.hero p {
  margin: 0 0 1.3rem;
  font-size: clamp(.98rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.86);
  max-width: 48ch;
}
.hero-cta { display: inline-flex; gap: .7rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .8rem 1.2rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--signal); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost.dark {
  background: #122033;
  color: #fff;
  border: 1px solid rgba(7,17,31,.1);
}

.quick-strip {
  margin-top: -1.2rem;
  position: relative;
  z-index: 5;
  margin-bottom: 1.5rem;
}
.quick-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(7,17,31,.06);
  border-radius: 22px;
  padding: .9rem;
  box-shadow: 0 18px 40px rgba(7,17,31,.12);
}
.quick-chip {
  display: grid;
  gap: .2rem;
  padding: .55rem .7rem;
  border-radius: 14px;
  background: #f4f7fb;
}
.quick-chip span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.quick-chip strong {
  font-size: .98rem;
  color: var(--ink);
}

/* HOME LAYOUT */
.section { padding: 1.2rem 0 2.2rem; }
.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .85fr);
  gap: 1.25rem;
  align-items: start;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin: 0;
  letter-spacing: -.03em;
}
.section-head p { margin: .3rem 0 0; color: var(--muted); }
.section-link { color: var(--signal); font-weight: 700; white-space: nowrap; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.news-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .25s ease;
}
.news-card:hover { transform: translateY(-3px); }
.news-card.featured { grid-column: span 8; }
.news-card.wide { grid-column: span 6; }
.thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1b2b44;
}
.news-card.featured .thumb { aspect-ratio: 16/9; min-height: 280px; }
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .thumb img { transform: scale(1.04); }
.badge {
  display: inline-flex;
  align-items: center;
  padding: .28rem .6rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--signal);
}
.badge.on-media {
  position: absolute;
  left: .75rem;
  top: .75rem;
  z-index: 2;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0;
}
.news-card.featured h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); }
.news-card p { margin: 0; color: #425468; line-height: 1.55; }

.stream-panel {
  background: var(--ink-2);
  color: #fff;
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  margin-top: 1.4rem;
}
.stream-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0,229,199,.22), transparent 70%);
}
.stream-list { display: grid; gap: .9rem; position: relative; }
.stream-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: .8rem;
  align-items: center;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stream-item:last-child { border-bottom: 0; padding-bottom: 0; }
.stream-item .thumb { aspect-ratio: 1; border-radius: 12px; }
.stream-item h3 { font-size: .98rem; color: #fff; margin: .2rem 0 0; }
.stream-item .meta { color: rgba(255,255,255,.55); }

.category-block { margin-top: 2rem; }
.category-list { display: grid; gap: .8rem; }
.category-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .7rem;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(7,17,31,.05);
}
.category-item .thumb { aspect-ratio: 4/3; border-radius: 12px; }
.category-item h3 {
  margin: .25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
}

/* WIDGETS */
.widgets-stack { display: grid; gap: 1rem; position: sticky; top: 120px; }
.widget {
  background: #fff;
  border: 1px solid rgba(7,17,31,.06);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(7,17,31,.06);
}
.widget-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
}
.widget-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.widget-head span { color: var(--muted); font-size: .8rem; font-weight: 600; }
.widget-empty { margin: 0; color: var(--muted); }

.weather-now {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .85rem;
  align-items: center;
}
.weather-temp {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.weather-text { font-weight: 700; margin-top: .15rem; }
.weather-place { color: var(--muted); font-size: .85rem; }
.weather-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .9rem;
}
.weather-meta span {
  background: #f3f6fb;
  border-radius: 999px;
  padding: .35rem .65rem;
  font-size: .78rem;
  font-weight: 700;
  color: #314457;
}
.weather-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-top: .9rem;
}
.weather-day {
  background: #f7f9fc;
  border-radius: 14px;
  padding: .65rem .45rem;
  text-align: center;
  display: grid;
  gap: .35rem;
  justify-items: center;
}
.weather-day strong { font-size: .78rem; }
.weather-day em { font-style: normal; font-size: .78rem; color: var(--muted); font-weight: 700; }

.weather-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(160deg, #ffd36a, #ff9f1c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.weather-mark.sm { width: 28px; height: 28px; border-radius: 10px; }
.weather-mark.tone-cloud { background: linear-gradient(160deg, #9eb6d4, #6f8db0); }
.weather-mark.tone-rain { background: linear-gradient(160deg, #5aa7ff, #2f6fbf); }
.weather-mark.tone-snow { background: linear-gradient(160deg, #dce9f8, #9fbee0); }
.weather-mark.tone-fog { background: linear-gradient(160deg, #c9d2dc, #9aa7b5); }
.weather-mark.tone-storm { background: linear-gradient(160deg, #5b6780, #243047); }
.weather-mark::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
}
.weather-mark.sm::after { inset: 8px; }
.weather-mark.tone-rain::after,
.weather-mark.tone-storm::after {
  inset: auto 22px 14px 22px;
  height: 18px;
  border-radius: 0 0 16px 16px;
}
.weather-mark.sm.tone-rain::after,
.weather-mark.sm.tone-storm::after {
  inset: auto 8px 6px 8px;
  height: 8px;
}

.prayer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}
.prayer-item {
  background: #f7f9fc;
  border-radius: 12px;
  padding: .65rem .7rem;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  font-size: .9rem;
}
.prayer-item span { color: var(--muted); font-weight: 600; }

.link-list { display: grid; gap: .55rem; }
.link-list a {
  display: grid;
  gap: .15rem;
  padding: .7rem .8rem;
  border-radius: 14px;
  background: #f7f9fc;
}
.link-list a:hover { background: #eef5ff; }
.link-list strong { font-size: .95rem; }
.link-list span { color: var(--muted); font-size: .8rem; }

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .15rem;
  border-bottom: 1px solid rgba(7,17,31,.06);
}
.info-list li:last-child { border-bottom: 0; }
.info-list span { color: var(--muted); font-weight: 600; }

/* ARTICLE */
.article-page { padding: 1.5rem 0 3.5rem; }
.article-hero { margin-bottom: 1.2rem; }
.article-hero .thumb {
  aspect-ratio: 21/9;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: #061018;
  box-shadow: var(--shadow);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-inline-cover {
  margin: 0 0 1.2rem;
  border-radius: 16px;
  overflow: hidden;
}
.article-inline-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-body {
  width: min(760px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7,17,31,.06);
  border-radius: 24px;
  padding: clamp(1.1rem, 3vw, 2.2rem);
}
.article-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: .75rem 0 1rem;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #223247;
}
.article-content p { margin: 0 0 1.1rem; }
.article-content a { color: var(--sky); text-decoration: underline; }
.article-source {
  margin-top: 1.8rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line-dark);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7,17,31,.03), rgba(0,229,199,.08));
}
.article-source-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.article-source a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-source-url {
  margin-top: .35rem;
  font-size: .8rem;
  color: var(--muted);
  word-break: break-all;
}

.page-title { padding: 2rem 0 1rem; color: #fff; }
.page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
}
.empty-state {
  padding: 2.4rem 1.2rem;
  text-align: center;
  background: rgba(255,255,255,.75);
  border-radius: 22px;
  color: var(--muted);
}

.site-footer {
  margin-top: 2.5rem;
  padding: 2.2rem 0;
  background: var(--ink);
  color: rgba(255,255,255,.75);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.site-footer .brand { font-size: 1.35rem; }
.site-footer small { color: rgba(255,255,255,.5); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
}
.footer-links a { color: rgba(255,255,255,.8); font-weight: 600; }

/* DIRECTORY */
.directory-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  align-items: center;
}
.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  flex: 1;
}
.directory-filters input,
.directory-filters select,
.biz-form input,
.biz-form select,
.biz-form textarea {
  border: 1px solid rgba(7,17,31,.1);
  background: #fff;
  border-radius: 14px;
  padding: .75rem .9rem;
  min-width: 0;
}
.directory-filters input { flex: 1; min-width: 160px; }
.directory-filters select { min-width: 170px; }
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.directory-card {
  background: #fff;
  border: 1px solid rgba(7,17,31,.06);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(7,17,31,.05);
}
.directory-cat {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #0b5;
  background: rgba(0,229,199,.12);
  color: #0a7a6a;
  border-radius: 999px;
  padding: .28rem .6rem;
  margin-bottom: .55rem;
}
.directory-card h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.directory-card p {
  margin: 0 0 .8rem;
  color: #425468;
  line-height: 1.5;
}
.directory-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.directory-meta li {
  display: grid;
  gap: .1rem;
  font-size: .92rem;
}
.directory-meta span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.biz-form {
  background: #fff;
  border: 1px solid rgba(7,17,31,.06);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(7,17,31,.06);
}
.biz-form label {
  display: block;
  margin: .85rem 0 .35rem;
  font-weight: 700;
  color: #314457;
}
.biz-form input,
.biz-form select,
.biz-form textarea { width: 100%; }
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.form-errors {
  background: rgba(255,45,85,.08);
  border: 1px solid rgba(255,45,85,.25);
  color: #a11432;
  border-radius: 14px;
  padding: .9rem 1rem;
  margin-bottom: 1rem;
  display: grid;
  gap: .35rem;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

.legal-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,17,31,.06);
  border-radius: 24px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  line-height: 1.7;
  color: #223247;
  box-shadow: 0 14px 36px rgba(7,17,31,.06);
}
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.6rem 0 .7rem;
  letter-spacing: -.02em;
}
.legal-card p { margin: 0 0 .9rem; }
.legal-card ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.legal-card li { margin: .35rem 0; }
.legal-card a { color: #1f6feb; text-decoration: underline; text-underline-offset: 2px; }
.legal-note { margin-top: 1.4rem; color: var(--muted); font-size: .92rem; }

.cookie-bar {
  position: fixed;
  left: max(.6rem, env(safe-area-inset-left));
  right: max(.6rem, env(safe-area-inset-right));
  bottom: max(.6rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar-inner {
  width: min(920px, 100%);
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: .85rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: rgba(7,17,31,.94);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: .95rem 1.1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}
.cookie-bar p {
  margin: 0;
  flex: 1 1 220px;
  min-width: 0;
  max-width: 100%;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  line-height: 1.45;
}
.cookie-bar a { color: var(--aqua); text-decoration: underline; }
.cookie-bar .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.egg-toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%) translateY(12px);
  z-index: 95;
  background: rgba(7,17,31,.94);
  color: #fff;
  border: 1px solid rgba(0,229,199,.35);
  border-radius: 999px;
  padding: .7rem 1.1rem;
  font-size: .92rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
  max-width: min(90vw, 420px);
  text-align: center;
}
.egg-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.egg-toast[hidden] { display: none !important; }
.egg-aurora {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  background:
    radial-gradient(600px 280px at 20% 20%, rgba(0,229,199,.18), transparent 60%),
    radial-gradient(500px 260px at 80% 30%, rgba(58,160,255,.16), transparent 55%),
    radial-gradient(420px 240px at 50% 80%, rgba(255,45,85,.12), transparent 55%);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.egg-aurora.show { opacity: 1; }
.egg-aurora[hidden] { display: none !important; }
.brand.egg-glow i {
  text-shadow: 0 0 18px rgba(0,229,199,.65);
  transition: text-shadow .4s ease;
}
.live-pill.egg-wink {
  color: var(--aqua);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .home-grid { grid-template-columns: 1fr; }
  .widgets-stack { position: static; grid-template-columns: repeat(2, 1fr); }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: grid; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: .15rem;
    padding: 0 0 1rem;
    max-height: min(70vh, 520px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: .9rem 1rem;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    white-space: normal;
  }
}

@media (max-width: 960px) {
  .news-card,
  .news-card.featured,
  .news-card.wide { grid-column: span 12; }
  .news-card.featured .thumb { min-height: 220px; }
  .quick-strip-inner { grid-template-columns: 1fr 1fr; }
  .live-time { display: none; }
  .hero { min-height: 58vh; }
  .hero-content { padding: 2.4rem 0 1.8rem; }
  .search-form input { width: 72px; }
  .form-two { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1rem, 1180px); }
  .quick-strip-inner { grid-template-columns: 1fr; }
  .widgets-stack { grid-template-columns: 1fr; }
  .category-item { grid-template-columns: 88px 1fr; }
  .article-hero .thumb,
  .video-frame { aspect-ratio: 16/10; border-radius: 18px; }
  .live-bar-inner { grid-template-columns: auto minmax(0, 1fr); }
  .brand { font-size: 1.1rem; max-width: 46%; }
  .nav-row { min-height: 64px; gap: .35rem; }
  .site-header { top: 38px; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-toolbar { flex-direction: column; align-items: stretch; }
  .search-form { padding-left: .65rem; }
  .search-form input { width: 56px; }
  .search-form button { padding: .45rem .65rem; font-size: .85rem; }
  .cookie-bar {
    left: max(.5rem, env(safe-area-inset-left));
    right: max(.5rem, env(safe-area-inset-right));
    bottom: max(.5rem, env(safe-area-inset-bottom));
  }
  .cookie-bar-inner {
    padding: .85rem;
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .cookie-bar p {
    flex: 1 1 auto;
    font-size: .86rem;
  }
  .cookie-bar .btn {
    width: 100%;
    text-align: center;
  }
}
