:root {
  --bg: #0a0a10;
  --bg-alt: #10101a;
  --panel: #14141f;
  --panel-2: #1a1a28;
  --line: #26263a;
  --text: #e8e6f2;
  --muted: #9a97ad;
  --accent: #8b5cf6;
  --accent-2: #ec4899;
  --live: #f43f5e;
  --ok: #22d3ee;
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 16, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand:hover { color: var(--text); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.45);
}

.brand-name { font-size: 17px; }

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: #0a0a10;
}

.brand-sm .brand-logo { height: 26px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.btn) { color: var(--muted); }
.main-nav > a:not(.btn):hover { color: var(--text); }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.live-badge.live { color: var(--live); }

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4a4a5e;
  flex: none;
}

.live-dot.live {
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.55);
  animation: pulse 1.8s infinite;
}

.live-dot.off { background: #56566b; }

.live-dot.on {
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(244, 63, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover { color: var(--text); transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover { box-shadow: 0 14px 38px rgba(139, 92, 246, 0.55); }

.btn-listen {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
}

.btn-listen:hover { color: #fff; }

.btn-ghost { background: var(--panel); }
.btn-ghost:hover { background: var(--panel-2); }

.btn-lg { padding: 14px 26px; font-size: 16px; border-radius: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(139, 92, 246, 0.25), transparent 70%),
    radial-gradient(600px 260px at 80% 15%, rgba(236, 72, 153, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; }

 .hero-bg {
  position: absolute;
  inset: 0;
   background: url('/img/hero-host-20260818.jpg') center 25% / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ok);
  margin: 0 0 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 92px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(120deg, #fff 30%, var(--accent) 70%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.status-inline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.now-playing {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.now-playing-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.np-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex: none;
}

.np-track { display: flex; flex-direction: column; min-width: 0; }

.np-title { font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.np-viewers { font-size: 12px; color: var(--muted); }

.now-playing .btn { margin-left: auto; flex: none; }

.section { padding: 72px 0; }

.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lede { color: var(--muted); margin: 0 0 32px; }

.page-title {
  margin: 0 0 8px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.show-meta {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.contact-line { margin: 0; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
}

.faq-item h3 { margin: 0 0 8px; font-size: 17px; }

.faq-item p { margin: 0; color: var(--muted); font-size: 14px; }

.schedule { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }

.slot {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.slot:hover { border-color: var(--accent); transform: translateY(-2px); }

.slot-time { font-size: 12px; font-weight: 800; color: var(--accent-2); letter-spacing: 0.06em; }

.slot-name { font-weight: 700; font-size: 16px; }

.slot-desc { color: var(--muted); font-size: 13px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 { margin: 0 0 8px; font-size: 18px; }

.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.card p { margin: 0; color: var(--muted); font-size: 14px; }

.about-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }

.about-inner p { color: var(--muted); }

.about-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.about-card h3 { margin: 0 0 14px; }

.about-card ul { margin: 0; padding-left: 18px; color: var(--muted); }

.about-card li { margin-bottom: 10px; }

.cta {
  text-align: center;
  padding: 72px 0;
  background:
    radial-gradient(500px 200px at 50% 0, rgba(139, 92, 246, 0.18), transparent 70%);
}

.cta h2 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 38px); font-weight: 800; }

.cta p { color: var(--muted); margin: 0 0 26px; }

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding-top: 36px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}

.brand-sm .brand-mark { width: 28px; height: 28px; font-size: 14px; }

.footer-note { color: var(--muted); font-size: 13px; }

.footer-nav { display: flex; gap: 16px; margin-left: auto; font-size: 14px; }

.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--text); }

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 12px;
  color: #6b6880;
}

.player-section { padding-top: 48px; }

.player-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.player-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.live-badge-lg { font-size: 13px; }

.player-meta { display: flex; flex-direction: column; min-width: 0; }

.player-title { font-weight: 800; font-size: 20px; }

.player-now { color: var(--accent-2); font-size: 14px; min-height: 1.2em; }

.player-viewers { font-size: 12px; color: var(--muted); }

.player-stage {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}

.player-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(rgba(6, 6, 10, 0.78), rgba(6, 6, 10, 0.9)),
     url('/img/poster-newsroom-20260818.jpg') center / cover no-repeat,
    radial-gradient(420px 180px at 30% 20%, rgba(139, 92, 246, 0.28), transparent 70%),
    radial-gradient(420px 180px at 75% 70%, rgba(236, 72, 153, 0.22), transparent 70%),
    #06060a;
}

.player-cover.hidden { display: none; }

.cover-copy h2 { margin: 0 0 6px; font-size: 22px; font-weight: 800; }

.cover-copy p { margin: 0; color: var(--muted); font-size: 14px; }

.cover-sub { max-width: 460px; }

.player-error {
  position: absolute;
  inset: auto 24px 24px;
  background: rgba(244, 63, 94, 0.14);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #fecdd3;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  text-align: center;
}

.player-error[hidden] { display: none; }

.player-foot {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  margin-bottom: 10px;
}

.eq span {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: eq 1.1s ease-in-out infinite;
}

.eq span:nth-child(1) { height: 12px; animation-delay: 0s; }
.eq span:nth-child(2) { height: 28px; animation-delay: 0.15s; }
.eq span:nth-child(3) { height: 20px; animation-delay: 0.3s; }
.eq span:nth-child(4) { height: 32px; animation-delay: 0.45s; }
.eq span:nth-child(5) { height: 16px; animation-delay: 0.6s; }

@keyframes eq {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .brand { min-width: 0; }
  .brand-name { font-size: 15px; white-space: nowrap; }
  .live-badge { margin-left: auto; }
  .main-nav {
    order: 3;
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: auto repeat(3, minmax(0, 1fr));
    width: auto;
    min-width: 0;
    margin-left: 0;
    gap: 8px;
    font-size: 13px;
    overflow: hidden;
  }
  .main-nav .btn { padding: 8px 12px; }
  .main-nav > a { min-width: 0; white-space: nowrap; }
  .main-nav > a:not(.btn) { text-align: center; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); overflow-wrap: break-word; }
  .tagline { padding: 0 10px; font-size: 17px; }
  .about-inner { grid-template-columns: 1fr; }
  .now-playing-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
  }
  .np-label { grid-column: 1 / -1; }
  .now-playing .btn { margin-left: 0; }
  .player-head { flex-direction: column; gap: 8px; }
  .player-stage { min-width: 0; }
  .player-cover { padding: 18px; }
  .cover-copy p { max-width: 100%; }
}

@media (max-width: 420px) {
  .wrap { width: 100%; max-width: 100%; padding-left: 18px; padding-right: 18px; }
  .grid, .card, .faq-item, .player-shell, .now-playing-inner { min-width: 0; max-width: 100%; }
  .card, .faq-item { overflow-wrap: anywhere; }
  .page-title, .hero h1 { max-width: 100%; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: 42px; }
  .page-title { font-size: 38px; overflow-wrap: break-word; }
}
