/* Reset & Basics */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Vollbild mit Tresor-Hintergrund */
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: #fff;
  background:
    #000
    url("assets/safe-cool.png") center center / cover no-repeat fixed;
  position: relative;
}

/* Dunkler Overlay, damit der Text schön knallt */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 50%),
              rgba(0,0,0,0.65);
  z-index: 0;
}

/* Glas-Karte in der Mitte */
.card {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  padding: 40px 32px 32px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.70);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8);
  text-align: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

/* Überschrift & Tagline */
.card-header {
  margin-bottom: 18px;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
}

/* Kurztext unter der Überschrift (kannst du abends ersetzen) */
.lead {
  margin: 10px auto 0;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Zurück-Button */
.back-link {
  display: inline-block;
  margin-top: 32px;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: transparent;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}
