 /* style.css */

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #fef6f2, #fff);
  color: #333;
  text-align: center;
  margin: 30px;
}

h1 {
  color: #cc3366;
  font-size: 2.2em;
  margin-bottom: 10px;
}

button {
  padding: 12px 24px;
  font-size: 16px;
  margin: 6px;
  background-color: #ffccdd;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #ff99bb;
}

p {
  font-size: 18px;
  margin: 6px;
}

#gewonnen {
  display: none;
  color: #28a745;
  font-weight: bold;
}

#verloren {
  display: none;
  color: #cc0000;
  font-weight: bold;
}

#neustart {
  display: none;
  background-color: #aad2ff;
}

#log {
  max-height: 160px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 30px;
  background-color: #fff;
  text-align: left;
  font-size: 14px;
  width: 90%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.eiswurf {
  position: absolute;
  font-size: 32px;
  animation: flieg 1s ease-out forwards;
  z-index: 1000;
}

@keyframes flieg {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-100px); }
}
