body {
  margin: 0;
  height: 100vh;
  font-family: "Bebas Neue", sans-serif;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

section {
  height: 100vh;
  padding: 3em;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  opacity: 1;
}

.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

#scene-1 {
  position: relative;
  height: 100vh;
  width: 100%;
}

.overlay {
  background-color: black;
}

.spline-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  pointer-events: none;
  z-index: 1;
}

.underlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2em;

  clip-path: circle(180px at var(--x, 50%) var(--y, 50%));
  transition: clip-path 30ms;
}

.spline-mask {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scene1-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.headline {
  font-size: 7rem;
  background: black;
  color: white;
  padding: 0em 0.4em;
  margin-top: 0.2em;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  border-radius: 1rem;
}

.glowy-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
  padding: 1rem;
  background: black;
  border-radius: 1.5rem;
}

.glowy-polaroid {
  width: 200px;
  border: 4px solid white;
  border-radius: 20px;
}

.annotation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.arrow-to-glowy {
  width: 80px;
  transform: rotate(20deg);
  margin-bottom: 1rem;
}

.scene1-name-glowy {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-align: center;
}

.arrow-button {
  position: absolute;
  font-size: 2rem;
  padding: 0.5em 1em;
  background-color: white;
  color: black;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  z-index: 20;
}

.arrow-button:hover {
  background-color: #b50ae4;
}

#scene-1 .arrow-button {
  bottom: 15%;
  right: 15%;
}

/* Szene 2 */
#scene-2 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

.scene2-underlay {
  background-color: #ffa74f;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.scene2-underlay h2 {
  font-size: 3.5rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2rem;
}

#scene-2 .arrow-button {
  top: 30%;
  left: 17%;
}

/* Szene 3 */
#scene-3 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 5;
}

.scene3-underlay {
  background-color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.scene3-underlay h3 {
  position: absolute;
  top: 4rem;
  left: 5.5rem;
  font-size: 3.5rem;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: white;
  margin: 0;
}

.headline-scene-3 {
  background: #ffa74f;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 255, 0.5) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.spline-scene3 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.spline-character {
  width: 400px;
  height: 400px;
}

.spline-character:hover .glow {
  opacity: 1;
}

#scene-3 .arrow-button {
  bottom: 12%;
  left: 20%;
}

/* Szene 4 */
#scene-4 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

.scene4-underlay {
  background-color: #68d657;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.scene4-underlay h2 {
  font-size: 3.5rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2rem;
  text-align: left;
}

#scene-4 .arrow-button {
  top: 50%;
  right: 12%;
}

/* Szene 5 */
#scene-5 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 5;
}

.scene5-underlay {
  background-color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.scene5-underlay h3 {
  position: absolute;
  top: 4rem;
  left: 5.5rem;
  font-size: 3.5rem;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: white;
  margin: 0;
}

.headline-scene-5 {
  background: #68d657;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
}

.spline-scene5 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.spline-character {
  width: 400px;
  height: 400px;
}

#scene-5 .arrow-button {
  bottom: 7%;
  left: 50%;
}

/* Szene 6 */
#scene-6 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

.scene6-underlay {
  background-color: #ff5959;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.scene6-underlay h2 {
  font-size: 3.5rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2rem;
  text-align: left;
}

#scene-6 .arrow-button {
  top: 25%;
  left: 24%;
}

/* Szene 7 */
#scene-7 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 5;
}

.scene7-underlay {
  background-color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.scene7-underlay h3 {
  position: absolute;
  top: 4rem;
  left: 5.5rem;
  font-size: 3.5rem;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: white;
  margin: 0;
}

.headline-scene-7 {
  background: #ff5959;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
}

.spline-scene7 {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.spline-character {
  width: 400px;
  height: 400px;
}

#scene-7 .arrow-button {
  bottom: 38%;
  left: 10%;
}

/* Szene 8 */
#scene-8 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

.scene8-underlay {
  background-color: #424841;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.scene8-underlay h2 {
  font-size: 3.5rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2rem;
  text-align: left;
}

#scene-8 .arrow-button {
  bottom: 40%;
  right: 20%;
}

/* Szene 9 */
#scene-9 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 5;
}

.scene9-underlay {
  background-color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.scene9-underlay h3 {
  position: absolute;
  top: 4rem;
  left: 5.5rem;
  font-size: 3.5rem;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: white;
  margin: 0;
}

.headline-scene-9 {
  background: #424841;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
}

.spline-scene9 {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.spline-character {
  width: 400px;
  height: 400px;
}

#scene-9 .arrow-button {
  top: 15%;
  right: 15%;
}

/* Szene 10 */
#scene-10 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

.scene10-underlay {
  background-color: black;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.scene10-underlay h2 {
  font-size: 3.5rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2rem;
  text-align: left;
}

#scene-10 .arrow-button {
  top: 10%;
  left: 10%;
}

/* Szene 11 */
#scene-11 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 5;
}

.scene11-underlay {
  background-color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.scene11-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.scene11-underlay h3 {
  position: absolute;
  top: 4rem;
  left: 5.5rem;
  font-size: 3.5rem;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: white;
  margin: 0;

  background: black;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
}

.spline-scene11 {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.spline-character {
  width: 400px;
  height: 400px;
}

#scene-11 .arrow-button {
  bottom: 10%;
  left: 20%;
}

/* Szene 12 */
#scene-12 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 5;
}

.scene12-underlay {
  background-color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.scene12-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.scene12-underlay h2 {
  position: absolute;
  font-size: 3.5rem;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  margin-bottom: 2rem;
  color: black;
  margin: 0;

  background: white;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
}

.spline-scene12 {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.spline-character {
  width: 400px;
  height: 400px;
}

#scene-12 .arrow-button {
  bottom: 30%;
  left: 10%;
}

/* Szene 13 */
#scene-13 {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  overflow: hidden;
}

.scene13-underlay {
  background-color: lightseagreen;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.scene13-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.scene13-underlay h2 {
  font-size: 3.5rem;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2rem;
  text-align: left;
}

.playAgain-button {
  position: absolute;
  top: 20%;
  left: 45%;
  font-size: 2rem;
  padding: 0.5em 1em;
  background-color: white;
  color: black;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  z-index: 20;
}

.playAgain-button:hover {
  background-color: #b50ae4;
}
