:root {
  --bg: #070611;
  --bg-soft: #111025;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: #c9c8d8;
  --accent: #ff8a1d;
  --accent-2: #ff2f8f;
  --accent-3: #6f4dff;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 138, 29, 0.24), transparent 32rem),
    radial-gradient(circle at top right, rgba(255, 47, 143, 0.20), transparent 34rem),
    linear-gradient(135deg, #05040d 0%, #12112b 46%, #070611 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

.hero { padding: 22px 0 70px; }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: centre;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 6, 17, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.25);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.02em; }
.brand img { width: 42px; height: 42px; border-radius: 50%; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.08); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 12px;
  font-size: clamp(3.6rem, 10vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.tagline {
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 3.4vw, 2.45rem);
  font-weight: 850;
  line-height: 1.08;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 18px 38px rgba(255, 47, 143, 0.23); }
.button.secondary { background: rgba(255,255,255,0.08); color: var(--text); }

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-card .glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(18px);
  background: conic-gradient(from 160deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  opacity: 0.58;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-card img {
  position: relative;
  width: min(78%, 430px);
  border-radius: 50%;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.5));
}

.section { padding: 44px 0; }
.section-heading { max-width: 720px; margin-bottom: 26px; }
.section-heading h2, .info-panel h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.04em; }
.section-heading p:not(.eyebrow), .info-panel p { color: var(--muted); line-height: 1.7; }

.widget-card, .info-panel {
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(150deg, var(--panel-strong), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.now-playing-card { min-height: 210px; display: grid; align-items: center; }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.info-panel { padding: 34px; }
.info-panel ul { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.info-panel li {
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #f5f4ff;
  font-weight: 700;
}
.info-panel li::before { content: "✦"; color: var(--accent); margin-right: 10px; }

.schedule-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.schedule-card h3 { margin-bottom: 18px; font-size: 1.35rem; }
.schedule-card iframe { border-radius: 20px; background: rgba(255,255,255,0.04); }

.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 26px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.site-footer img { width: 54px; height: 54px; border-radius: 50%; }
.site-footer strong { color: var(--text); }
.site-footer p { margin: 4px 0 0; }

@keyframes floatGlow {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-18px) rotate(18deg) scale(1.04); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-grid, .two-column, .schedule-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 50px; gap: 30px; }
  .hero-card { min-height: 340px; border-radius: 28px; }
}

@media (max-width: 560px) {
  .page-shell { width: min(100% - 22px, 1180px); }
  .hero { padding-top: 12px; }
  .topbar { top: 10px; border-radius: 22px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .widget-card, .info-panel { padding: 18px; border-radius: 24px; }
  .section { padding: 32px 0; }
}
