:root {
  --bg: #061827;
  --bg2: #073936;
  --card: rgba(9, 28, 49, .82);
  --card2: rgba(5, 18, 34, .78);
  --line: rgba(120, 178, 230, .28);
  --text: #eef7ff;
  --muted: #bfd0e5;
  --green: #3bd2a5;
  --cyan: #35c6f4;
  --blue: #24568f;
  --orange: #ff9f1a;
  --red: #ff5b4a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(53,198,244,.16), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(59,210,165,.17), transparent 34%),
    linear-gradient(135deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

a {
  color: inherit;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.10));
  animation: gridMove 24s linear infinite;
  z-index: -4;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
  z-index: -3;
}

.orb-one {
  width: 420px;
  height: 420px;
  left: -150px;
  top: 110px;
  background: rgba(53,198,244,.20);
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-two {
  width: 430px;
  height: 430px;
  right: -130px;
  bottom: -140px;
  background: rgba(59,210,165,.20);
  animation: orbFloat2 17s ease-in-out infinite;
}

@keyframes gridMove {
  from { transform: translateY(0); }
  to { transform: translateY(54px); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(70px,-38px,0) scale(1.08); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-70px,-44px,0) scale(1.08); }
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 18, 34, .62);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 14px;
  z-index: 10;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #041d28;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(53,198,244,.22);
}

.brand strong {
  display: block;
  font-size: 17px;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 13px;
  color: #eaf6ff;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.navlinks a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(120,178,230,.26);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
  padding: 64px 0 34px;
}

.hero-copy,
.live-card,
.panel,
.community,
.socials,
.info-card,
.community-card {
  animation: enter .6s ease both;
}

@keyframes enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.pill,
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: #b9fff0;
  background: rgba(59,210,165,.14);
  border: 1px solid rgba(59,210,165,.38);
  font-weight: 900;
  font-size: 13px;
}

h1 {
  margin: 18px 0 8px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -.075em;
}

.subtitle {
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  color: #dffff8;
  font-weight: 950;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 950;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #041d28;
  box-shadow: 0 16px 34px rgba(53,198,244,.20);
}

.btn.secondary {
  background: rgba(8,24,43,.72);
  color: #fff;
  border: 1px solid rgba(120,178,230,.30);
}

.live-card,
.panel,
.socials {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(10,31,54,.92), rgba(4,18,34,.86));
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35), 0 0 70px rgba(53,198,244,.09);
  position: relative;
  overflow: hidden;
}

.live-card::after,
.panel::after,
.socials::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.045), transparent 80%);
  transform: translateX(-130%);
  animation: shine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 55% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}

.live-head {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,159,26,.12);
  border: 1px solid rgba(255,159,26,.36);
  color: #ffe6bc;
  font-weight: 900;
  font-size: 13px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255,159,26,.45);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,159,26,.42); }
  50% { box-shadow: 0 0 0 9px rgba(255,159,26,0); }
}

.live-card h2 {
  font-size: 34px;
  margin: 20px 0 8px;
}

.live-card p,
.panel p,
.socials p,
.info-card p {
  color: var(--muted);
  line-height: 1.65;
}

audio {
  width: 100%;
  margin: 18px 0 10px;
  border-radius: 14px;
}

.player-note {
  margin-top: 14px;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(59,210,165,.10);
  border: 1px solid rgba(59,210,165,.30);
  color: #dffff8;
  line-height: 1.5;
  font-weight: 750;
}

.section {
  padding: 34px 0;
}

.section-title {
  margin-bottom: 18px;
}

.section-title span {
  color: #9fffee;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 950;
}

.section-title h2 {
  margin: 6px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.045em;
}

.section-title.compact h2 {
  font-size: 34px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.community-card {
  border: 1px solid var(--line);
  background: rgba(5,18,34,.62);
  border-radius: 22px;
  padding: 22px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.info-card:hover,
.community-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,210,165,.42);
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
}

.info-card small {
  color: #9fffee;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
  font-size: 12px;
}

.info-card strong {
  display: block;
  font-size: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.schedule {
  display: grid;
  gap: 12px;
}

.schedule div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(4,14,27,.62);
  border: 1px solid rgba(120,178,230,.22);
}

.schedule span {
  color: #9fffee;
  font-weight: 900;
}

.community {
  border: 1px solid var(--line);
  background: rgba(5,18,34,.50);
  border-radius: 26px;
  padding: 28px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.community-card {
  text-decoration: none;
}

.community-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.community-card span {
  color: var(--muted);
  line-height: 1.5;
}

.socials {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 36px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.social-buttons span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(8,24,43,.72);
  border: 1px solid rgba(120,178,230,.30);
  color: #d8eaff;
  font-weight: 900;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 26px;
  padding: 18px;
  border-top: 1px solid rgba(120,178,230,.20);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

footer strong {
  color: #ffffff;
}

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

  .topbar {
    position: relative;
    top: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .navlinks {
    justify-content: stretch;
  }

  .navlinks a {
    flex: 1;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .status-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  main,
  .topbar,
  footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 52px;
  }

  .status-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .panel-actions .btn,
  .navlinks a {
    width: 100%;
  }

  .live-card,
  .panel,
  .community,
  .socials {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
