/* ------ OVERLAY ------ */
.imprint-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.imprint-content {
  background: #000000;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.9);
  width: 85%;
  max-width: 800px;
  padding: 2rem;
  font-family: "ByteBounce", sans-serif;
  color: #e3e3e3;
  text-align: center;
  cursor: default;
  border-radius: 0.625rem;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-height: 70%;
}

.imprint-scroll-container {
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imprint-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #ff00ffae;
  cursor: pointer;
  text-shadow: 0 0 8px #ff00ff;
  transition: all 0.2s ease;
}

.imprint-close-btn:hover {
  color: #00ffff;
  text-shadow: 0 0 12px #00ffff;
  transform: scale(1.2);
}

.imprint-scroll-container h3 {
  font-size: 1.6rem;
  font-weight: 400;
}

.imprint-scroll-container p {
  font-size: 1.6rem;
}

.imprint-scroll-container::-webkit-scrollbar {
  width: 4px;
}

.imprint-scroll-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.imprint-scroll-container::-webkit-scrollbar-thumb {
  background: #ff00ff;
  border-radius: 10px;
  box-shadow: 0 0 10px #ff00ff;
}

.imprint-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #00ffff;
  box-shadow: 0 0 15px #00ffff;
}

.imprint-scroll-container {
  scroll-behavior: smooth;
}

.neon-text-pink {
  color: #ff00ff;
  text-shadow: 0 0 8px #ff00ff;
  font-size: 3rem;
  font-family: Cyberway;
}

.imprint-scroll-container section {
  margin-bottom: 1.5rem;
  text-align: center;
}

.imprint-scroll-container p {
  line-height: 0.8;
  margin: 0;
}

.highlight {
  color: #00ffff;
}

@media (max-width: 64rem) {
  body:not(.is-touch) .game-footer {
    display: none;
  }
}
