* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.title-page {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-stage {
  position: relative;
  width: min(100vw, 133.333vh);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: white;
}

.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  position: absolute;
  left: 50%;
  top: 27%;
  width: 74%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.menu {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.menu-button {
  position: absolute;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.menu-button img {
  width: 100%;
  display: block;
}

.menu-button:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: brightness(1.08);
}

.what {
  left: 17%;
  top: 51%;
  width: 24%;
}

.music {
  left: 42%;
  top: 49%;
  width: 17%;
}

.style {
  left: 64%;
  top: 53%;
  width: 25%;
}

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

  .title-page {
    min-height: 100vh;
  }

  .title-stage {
    width: 100vw;
  }

  .logo {
    width: 78%;
    top: 27%;
  }

  .what {
    left: 14%;
    top: 52%;
    width: 28%;
  }

  .music {
    left: 41%;
    top: 49%;
    width: 19%;
  }

  .style {
    left: 61%;
    top: 54%;
    width: 29%;
  }
}

.trail-shape {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(120deg);
  }
}

.what-page {
  margin: 0;
  background: white;
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
}

.what-stage {
  position: relative;
  width: min(100vw, 133.333vh);
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  background: white;
  overflow: hidden;
}

.what-full-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.what-gif-screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  background: black;
  overflow: hidden;
}

.what-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.what-full-text {
  position: absolute;
  left: 0;
  top: 2.8%;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.music-page {
  margin: 0;
  min-height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.music-stage {
  position: relative;
  width: min(100vw, 133.333vh);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: white;
}

.music-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card {
  position: absolute;
  display: block;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff2f75;
  transform: translate(12px, 12px);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #28b6b8;
  transform: translate(-8px, -8px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.artist-card:hover::before,
.artist-card:hover::after {
  opacity: 1;
}

.artist-card:hover::before {
  transform: translate(16px, 14px);
}

.artist-card:hover::after {
  transform: translate(-10px, -10px);
}

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

.devo-card {
  left: 5%;
  top: 8%;
  width: 36%;
  aspect-ratio: 1 / 1;
  transform: rotate(-9deg);
}

.dowjones-card {
  left: 57%;
  top: 8%;
  width: 34%;
  aspect-ratio: 1 / 1;
  transform: rotate(9deg);
}

.zomzoms-card {
  left: 36%;
  top: 53%;
  width: 34%;
  aspect-ratio: 1 / 1;
  transform: rotate(2deg);
}

.devo-card:hover {
  transform: rotate(-9deg) scale(1.04);
}

.dowjones-card:hover {
  transform: rotate(9deg) scale(1.04);
}

.zomzoms-card:hover {
  transform: rotate(2deg) scale(1.04);
}

@media (max-width: 700px) {
  .music-stage {
    width: 100vw;
  }
}

.bio-page {
  margin: 0;
  min-height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.bio-stage {
  position: relative;
  width: min(100vw, 133.333vh);
  aspect-ratio: 4 / 3;
  background: white;
  overflow: hidden;
}

.bio-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bio-photo {
  position: absolute;
  left: 3.5%;
  top: 21%;
  width: 43.5%;
  height: 57.5%;
  object-fit: cover;
  z-index: 2;
}

.bio-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}


.style-page {
  margin: 0;
  min-height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.style-stage {
  position: relative;
  width: min(100vw, 133.333vh);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: white;
}

.style-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.style-slideshow {
  position: absolute;
  left: 14.2%;
  top: 9.3%;
  width: 71.5%;
  height: 73.5%;
  z-index: 2;
}

.style-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 18px solid #d119d8;
  background: white;
  box-shadow: 22px 18px 0 #9bc5ff;
}

.style-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.style-arrow {
  position: absolute;
  bottom: 3.8%;
  width: 10%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.15s ease;
}

.style-arrow img {
  width: 100%;
  display: block;
}

.style-arrow:hover {
  transform: scale(1.12);
}

.style-arrow-left {
  left: 37.5%;
}

.style-arrow-right {
  left: 55.5%;
}

@media (max-width: 700px) {
  .style-stage {
    width: 100vw;
  }
}




