:root {
  --bg: #050713;
  --panel: rgba(10, 14, 31, 0.78);
  --panel-strong: rgba(6, 9, 22, 0.94);
  --text: #f7f8ff;
  --muted: #b9c0d8;
  --soft: #e8ecff;
  --pink: #ff3fa8;
  --blue: #36c8ff;
  --gold: #f3c84f;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Avenir Next", Avenir, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 200, 255, .16), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(255, 63, 168, .10), transparent 34%),
    linear-gradient(180deg, #070a19 0%, var(--bg) 44%, #02030a 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }

.top-banner {
  width: min(1280px, calc(100% - 36px));
  margin: 22px auto 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #02030a;
  box-shadow: 0 20px 70px rgba(0,0,0,.42);
}
.top-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 10 / 3;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(54,200,255,.15), transparent 28%),
    radial-gradient(circle at 78% 26%, rgba(255,63,168,.10), transparent 32%),
    linear-gradient(180deg, rgba(2,3,10,.12), rgba(2,3,10,.74));
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 64px);
  background: rgba(2, 3, 10, 0.58);
  backdrop-filter: blur(14px);
}
.brand-text {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.nav-links a:hover, .brand-text:hover { color: #fff; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(740px, calc(100% - 36px));
  margin: auto auto 56px clamp(18px, 6vw, 96px);
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(5,7,19,.82), rgba(5,7,19,.48));
  box-shadow: 0 0 70px rgba(255, 63, 168, .12), 0 18px 60px rgba(0,0,0,.38);
  backdrop-filter: blur(13px);
}
.main-logo { width: min(460px, 100%); display: block; margin-bottom: 12px; }
.eyebrow, .section-kicker {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 13px;
  font-weight: 900;
}
h1 { font-size: clamp(42px, 6vw, 78px); line-height: .98; margin: 10px 0 18px; letter-spacing: -.035em; }
h2 { font-size: clamp(30px, 4vw, 48px); margin: 0 0 12px; letter-spacing: -.025em; }
h3 { font-size: 24px; margin: 0 0 10px; }
p { color: var(--muted); line-height: 1.65; }
.lead { font-size: 19px; color: var(--soft); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover, button:hover { transform: translateY(-1px); }
.button.primary, button.primary {
  color: #fff;
  background: #143f73;
  box-shadow: 0 0 22px rgba(54, 200, 255, .14);
}
.button.primary:hover, button.primary:hover { background: #19518f; }
.button.secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  box-shadow: none;
}
.button.secondary:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.12); }

main { width: min(1180px, calc(100% - 36px)); margin: 42px auto; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.listen-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(54,200,255,.08), rgba(255,255,255,.03)), var(--panel-strong);
}
.player {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: radial-gradient(circle at top left, rgba(54,200,255,.14), transparent 48%), rgba(2,3,10,.66);
}
.player-topline { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.live-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 16px var(--blue); }
a#directLink, .email-line a { color: var(--blue); font-weight: 900; }
.play-control {
  width: 100%;
  min-height: 72px;
  border-radius: 22px;
  margin: 16px 0 12px;
  font-size: 20px;
  gap: 14px;
  color: #fff;
  background: #143f73;
  box-shadow: 0 0 30px rgba(54,200,255,.12), inset 0 0 0 1px rgba(255,255,255,.14);
}
.play-control:hover { background: #19518f; }
#playIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.mini-status { color: var(--muted); font-size: 14px; margin: 4px 0 12px; }

.data-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(54,200,255,.08), rgba(255,255,255,.03)), var(--panel);
}
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.data-item {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.055);
}
.data-item span { display: block; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.data-item strong { display: block; margin-top: 8px; color: #fff; font-size: 22px; }

.about-section { margin: 18px 0; }
.about-main { margin-bottom: 18px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 190px; }
.feature-card:nth-child(1) { border-color: rgba(54,200,255,.30); }
.feature-card:nth-child(2) { border-color: rgba(243,200,79,.28); }
.feature-card:nth-child(3) { border-color: rgba(255,255,255,.22); }

.simple-contact {
  display: block;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.stream-spec strong { color: #fff; }
footer { text-align: center; padding: 34px 18px; color: var(--muted); border-top: 1px solid var(--line); }
.volunteer-note {
  max-width: 920px;
  margin: 0 auto 14px;
  font-size: 13px;
  color: rgba(185,192,216,.78);
}
code { color: #fff; background: rgba(255,255,255,.1); padding: 2px 6px; border-radius: 6px; }

@media (max-width: 820px) {
  .top-banner img { min-height: 220px; }
  .hero { min-height: 700px; }
  .nav { align-items: flex-start; flex-direction: column; gap: 12px; }
  .brand-text { font-size: 11px; line-height: 1.45; }
  .nav-links { gap: 18px; flex-wrap: wrap; }
  .hero-content { margin: auto 18px 44px; padding: 24px; }
  .listen-card, .data-card, .grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
}
