:root {
  --blau: #2f7fd6;
  --bg: #fbfbfd;
  --text: #1e2530;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 1.5rem;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

main { max-width: 32rem; margin: 0 auto; }

h1 { font-size: 1.6rem; margin-top: 0.25rem; }

.ort { color: #6b7280; font-size: 0.9rem; margin-bottom: 0.25rem; }

.fortschritt { color: #6b7280; font-size: 0.8rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.03em; }

.erzaehlung { font-size: 1.1rem; }

.hinweis, .dev-stub, .finale-hinweis {
  background: #eef4fc;
  border-left: 3px solid var(--blau);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.95rem;
}

.dev-stub { background: #fff4e5; border-left-color: #d97706; }

.weiter, button {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: var(--blau);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.weiter:hover, button:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(47, 127, 214, 0.35);
  transform: translateY(-1px);
}

.weiter:active, button:active:not(:disabled) { transform: translateY(0); }

button:disabled { opacity: 0.5; cursor: not-allowed; }

form { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }

.route { color: #6b7280; font-size: 0.85rem; margin-top: 2rem; }

audio { display: block; width: 100%; margin-top: 0.75rem; }

.urkunde {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #eef4fc, #f5eefc);
  border: 2px dashed var(--blau);
  border-radius: 0.75rem;
  text-align: center;
  animation: urkunde-in 0.5s ease;
}

.urkunde-titel { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.5rem; }
.urkunde-spruch, .urkunde-zeit, .urkunde-hinweis { margin: 0.4rem 0; font-size: 0.95rem; }

@keyframes urkunde-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.blasen {
  position: relative;
  height: 4rem;
  overflow: hidden;
  margin-top: 1rem;
}

.blasen span {
  position: absolute;
  bottom: -2rem;
  font-size: 1.5rem;
  animation: blase-auf 4s ease-in infinite;
  opacity: 0.85;
}

.blasen span:nth-child(1) { left: 2%;  animation-delay: 0s;   font-size: 1.2rem; }
.blasen span:nth-child(2) { left: 20%; animation-delay: 0.6s; font-size: 2rem; }
.blasen span:nth-child(3) { left: 38%; animation-delay: 1.2s; font-size: 1rem; }
.blasen span:nth-child(4) { left: 58%; animation-delay: 0.3s; font-size: 1.6rem; }
.blasen span:nth-child(5) { left: 76%; animation-delay: 1.8s; font-size: 1.1rem; }
.blasen span:nth-child(6) { left: 90%; animation-delay: 0.9s; font-size: 1.8rem; }

@keyframes blase-auf {
  0%   { transform: translateY(0) translateX(0); opacity: 0.85; }
  100% { transform: translateY(-8rem) translateX(0.5rem); opacity: 0; }
}

a { color: var(--blau); }

input[type="text"], input[type="email"] {
  font-size: 1rem;
  padding: 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #d1d9e6;
}
