:root {
  --bg: #0b1220;
  --text: #e8eefc;
  --muted: #b7c3e0;
  --accent: #5ea3ff;
  --divider: rgba(255, 255, 255, 0.14);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(94, 163, 255, 0.28), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(110, 231, 183, 0.16), transparent 55%),
    var(--bg);
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.main {
  padding: 18px;
  display: grid;
  place-items: center;
}

.card {
  width: min(900px, 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(8px);

  padding: clamp(18px, 3.2vw, 36px);

  /* ✅ Alle Texte zentriert */
  text-align: center;
}

/* ✅ Proportional/Responsive Überschrift */
.card__title {
  margin: 0 0 clamp(10px, 2vw, 16px);
  font-size: clamp(30px, 4.2vw, 54px);
  letter-spacing: -0.02em;
}

/* ✅ Textpassage: ca. verdoppelt + responsiv */
.card__text {
  margin: 0 0 clamp(14px, 2.6vw, 22px);
  color: var(--muted);
  font-size: clamp(1.35rem, 2.4vw, 2.10rem); /* ~2x gegenüber vorher (1.05rem) */
  line-height: 1.55;
}

/* ✅ Bildbereich: passt sich Viewport an, wird nicht "zu groß" */
.card__media {
  margin: 0 0 clamp(14px, 2.6vw, 22px);
}

.card__image {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.03);

  /* ✅ verhindert, dass das Bild in der Höhe "übernimmt" */
  max-height: min(55vh, 520px);
  object-fit: cover; /* wirkt hero-mäßig; wenn du "komplett sichtbar" willst -> contain */
}

/* ✅ Statusblock zentriert */
.card__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);

  padding: clamp(14px, 2.2vw, 18px);
  border-radius: 16px;
  border: 1px solid rgba(94, 163, 255, 0.25);
  background: rgba(94, 163, 255, 0.10);
}

/* ✅ 🚧 +300% (≈ 4x), responsiv */
.badge {
  line-height: 1;
  font-size: clamp(3.0rem, 7vw, 5.4rem); /* vorher ~1.35rem, jetzt ~4x auf max */
}

/* ✅ Status-Text: ca. verdoppelt + responsiv */
.status-text {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.10rem); /* ~2x */
  line-height: 1.5;
}

.divider {
  margin: clamp(18px, 3vw, 26px) 0 clamp(14px, 2.2vw, 18px);
  border: 0;
  border-top: 1px solid var(--divider);
}

/* ✅ Kleiner Text trotzdem responsiv, aber bewusst kleiner */
.card__small {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.0rem, 1.4vw, 1.2rem);
}

a {
  color: var(--accent);
}

a:hover,
a:focus-visible {
  text-decoration: none;
  outline: none;
  filter: brightness(1.1);
}

.footer {
  padding: 18px;
  text-align: center;
}

.footer__text {
  margin: 0;
  color: rgba(232, 238, 252, 0.75);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}