* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(64, 224, 208, 0.22), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(255, 0, 160, 0.18), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(255, 170, 0, 0.13), transparent 25%),
    linear-gradient(120deg, #050814 0%, #0b1330 42%, #1b0d34 100%);
}

/* BACKGROUND SPACE ELEMENTS */

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(#ffffff 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.65) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  background-position: 0 0, 35px 60px;
  opacity: 0.45;
}

.planet {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(0.2px);
}

.planet-one {
  width: 260px;
  height: 260px;
  right: -80px;
  top: 110px;
  background:
    radial-gradient(circle at 32% 30%, #ffffff, #40e0d0 18%, #2462ff 42%, #10194a 70%);
  box-shadow: 0 0 70px rgba(64, 224, 208, 0.35);
  opacity: 0.48;
  animation: planetDriftOne 14s ease-in-out infinite;
}

.planet-two {
  width: 150px;
  height: 150px;
  left: 7%;
  bottom: 7%;
  background:
    radial-gradient(circle at 35% 35%, #ffd27d, #ff6b35 35%, #7a164f 72%);
  box-shadow: 0 0 45px rgba(255, 122, 60, 0.38);
  opacity: 0.32;
  animation: planetDriftTwo 12s ease-in-out infinite;
}

.orbit {
  position: fixed;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.orbit-one {
  width: 520px;
  height: 220px;
  right: -130px;
  top: 130px;
  transform: rotate(-18deg);
  animation: orbitPulse 7s ease-in-out infinite;
}

.orbit-two {
  width: 460px;
  height: 170px;
  left: -130px;
  bottom: 60px;
  transform: rotate(18deg);
  animation: orbitPulse 9s ease-in-out infinite;
}

/* ANIMATED FLOATING PLANETS */

.floating-system {
  position: fixed;
  z-index: 2;
  pointer-events: none;
  animation: driftFloat 10s ease-in-out infinite;
}

.system-one {
  top: 18%;
  right: 12%;
  animation-delay: 0s;
}

.system-two {
  bottom: 18%;
  left: 10%;
  animation-delay: 1.5s;
}

.system-three {
  top: 58%;
  right: 32%;
  animation-delay: 3s;
}

.mini-planet {
  position: relative;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255,255,255,0.16);
}

.mini-planet-a {
  width: 95px;
  height: 95px;
  background:
    radial-gradient(circle at 38% 35%, #dff8ff, #8fc5ff 25%, #4b5cff 58%, #1a1d58 90%);
}

.mini-planet-b {
  width: 75px;
  height: 75px;
  background:
    radial-gradient(circle at 35% 35%, #fff2b8, #ffc85e 35%, #ff8a3d 62%, #7a1f3c 92%);
}

.mini-planet-c {
  width: 60px;
  height: 60px;
  background:
    radial-gradient(circle at 35% 35%, #dffcff, #76ffe0 30%, #12c0c7 58%, #10345b 90%);
}

.mini-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 55px;
  border: 2px solid rgba(64, 224, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: orbitSpin 8s linear infinite;
  box-shadow: 0 0 18px rgba(64, 224, 255, 0.22);
}

.orbit-reverse {
  animation-direction: reverse;
}

.orbit-slow {
  animation-duration: 12s;
}

.mini-moon {
  position: absolute;
  top: -7px;
  left: 72%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #5ee7ff;
  box-shadow: 0 0 14px rgba(94, 231, 255, 0.9);
}

.mini-moon-pink {
  background: #ff75d8;
  box-shadow: 0 0 14px rgba(255, 117, 216, 0.9);
}

.mini-moon-gold {
  background: #ffd76a;
  box-shadow: 0 0 14px rgba(255, 215, 106, 0.9);
}

/* HEADER - TRANSPARENT GLASS */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  height: 70px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(4, 7, 20, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07111e;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff, #40e0d0);
  box-shadow: 0 0 25px rgba(64,224,208,0.55);
}

.brand-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: #06101d;
  background: linear-gradient(135deg, #ffffff, #40e0d0);
}

/* HORIZONTAL SITE */

.space-track {
  position: relative;
  z-index: 5;
  height: 100vh;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.space-track::-webkit-scrollbar {
  display: none;
}

.panel {
  position: relative;
  min-width: 100vw;
  height: 100vh;
  padding: 145px 40px 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  overflow-y: auto;
}

.panel-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* TYPOGRAPHY */

.eyebrow {
  margin: 0 0 12px;
  color: #40e0d0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(80px, 13vw, 180px);
  line-height: 0.85;
  letter-spacing: -8px;
  text-shadow: 0 0 45px rgba(255,255,255,0.2);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -3px;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.6;
}

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

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

/* HOME */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-text {
  max-width: 630px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.main-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.main-button {
  color: #06101d;
  background: linear-gradient(135deg, #ffffff, #40e0d0);
  box-shadow: 0 0 30px rgba(64,224,208,0.35);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.hero-card {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

.hero-card img {
  display: block;
  width: 100%;
  height: min(62vh, 620px);
  object-fit: contain;
  object-position: center;
  border-radius: 25px;
  background: #050505;
  padding: 22px;
}

/* MUSIC & VIDEOS */

.music-video-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.stream-card,
.video-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 32px;
  background: rgba(255,255,255,0.075);
  box-shadow: 0 18px 60px rgba(0,0,0,0.26);
}

.stream-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.platform-buttons {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.platform-buttons a {
  min-height: 48px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.spotify-btn {
  background: linear-gradient(135deg, #1db954, #0f7f38);
  box-shadow: 0 0 24px rgba(29,185,84,0.28);
}

.apple-btn {
  background: linear-gradient(135deg, #fb5c74, #8f2cff);
  box-shadow: 0 0 24px rgba(251,92,116,0.25);
}

.youtube-btn {
  background: linear-gradient(135deg, #ff0033, #9b001f);
  box-shadow: 0 0 24px rgba(255,0,51,0.25);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  padding: 24px;
}

.video-caption p {
  margin-bottom: 0;
}

/* GALLERY */

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

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 25px;
  background: rgba(255,255,255,0.06);
}

figure img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 38px;
  align-items: center;
}

.contact-copy {
  max-width: 660px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.social-grid a {
  min-height: 98px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-grid a:hover {
  transform: translateY(-4px);
  background: rgba(64,224,208,0.13);
}

.social-grid strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.social-grid span {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.contact-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  background: rgba(255,255,255,0.075);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.contact-card img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.contact-info {
  padding: 24px;
}

.contact-info a {
  color: #40e0d0;
  font-weight: 900;
  text-decoration: none;
}

/* ROCKET NAVIGATION */

.rocket-nav {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(4, 7, 20, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.rocket-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
}

.rocket-btn:hover {
  color: #06101d;
  background: linear-gradient(135deg, #ffffff, #40e0d0);
}

.rocket-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 8px;
}

.rocket-track::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #40e0d0, #ff4fd8, #ffd166);
  opacity: 0.7;
}

.rocket-dot {
  position: relative;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(5, 8, 20, 0.9);
  border: 1px solid rgba(255,255,255,0.12);
}

.rocket-dot.active {
  color: #06101d;
  background: linear-gradient(135deg, #ffffff, #40e0d0);
}

.rocket-ship {
  position: absolute;
  z-index: 3;
  top: -30px;
  left: 0;
  font-size: 24px;
  transform: translateX(-50%) rotate(38deg);
  transition: left 0.45s ease;
  filter: drop-shadow(0 0 12px rgba(64,224,208,0.9));
  pointer-events: none;
}

/* ANIMATIONS */

@keyframes driftFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-8px) translateX(5px);
  }
  50% {
    transform: translateY(5px) translateX(-6px);
  }
  75% {
    transform: translateY(-6px) translateX(4px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes orbitSpin {
  0% {
    transform: translate(-50%, -50%) rotate(-18deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(342deg);
  }
}

@keyframes planetDriftOne {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-14px) translateX(10px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes planetDriftTwo {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(10px) translateX(-8px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes orbitPulse {
  0% {
    opacity: 0.16;
  }
  50% {
    opacity: 0.34;
  }
  100% {
    opacity: 0.16;
  }
}

/* RESPONSIVE */

@media (max-width: 950px) {
  body {
    overflow: auto;
  }

  .site-header {
    top: 10px;
    height: auto;
    border-radius: 28px;
    flex-direction: column;
    gap: 12px;
  }

  .brand-text {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav a {
    padding: 9px 10px;
    font-size: 12px;
  }

  .space-track {
    height: auto;
    display: block;
    overflow: visible;
  }

  .panel {
    min-width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 150px 20px 90px;
  }

  .hero-grid,
  .music-video-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -4px;
  }

  h2 {
    font-size: 44px;
  }

  .stream-card img {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  figure img {
    height: 310px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .rocket-nav {
    width: calc(100% - 24px);
    overflow-x: auto;
    justify-content: center;
  }

  .rocket-track {
    gap: 10px;
  }

  .rocket-dot {
    font-size: 10px;
    padding: 7px 8px;
  }

  .planet-one {
    width: 180px;
    height: 180px;
  }

  .system-one {
    right: 4%;
    top: 20%;
  }

  .system-two {
    left: 4%;
    bottom: 12%;
  }

  .system-three {
    right: 10%;
    top: 64%;
  }

  .mini-planet-a {
    width: 70px;
    height: 70px;
  }

  .mini-planet-b {
    width: 55px;
    height: 55px;
  }

  .mini-planet-c {
    width: 45px;
    height: 45px;
  }

  .mini-orbit {
    width: 110px;
    height: 40px;
  }
}

@media (max-height: 740px) and (min-width: 951px) {
  .panel {
    padding-top: 125px;
    padding-bottom: 82px;
  }

  h1 {
    font-size: 100px;
  }

  h2 {
    font-size: 48px;
  }

  p {
    font-size: 16px;
  }

  .stream-card img {
    height: 210px;
  }

  figure img {
    height: 160px;
  }

  .contact-card img {
    height: 300px;
  }
}
