:root {
  --bg: #050308;
  --panel: #100a18;
  --panel-strong: #181023;
  --text: #fff8ff;
  --muted: #c7b9d8;
  --line: rgba(255, 255, 255, 0.16);
  --kiss: #a855f7;
  --kiss-dark: #6d28d9;
  --amber: #d8b4fe;
  --cyan: #c084fc;
  --green: #b76cff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(9, 10, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  color: var(--kiss);
  font-size: 1.28rem;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.header-action,
.discord-link {
  border: 0;
  border-radius: 999px;
  background: var(--kiss);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.header-action {
  padding: 10px 18px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 64px) 56px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 3, 8, 0.98) 0%, rgba(15, 8, 25, 0.82) 48%, rgba(24, 13, 38, 0.38) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(9, 10, 15, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 8.6rem);
  line-height: 0.87;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
  line-height: 1.55;
}

.player-panel {
  width: min(600px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(168, 85, 247, 0.2), transparent 38%),
    rgba(10, 6, 16, 0.92);
  box-shadow: 0 24px 90px rgba(60, 18, 115, 0.32);
  backdrop-filter: blur(20px);
}

.player-topline,
.player-header,
.custom-player,
.volume-control,
.ticker,
.host-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.player-header {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.player-topline {
  gap: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(183, 108, 255, 0.15);
}

.player-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 5vw, 2.65rem);
  line-height: 1;
}

.custom-player {
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(168, 85, 247, 0.15), transparent 42%),
    #08040d;
}

.play-button {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kiss), var(--kiss-dark));
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(168, 85, 247, 0.38);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid white;
}

.play-button.is-playing .play-icon {
  width: 17px;
  height: 22px;
  margin-left: 0;
  border: 0;
  border-left: 6px solid white;
  border-right: 6px solid white;
}

.station-meta {
  min-width: 0;
  flex: 1 1 auto;
}

.station-meta p,
.station-meta strong {
  display: block;
}

.station-meta p {
  margin: 0 0 5px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.station-meta strong {
  color: var(--text);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  line-height: 1.15;
}

.volume-control {
  flex: 0 1 170px;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.volume-control input {
  width: 100%;
  accent-color: var(--kiss);
}

.ticker {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: linear-gradient(90deg, #6d28d9, #a855f7, #4c1d95);
  color: white;
  font-weight: 900;
}

.ticker span {
  padding: 0 10px;
}

.host-strip,
.contact-section {
  padding: 76px clamp(18px, 5vw, 64px);
}

.section-heading h2,
.host-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

.host-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.host-strip {
  justify-content: space-between;
  gap: clamp(24px, 7vw, 110px);
  background: #09050f;
}

.host-strip p {
  max-width: 520px;
  font-size: 1.08rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 70px);
  background: #0b0611;
}

.discord-panel {
  display: grid;
  align-content: start;
  gap: 22px;
}

.discord-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.discord-link {
  justify-self: start;
  padding: 14px 22px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 3, 8, 0.98) 0%, rgba(15, 8, 25, 0.78) 100%),
      linear-gradient(0deg, var(--bg) 0%, rgba(9, 10, 15, 0) 34%);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .host-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    flex-direction: column;
    gap: 0;
    line-height: 1;
  }

  .header-action {
    padding: 9px 14px;
  }

  .player-panel {
    padding: 14px;
  }

  .player-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .custom-player {
    align-items: stretch;
    flex-direction: column;
  }

  .volume-control {
    flex-basis: auto;
  }

}
