:root {
  --blue: rgb(105, 196, 255);
  --blue-bright: rgb(162, 224, 255);
  --ink: rgb(4, 8, 18);
  --glass: rgba(5, 11, 24, 0.72);
  --line: rgba(105, 196, 255, 0.28);
  --pink: rgb(255, 70, 169);
  --green: rgb(91, 255, 184);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.52)),
    url("assets/background-cyberpunk-jumpsuit.png");
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  text-align: center;
}

body,
button,
a {
  text-shadow:
    0 0 8px rgba(28, 125, 255, 0.9),
    0 0 18px rgba(0, 42, 120, 0.75),
    0 0 32px rgba(0, 14, 60, 0.9);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(2, 6, 14, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo,
h1,
h2,
h3 {
  font-family: "Audiowide", "Inter", sans-serif;
  letter-spacing: 0;
}

.logo {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--blue-bright);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 96px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  margin: 0;
  color: var(--blue-bright);
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 760px;
  margin: 28px auto;
  color: rgb(217, 244, 255);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  background: var(--blue);
  color: var(--ink);
  text-shadow: none;
}

.button.secondary {
  background: rgba(2, 7, 18, 0.72);
}

.feature-section,
.sound-worlds,
.content-grid,
.song-list,
.gallery {
  margin: 0 0 88px;
  padding-top: 32px;
}

.section-heading {
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  color: var(--blue-bright);
  font-size: clamp(2rem, 5vw, 4rem);
}

.carousel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  align-items: center;
  gap: 36px;
  padding: 44px 78px;
  color: rgb(217, 244, 255);
}

.carousel-slide.active {
  display: grid;
}

.cover-art,
.mini-cover,
.gallery-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 70, 169, 0.7), transparent 34%),
    linear-gradient(135deg, rgba(105, 196, 255, 0.74), rgba(4, 8, 18, 0.94));
  box-shadow:
    inset 0 0 40px rgba(105, 196, 255, 0.22),
    0 20px 60px rgba(0, 0, 0, 0.45);
}

.cover-art {
  width: 100%;
  aspect-ratio: 1;
}

.cover-two {
  background:
    radial-gradient(circle at 70% 30%, rgba(91, 255, 184, 0.62), transparent 32%),
    linear-gradient(135deg, rgba(9, 23, 58, 0.94), rgba(255, 70, 169, 0.48));
}

.cover-three {
  background:
    repeating-linear-gradient(90deg, rgba(105, 196, 255, 0.18) 0 3px, transparent 3px 12px),
    linear-gradient(135deg, rgb(5, 11, 24), rgba(105, 196, 255, 0.52));
}

.release-info {
  text-align: left;
}

.release-info h3,
.album-card h3 {
  margin: 0 0 14px;
  color: var(--blue-bright);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.release-info p:last-child,
.album-card p,
.site-footer p {
  color: rgb(217, 244, 255);
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(2, 7, 18, 0.88);
  color: var(--blue-bright);
  font-size: 32px;
  cursor: pointer;
}

.prev {
  left: 16px;
}

.next {
  right: 16px;
}

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

.sound-worlds .section-heading {
  grid-column: 1 / -1;
}

.world-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(2, 6, 14, 0.18), rgba(2, 6, 14, 0.88)),
    radial-gradient(circle at 28% 20%, rgba(105, 196, 255, 0.8), transparent 32%),
    linear-gradient(135deg, rgba(4, 8, 18, 0.98), rgba(29, 70, 145, 0.9));
  box-shadow:
    inset 0 0 50px rgba(105, 196, 255, 0.18),
    0 24px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.world-card:hover {
  border-color: rgba(162, 224, 255, 0.7);
  transform: translateY(-4px);
}

.world-card h3 {
  margin: 0 0 12px;
  color: var(--blue-bright);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.world-card p:last-of-type {
  margin: 0 0 18px;
  color: rgb(217, 244, 255);
  line-height: 1.6;
}

.world-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.world-card li {
  padding: 8px 10px;
  border: 1px solid rgba(105, 196, 255, 0.24);
  border-radius: 999px;
  background: rgba(2, 7, 18, 0.66);
  color: rgb(229, 248, 255);
  font-size: 0.82rem;
  font-weight: 800;
}

.electronic-world {
  position: relative;
  background:
    linear-gradient(rgba(2, 6, 14, 0.08), rgba(2, 6, 14, 0.9)),
    repeating-linear-gradient(0deg, rgba(91, 255, 184, 0.12) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, rgba(105, 196, 255, 0.1) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 22% 18%, rgba(91, 255, 184, 0.82), transparent 28%),
    radial-gradient(circle at 82% 36%, rgba(105, 196, 255, 0.74), transparent 34%),
    linear-gradient(135deg, rgb(0, 10, 18), rgb(3, 27, 44));
  box-shadow:
    inset 0 0 55px rgba(91, 255, 184, 0.2),
    inset 0 0 110px rgba(105, 196, 255, 0.14),
    0 24px 90px rgba(0, 0, 0, 0.45);
}

.electronic-world::before {
  content: "ACCESS_GRANTED / SYNTH_ENGINE_01";
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(91, 255, 184, 0.82);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.electronic-world::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 42%, rgba(91, 255, 184, 0.16) 50%, transparent 58% 100%);
  transform: translateX(-100%);
  animation: system-scan 4.8s linear infinite;
}

.electronic-world > * {
  position: relative;
  z-index: 1;
}

.electronic-world .eyebrow,
.electronic-world li {
  color: var(--green);
}

@keyframes system-scan {
  to {
    transform: translateX(100%);
  }
}

.psychedelic-world {
  background:
    linear-gradient(rgba(42, 5, 54, 0.08), rgba(16, 4, 32, 0.9)),
    url("assets/psychedelic-music-scrolls.png");
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 0 0 68px rgba(255, 70, 169, 0.26),
    inset 0 0 120px rgba(255, 211, 120, 0.12),
    0 24px 90px rgba(0, 0, 0, 0.45);
}

.psychedelic-world .eyebrow,
.psychedelic-world li {
  color: rgb(255, 219, 138);
}

.psychedelic-world li {
  border-color: rgba(255, 219, 138, 0.35);
  background: rgba(44, 8, 56, 0.72);
}

.dreamcore-world {
  background:
    linear-gradient(rgba(2, 6, 14, 0.16), rgba(2, 6, 14, 0.9)),
    radial-gradient(circle at 50% 18%, rgba(162, 224, 255, 0.75), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, rgba(8, 25, 42, 0.98), rgba(46, 18, 75, 0.86));
}

.genre-hero {
  min-height: 58vh;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.electronic-page {
  background:
    linear-gradient(rgba(0, 7, 14, 0.15), rgba(0, 7, 14, 0.86)),
    repeating-linear-gradient(0deg, rgba(91, 255, 184, 0.14) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, rgba(105, 196, 255, 0.12) 0 1px, transparent 1px 22px);
}

.psychedelic-page {
  background:
    linear-gradient(rgba(40, 4, 54, 0.08), rgba(15, 3, 28, 0.9)),
    url("assets/psychedelic-music-scrolls.png");
  background-size: cover;
  background-position: center;
}

.dreamcore-page {
  background:
    linear-gradient(rgba(2, 6, 14, 0.18), rgba(2, 6, 14, 0.9)),
    radial-gradient(circle at 50% 20%, rgba(162, 224, 255, 0.72), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, rgba(8, 25, 42, 0.98), rgba(46, 18, 75, 0.86));
}

.genre-detail {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto 88px;
}

.genre-albums {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 88px;
}

.genre-albums .section-heading,
.genre-artwork .section-heading {
  grid-column: 1 / -1;
}

.genre-artwork {
  margin: 0 0 88px;
}

.electronic-cover,
.electronic-art {
  background:
    repeating-linear-gradient(0deg, rgba(91, 255, 184, 0.14) 0 2px, transparent 2px 16px),
    repeating-linear-gradient(90deg, rgba(105, 196, 255, 0.12) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 30% 22%, rgba(91, 255, 184, 0.76), transparent 30%),
    linear-gradient(135deg, rgb(0, 10, 18), rgb(4, 34, 54));
}

.electronic-cover-alt {
  background:
    radial-gradient(circle at 70% 24%, rgba(105, 196, 255, 0.8), transparent 30%),
    linear-gradient(135deg, rgb(2, 6, 14), rgb(0, 78, 92));
}

.psychedelic-cover,
.psychedelic-art {
  background:
    linear-gradient(rgba(42, 5, 54, 0.05), rgba(16, 4, 32, 0.62)),
    url("assets/psychedelic-music-scrolls.png");
  background-size: cover;
  background-position: center;
}

.dreamcore-cover,
.dreamcore-art {
  background:
    radial-gradient(circle at 50% 22%, rgba(162, 224, 255, 0.74), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, rgba(8, 25, 42, 0.98), rgba(46, 18, 75, 0.86));
}

.dreamcore-cover-alt {
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.48), transparent 26%),
    linear-gradient(135deg, rgba(15, 35, 50, 0.98), rgba(82, 65, 115, 0.78));
}

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

.content-grid .section-heading,
.song-list .section-heading,
.gallery .section-heading {
  grid-column: 1 / -1;
}

.album-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.mini-cover {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 18px;
}

.song-list {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.song-list {
  display: grid;
  gap: 10px;
}

.track-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  color: rgb(217, 244, 255);
  text-align: left;
}

.track-card span {
  color: var(--green);
  font-weight: 800;
}

.track-card h3 {
  margin: 4px 0 0;
  color: var(--blue-bright);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.track-card audio {
  width: min(360px, 100%);
  filter: drop-shadow(0 0 10px rgba(105, 196, 255, 0.35));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 18px;
  color: rgb(229, 248, 255);
  font-family: "Audiowide", "Inter", sans-serif;
  font-size: 1.35rem;
}

.gallery-item.large {
  grid-row: span 2;
}

.page-hero {
  min-height: 48vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 88px 0 48px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 88px;
}

.video-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  text-align: left;
}

.video-card video,
.embed-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(2, 6, 14);
  box-shadow: inset 0 0 44px rgba(105, 196, 255, 0.18);
}

.embed-placeholder {
  display: grid;
  place-items: center;
  color: rgb(217, 244, 255);
  font-family: "Audiowide", "Inter", sans-serif;
}

.video-card h2 {
  margin: 18px 0 8px;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
}

.video-card p {
  margin: 0;
  color: rgb(217, 244, 255);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 48px 24px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 14, 0.82);
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .carousel {
    min-height: 660px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
    padding: 54px 24px 72px;
    text-align: center;
  }

  .release-info {
    text-align: center;
  }

  .sound-worlds,
  .genre-albums,
  .content-grid,
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .gallery-item.large {
    grid-row: auto;
  }
}
