:root {
  --pink: #ff71ce;
  --teal: #01cdfe;
  --purple: #b967ff;
  --night: #1a0a2e;
}

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

body {
  font-family: "Orbitron", sans-serif;
  color: #fff;
  min-height: 100vh;
  background: var(--night);
  overflow-x: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #2d1b4e 0%, #5b2c6f 35%, #ff71ce 70%, #01cdfe 100%);
}

.sun {
  position: absolute;
  width: min(50vw, 280px);
  height: min(50vw, 280px);
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe66d 0%, #ff71ce 55%, transparent 56%);
  box-shadow: 0 0 80px rgba(255, 113, 206, 0.5);
  animation: pulse 6s ease-in-out infinite;
}

.grid-floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(transparent 0%, rgba(26, 10, 46, 0.55) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(1, 205, 254, 0.45) 48px, rgba(1, 205, 254, 0.45) 50px),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255, 113, 206, 0.35) 48px, rgba(255, 113, 206, 0.35) 50px);
  transform: perspective(400px) rotateX(60deg);
  transform-origin: bottom;
  animation: scroll-grid 8s linear infinite;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 12px var(--teal);
}

.nav a {
  color: var(--teal);
  text-decoration: none;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 3rem;
  max-width: 800px;
  animation: rise 1s ease both;
}

.brand {
  font-family: "Audiowide", sans-serif;
  font-size: clamp(3rem, 12vw, 6.5rem);
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 113, 206, 0.6));
  animation: glow 3s ease-in-out infinite alternate;
}

.hero h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.3;
  max-width: 16ch;
  margin-bottom: 0.85rem;
  text-shadow: 3px 3px 0 var(--purple);
}

.sub {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  max-width: 36ch;
  opacity: 0.9;
  margin-bottom: 1.75rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: var(--night);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 1.3rem;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 0 24px rgba(1, 205, 254, 0.45);
  transition: transform 0.2s ease;
}

.cta:hover {
  transform: translateY(-3px) scale(1.03);
}

.tapes {
  display: grid;
  gap: 0.85rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 700px;
}

.tapes article {
  padding: 1.15rem 1.25rem;
  border: 2px solid var(--teal);
  background: rgba(26, 10, 46, 0.55);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 2px var(--pink), 6px 6px 0 var(--purple);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: rise 0.7s ease both;
}

.tapes article:nth-child(1) { animation-delay: 0.15s; }
.tapes article:nth-child(2) { animation-delay: 0.25s; }
.tapes article:nth-child(3) { animation-delay: 0.35s; }

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes scroll-grid {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 50px 0, 0 50px; }
}

@keyframes glow {
  from { filter: drop-shadow(0 0 12px rgba(1, 205, 254, 0.5)); }
  to { filter: drop-shadow(0 0 28px rgba(255, 113, 206, 0.8)); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
