* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080B0F;
  --violet: #7B2CFF;
  --blue: #00D9FF;
  --text: #E8ECF1;
  --muted: rgba(232, 236, 241, 0.68);
  --card: #141922;
  --line: rgba(255,255,255,.09);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(123,44,255,.20), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(0,217,255,.09), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

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

strong {
  color: #fff;
}

code {
  color: var(--blue);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,44,255,.13), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: .7;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
  position: relative;
  z-index: 5;
}

.narrow {
  max-width: 900px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(8,11,15,.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: grid;
  gap: 4px;
}

.brand-main {
  font-family: Orbitron, sans-serif;
  letter-spacing: .32em;
  font-size: 1.65rem;
}

.underscore,
footer strong span {
  color: var(--blue);
  text-shadow: 0 0 18px var(--blue);
}

.brand-sub {
  font-size: .65rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
background: none;
  border: none;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.main-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fff;
  border-radius: 14px;
  padding: 10px 13px;
}

.section,
.section-full {
  position: relative;
}

.section {
  padding: 130px 0;
  border-top: 1px solid rgba(255,255,255,.045);
}

.section-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.66);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 18px var(--violet);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.55); opacity: .48; }
}

.hero h1 {
  font-family: Orbitron, sans-serif;
  font-size: clamp(4.5rem, 12vw, 9rem);
  letter-spacing: .28em;
  font-weight: 500;
  line-height: .9;
  text-shadow: 0 0 28px rgba(123,44,255,.32);
}

.hero h1 span {
  color: var(--blue);
}

.subtitle {
  margin: 20px 0 36px;
  color: var(--blue);
  letter-spacing: .46em;
  text-transform: uppercase;
  font-size: .94rem;
}

.hero-quote {
  font-size: clamp(2rem, 4.7vw, 4.1rem);
  line-height: 1.16;
  font-weight: 300;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-intro {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 18px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  transition: .28s ease;
}

.btn-primary {
  background: var(--violet);
  box-shadow: 0 0 42px rgba(123,44,255,.45);
}

.btn-primary:hover {
  background: #9054ff;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.76);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.09);
  color: #fff;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.portrait-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: rgba(123,44,255,.22);
  filter: blur(90px);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.portrait-card {
  width: min(520px, 100%);
  aspect-ratio: 1/1.12;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 34%, rgba(0,217,255,.23), transparent 19%),
    radial-gradient(circle at 50% 48%, rgba(123,44,255,.28), transparent 32%),
    linear-gradient(145deg, #111720, #05070a);
  box-shadow: 0 0 90px rgba(123,44,255,.24);
  position: relative;
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.portrait-placeholder span {
  font-family: Orbitron, sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: .26em;
  margin-left: .26em;
  color: rgba(232,236,241,.92);
  text-shadow: 0 0 40px rgba(0,217,255,.28);
}

.portrait-placeholder small {
  position: absolute;
  bottom: 96px;
  text-transform: uppercase;
  letter-spacing: .4em;
  color: rgba(255,255,255,.42);
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent, transparent 3px, rgba(255,255,255,.025) 4px);
  mix-blend-mode: screen;
}

.portrait-info {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(0,217,255,.35);
  padding-top: 18px;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.kicker {
  color: var(--blue);
  letter-spacing: .36em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.11;
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 70px;
}

.section-heading > p:last-child {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.1rem;
}

.manifest {
  display: grid;
  gap: 28px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.95;
  margin-top: 42px;
}

.album-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.track-list {
  display: grid;
  gap: 14px;
}

.track {
  width: 100%;
  text-align: left;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 22px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 16px;
  cursor: pointer;
  transition: .25s ease;
}

.track:hover,
.track.active {
  background: rgba(123,44,255,.13);
  border-color: rgba(123,44,255,.42);
}

.track span {
  grid-row: span 2;
  color: var(--blue);
  letter-spacing: .1em;
}

.track strong {
  font-weight: 500;
  font-size: 1.12rem;
}

.track small {
  color: rgba(255,255,255,.46);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.player-card {
  padding: 46px;
  border-radius: 42px;
  border: 1px solid var(--line);
  background: rgba(20,25,34,.66);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 70px rgba(0,217,255,.08);
}

.player-card h3 {
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 18px;
}

.player-card > p:not(.kicker):not(.player-note) {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 34px;
}
.lyrics-box {
  height: 200px;
  overflow: hidden;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.lyric-line {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.visualizer {
  height: 120px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 11px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(123,44,255,.17), transparent 60%),
    rgba(0,0,0,.22);
  padding: 34px;
  margin: 34px 0;
  overflow: hidden;
}

.visualizer span {
  width: 12px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--violet), var(--blue));
  animation: wave 1.4s ease-in-out infinite;
}

.visualizer span:nth-child(2n) { height: 108px; animation-delay: .15s; }
.visualizer span:nth-child(3n) { height: 82px; animation-delay: .28s; }
.visualizer span:nth-child(4n) { height: 128px; animation-delay: .42s; }

@keyframes wave {
  0%,100% { transform: scaleY(.65); opacity: .74; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

.controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.play-btn {
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 42px rgba(123,44,255,.45);
}

.progress-wrap {
  flex: 1;
}

.progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--blue));
}

.time {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: rgba(255,255,255,.38);
  font-size: .72rem;
  letter-spacing: .15em;
}

.player-note {
  margin-top: 24px;
  color: rgba(255,255,255,.38);
  font-size: .86rem;
  line-height: 1.6;
}

.live-section {
  background: linear-gradient(90deg, rgba(123,44,255,.08), transparent);
}

.live-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: start;
}

.live-copy {
  color: var(--muted);
  line-height: 1.95;
  font-size: 1.13rem;
  display: grid;
  gap: 24px;
  border-left: 1px solid rgba(0,217,255,.25);
  padding-left: 34px;
}

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

.memory-card {
  min-height: 380px;
  border-radius: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(to top, rgba(0,0,0,.58), transparent),
    radial-gradient(circle at top, rgba(123,44,255,.22), transparent 50%),
    var(--card);
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: .3s ease;
}

.memory-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,217,255,.28);
}

.memory-card span {
  color: var(--blue);
  letter-spacing: .18em;
  margin-bottom: auto;
}

.memory-card h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 14px;
}

.memory-card p {
  color: var(--muted);
  line-height: 1.75;
}

.signal-section {
  text-align: center;
}

.signal-section h2 {
  max-width: 900px;
  margin: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.social-links a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  padding: 17px 26px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  color: rgba(255,255,255,.72);
  transition: .25s ease;
}

.social-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.09);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: rgba(255,255,255,.42);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer strong {
  display: block;
  font-family: Orbitron, sans-serif;
  font-size: 1.6rem;
  letter-spacing: .28em;
  color: #fff;
  margin-bottom: 8px;
}

footer p {
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    background: rgba(8,11,15,.94);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .album-panel,
  .live-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    max-width: 430px;
  }

  .section {
    padding: 95px 0;
  }

  .section-full {
    padding-top: 125px;
  }

  .player-card {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .badge {
    align-items: flex-start;
    border-radius: 22px;
    line-height: 1.6;
  }

  .hero-actions,
  .controls {
    flex-direction: column;
    align-items: stretch;
  }

  .play-btn {
    width: 62px;
    height: 62px;
  }

  .portrait-info {
    flex-direction: column;
  }
}
.streaming-section {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(123,44,255,.12), transparent 45%),
    rgba(255,255,255,.01);
}

.streaming-intro {
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  max-width: 760px;
  margin: 28px auto 50px;
  font-size: 1.1rem;
}

.streaming-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.stream-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(20,25,34,.68);
  box-shadow: 0 0 40px rgba(123,44,255,.08);
  transition: .3s ease;
}

.stream-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,217,255,.35);
  box-shadow: 0 0 55px rgba(0,217,255,.12);
}

.stream-card span {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}

.stream-card small {
  color: rgba(255,255,255,.48);
  line-height: 1.5;
}

.stream-card.social {
  background: linear-gradient(
    145deg,
    rgba(123,44,255,.16),
    rgba(0,217,255,.07)
  );
}

.streaming-note {
  margin-top: 45px;
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  font-style: italic;
}
.video-playlist {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 28px;
  align-items: start;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
  box-shadow: 0 0 60px rgba(123,44,255,.16);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-list {
  display: grid;
  gap: 14px;
}

.video-track {
  text-align: left;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: white;
  cursor: pointer;
}

.video-track.active,
.video-track:hover {
  background: rgba(123,44,255,.16);
  border-color: rgba(123,44,255,.45);
}

.video-track span {
  color: #00D9FF;
  margin-right: 12px;
}

@media(max-width: 850px) {
  .video-playlist {
    grid-template-columns: 1fr;
  }

  .video-frame {
    aspect-ratio: 9 / 16;
    max-height: 680px;
  }
}
.nav-dropdown {
  position: relative;
}

.nav-dropbtn {
  background: none;
  border: none;
  color: rgba(255,255,255,.62);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-dropbtn:hover {
  color: #fff;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  min-width: 230px;
  padding: 12px 0;
  background: #121722;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  z-index: 999;
}

.nav-dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: none;
}

.nav-dropdown-content a:hover {
  background: rgba(123,44,255,.18);
  color: #fff;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

@media(max-width: 920px) {
  .nav-dropdown-content {
    position: static;
    display: block;
    background: transparent;
    border: none;
    padding: 8px 0 0 18px;
  }
}