body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #26424c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #FFFFFF;
  position: relative;
}

.center-container {
  text-align: center;
  z-index: 1;
}

.headline {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 1em;
}

.instructions {
  font-size: 2em;
  font-weight: normal;
  line-height: 1.5;
}

.arrow-wrapper {
  position: fixed;
  top: 8px;
  right: 0px;
  width: 64px;
  height: 64px;
  z-index: 1000;
}

.arrow-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: #9387EB;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 2s infinite;
  z-index: 0;
  filter: blur(24px);
}

.arrow {
  z-index: 1;
  position: relative;
  fill: #CEF46A;
  width: 100%;
  height: 100%;
  animation: bounce-arrow 2s infinite;
  transform-origin: center;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0.9;
  }
}

@keyframes bounce-arrow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-18px) scale(1.1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
  70% {
    transform: translateY(-14px) scale(1.08);
  }
}
