body {
  margin-top: 10vh;
  font-family: Arial, sans-serif;
  text-align: center;
  background: #0f0f27;
  color: white;
  background-image: url(media/bg/doodle7.webp);
  font-weight: bold;
}

h1 {
  font-size: 28px;
  margin-bottom: 30px;
  color: white;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 20px;
  color: white;
}

.optional {
  font-weight: normal;
  color: #aaa;
  font-size: 13px;
}

select, input[type="file"], textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  font-weight: normal;
  font-style: italic;
}

textarea {
  height: 100px;
  resize: vertical;
}

#preview {
  margin-top: 12px;
  max-width: 100%;
  border-radius: 8px;
  display: none;
}

button {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  background: #FF7A18;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.05s;
}

button:hover { background: #E5670F; }
button:disabled { background: #555; cursor: not-allowed; }

#status {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  color: white;
}

#spielLink {
  position: fixed;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}

#spielLink:hover {
  background: rgba(255, 255, 255, 0.2);
}