
:root {
  --bg: #08121e;
  --bg-soft: #0c1827;
  --panel: rgba(14, 24, 39, 0.92);
  --panel-strong: #0f1f32;
  --panel-2: #13243a;
  --text: #f5f7fb;
  --muted: #b9c6d7;
  --line: rgba(255,255,255,.1);
  --line-2: rgba(255,255,255,.16);
  --accent: #f8b400;
  --accent-2: #ef4444;
  --accent-3: #3b82f6;
  --ok: #22c55e;
  --max: 1320px;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 18px 42px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(248,180,0,.09), transparent 24%),
    radial-gradient(circle at top left, rgba(59,130,246,.08), transparent 34%),
    linear-gradient(180deg, #060f18 0%, #08121e 36%, #0a1725 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
input, textarea, select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 14px 16px;
}
textarea { min-height: 150px; resize: vertical; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 800; }
.kicker .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--accent-2); box-shadow: 0 0 0 7px rgba(239,68,68,.18); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--muted); font-size: .9rem; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.04; letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -.03em; }
h3 { font-size: clamp(1.08rem, 2vw, 1.45rem); line-height: 1.2; }
p { color: var(--muted); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; gap: 10px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #111722; background: linear-gradient(135deg, var(--accent), #ff8a00); box-shadow: 0 12px 26px rgba(248,180,0,.25); }
.btn-secondary { color: var(--text); background: rgba(255,255,255,.04); border-color: var(--line-2); }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.24); color: #cfe1ff; font-size: .84rem; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(18px); background: rgba(6,15,24,.82); border-bottom: 1px solid rgba(255,255,255,.08); }
.topstrip { border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02); color: var(--muted); font-size: .88rem; }
.topstrip-inner { min-height: 42px; display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.live-pill { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.live-pill span:first-child { width: 10px; height: 10px; border-radius: 999px; background: var(--accent-2); box-shadow: 0 0 0 7px rgba(239,68,68,.18); }
.header-main { min-height: 82px; display: flex; gap: 20px; align-items: center; justify-content: space-between; }
.brand { display: flex; gap: 12px; align-items: center; min-width: max-content; }
.brand-mark { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #10141d; font-weight: 900; font-size: 1.2rem; background: linear-gradient(135deg, rgba(248,180,0,.98), rgba(255,143,0,.95)); box-shadow: 0 10px 22px rgba(248,180,0,.24); }
.brand-copy strong { display: block; font-size: 1.16rem; letter-spacing: .16em; text-transform: uppercase; }
.brand-copy span { display: block; color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; }
.nav a { position: relative; color: var(--muted); font-weight: 700; font-size: .95rem; padding: 10px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; border-radius: 999px; background: var(--accent); opacity: 0; transform: scaleX(.35); transition: opacity .2s ease, transform .2s ease; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav a:hover::after, .nav a.active::after { opacity: 1; transform: scaleX(1); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.breaking-bar { background: linear-gradient(90deg, rgba(173,26,26,.96), rgba(239,68,68,.94)); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.breaking-track { display: flex; overflow: hidden; gap: 36px; white-space: nowrap; padding: 12px 0; font-weight: 800; }
.breaking-item::before { content: "Breaking"; margin-right: 10px; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.9); color: #651313; font-size: .72rem; letter-spacing: .02em; }
.page-hero { padding: 46px 0 28px; }
.hero-grid { display: grid; grid-template-columns: 1.3fr .95fr; gap: 26px; }
.card, .hero-card, .panel, .story-card, .value-card, .video-card, .show-card, .contact-card, .directory-card, .table-shell, .cta-shell { background: linear-gradient(180deg, rgba(16,28,46,.94), rgba(11,20,33,.95)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card { overflow: hidden; position: relative; padding: 34px; min-height: 620px; display: grid; align-content: end; background: linear-gradient(180deg, rgba(3,8,13,.18), rgba(3,7,13,.74)), radial-gradient(circle at top right, rgba(248,180,0,.16), transparent 28%), linear-gradient(135deg, #143155 0%, #0b1321 55%, #09111d 100%); }
.hero-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent 0 55%, rgba(255,255,255,.035) 56% 58%, transparent 59%), linear-gradient(35deg, transparent 0 65%, rgba(248,180,0,.08) 66% 68%, transparent 69%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.panel { padding: 24px; }
.stack { display: grid; gap: 18px; }
.live-window { padding: 22px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.1); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); }
.live-screen { border-radius: var(--radius-sm); min-height: 220px; display: grid; place-items: center; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.38)), radial-gradient(circle at top left, rgba(59,130,246,.18), transparent 35%), linear-gradient(135deg, #15263c, #0c1624); border: 1px solid rgba(255,255,255,.08); text-align: center; padding: 20px; }
.live-screen strong { display: block; font-size: clamp(1.4rem, 3vw, 2rem); }
.live-screen span { color: #d8e3f2; }
.metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.metric { padding: 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.metric strong { display: block; font-size: 1.3rem; margin-bottom: 4px; }
.metric span { color: var(--muted); font-size: .92rem; }
.news-grid, .cards-grid, .videos-grid, .values-grid, .shows-grid, .contact-grid { display: grid; gap: 18px; }
.news-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.videos-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.values-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.shows-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.contact-grid { grid-template-columns: 1.1fr .9fr; }
.story-card, .video-card, .value-card, .show-card, .contact-card { padding: 22px; }
.story-card { min-height: 100%; }
.story-top { display: flex; justify-content: space-between; gap: 12px; align-items: start; margin-bottom: 14px; }
.story-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; color: var(--muted); font-size: .88rem; }
.category { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: rgba(248,180,0,.12); border: 1px solid rgba(248,180,0,.24); color: #ffdc88; font-size: .82rem; font-weight: 800; }
.video-thumb { min-height: 170px; border-radius: 18px; margin-bottom: 16px; display: grid; place-items: end start; padding: 18px; border: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at top right, rgba(248,180,0,.18), transparent 30%), linear-gradient(135deg, #163052, #0d1522); }
.video-duration { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(8,18,30,.76); border: 1px solid rgba(255,255,255,.1); font-size: .82rem; font-weight: 800; }
.value-card h3, .show-card h3, .contact-card h3 { margin-bottom: 10px; }
.show-slot { display: inline-flex; padding: 6px 10px; border-radius: 999px; margin-bottom: 12px; background: rgba(59,130,246,.13); border: 1px solid rgba(59,130,246,.22); color: #d5e5ff; font-size: .82rem; font-weight: 700; }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; }
.content-points { display: grid; gap: 14px; }
.point { padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.point strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.tab-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.tab-btn { border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--text); padding: 12px 16px; border-radius: 999px; font-weight: 700; cursor: pointer; }
.tab-btn.active { background: linear-gradient(135deg, rgba(248,180,0,.16), rgba(255,143,0,.18)); border-color: rgba(248,180,0,.28); color: #fff2cc; }
.table-shell { overflow: hidden; }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th, .schedule-table td { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
.schedule-table th { text-align: left; font-size: .9rem; color: var(--muted); background: rgba(255,255,255,.03); }
.schedule-table tr:hover td { background: rgba(255,255,255,.02); }
.feature-banner { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02)), radial-gradient(circle at top right, rgba(59,130,246,.14), transparent 28%), linear-gradient(135deg, rgba(17,28,43,.98), rgba(10,18,29,.95)); }
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-wrap { display: grid; grid-template-columns: 1fr 220px; gap: 14px; }
.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.directory-card { padding: 20px; }
.directory-card h3 { margin-bottom: 6px; }
.meta-list { display: grid; gap: 8px; margin-top: 14px; color: var(--muted); font-size: .95rem; }
.meta-list strong { color: var(--text); margin-right: 8px; }
.contact-list { display: grid; gap: 14px; }
.contact-item { padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.contact-item strong { display: block; margin-bottom: 4px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.footer { padding: 30px 0 48px; }
.footer-shell { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(10,18,29,.94), rgba(8,15,24,.96)); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 22px; }
.footer-links { display: grid; gap: 10px; }
.footer-note { color: var(--muted); margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: .92rem; }
.empty-state { padding: 28px; text-align: center; border-radius: 18px; border: 1px dashed rgba(255,255,255,.2); color: var(--muted); grid-column: 1 / -1; }
@media (max-width: 1120px) {
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .news-grid, .values-grid, .directory-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .videos-grid, .shows-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .header-main { min-height: 74px; }
  .nav { width: 100%; justify-content: flex-start; }
  .header-main { flex-wrap: wrap; padding: 12px 0 14px; }
  .header-actions { width: 100%; justify-content: flex-start; }
  .metrics { grid-template-columns: 1fr; }
  .news-grid, .videos-grid, .values-grid, .shows-grid, .directory-grid, .cards-grid.two, .cards-grid.three, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .filter-wrap { grid-template-columns: 1fr; }
  .hero-card { min-height: 520px; padding: 26px; }
  .section { padding: 62px 0; }
}
