* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden; /* Verhindert Scrollbalken komplett */
}
body {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-left-color: #ff453a; /* Itch.io Rot-Ton */
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h2 {
  margin: 0 0 10px 0;
  font-weight: normal;
}
p {
  color: #888;
}
a {
  color: #ff453a;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}
