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: #cef46a;
  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-bounce {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  animation: bounce 1.2s infinite;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@keyframes bounce {
  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);
  }
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 32px solid #cef46a;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}
