body {
  margin: 0;
  padding: 0;
background: url("safe-cool.png") no-repeat center center fixed;

  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  max-width: 600px;
  width: 90%;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px #000;
  letter-spacing: 1px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px #000;
}

a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.panel{
  position: relative;
  z-index: 1;
  margin: 2.5rem auto 4rem;
  width: min(92%, 900px);
  background: rgba(0,0,0,.35);
  border-radius: 18px;
  padding: 1.75rem 1.4rem;
  box-shadow: 0 0 20px rgba(255,255,255,.12);
  color: #E6E9EC;
  text-align: left;
}
.panel h2{
  margin: 0 0 .25rem; color:#fff; letter-spacing:.04em; text-align:center;
}
.panel h3{
  margin: 1.4rem 0 .5rem; color:#fff;
}
.panel p, .panel li{
  text-shadow: 1px 1px 3px #000;
}
.panel ol, .panel ul{
  margin: 0 0 .5rem 1.2rem;
}
-der neue Business Button-
/* ===== Buttons: Demo | Business | Guerilla ===== */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 10px;
}

.btnx {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #0a0a0b;              /* dunkles Grau auf hellen Gradients */
  background: #11d3ff;         /* Fallback */
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  transition: transform .08s ease, opacity .12s ease;
}

.btnx:hover { transform: translateY(-1px); opacity: .92; }
.btnx:active { transform: translateY(0); opacity: .85; }

/* Farbcodes pro Bereich */
.btnx.demo {
  background: linear-gradient(90deg, #00bfff, #11d3ff);
}

.btnx.business {
  background: linear-gradient(90deg, #00ff99, #00cc66);
}

.btnx.guerilla {
  background: linear-gradient(90deg, #ff4d9a, #ff7a18);
  color: #0a0a0b;
}

/* Mobile etwas größer abstand */
@media (max-width: 640px){
  .btnx { width: 100%; text-align: center; }
}

---NEU---
/* ===== Buttons: Demo | Business | Guerilla ===== */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 1.25rem;
}

.btnx {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #0a0a0b;              /* Textfarbe */
  background: #11d3ff;         /* Fallback */
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  transition: transform .08s ease, opacity .12s ease;
}
.btnx:hover { transform: translateY(-1px); opacity: .92; }
.btnx:active { transform: translateY(0); opacity: .85; }

/* Farbcodes pro Bereich */
.btnx.demo {
  background: linear-gradient(90deg, #00bfff, #11d3ff);
}
.btnx.business {
  background: linear-gradient(90deg, #00ff99, #00cc66);
}
.btnx.guerilla {
  background: linear-gradient(90deg, #ff4d9a, #ff7a18);
}

/* Mobile: volle Breite */
@media (max-width: 640px){
  .btnx { width: 100%; text-align: center; }
}
------super Neu -------

/* ===== Vertikale Button-Section ===== */
.btn-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 2rem;
}

.btn-block {
  text-align: center;
}

.btn-block p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #bfbfbf;
  letter-spacing: 0.3px;
}

.btnx {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #0a0a0b;
  background: #11d3ff;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  transition: transform .08s ease, opacity .12s ease;
}
.btnx:hover { transform: translateY(-1px); opacity: .92; }

/* Farben */
.btnx.business { background: linear-gradient(90deg, #00ff99, #00cc66); }
.btnx.guerilla { background: linear-gradient(90deg, #ff4d9a, #ff7a18); }
.btnx.demo     { background: linear-gradient(90deg, #00bfff, #11d3ff); }

----noch geiler----
/* ===== Button Glow + Pulse ===== */
.btnx {
  position: relative;
  outline: none;
  border: 0;
  /* kleines Feedback beim Klicken */
  transition: transform .08s ease, opacity .12s ease;
}
.btnx:active { transform: translateY(1px) scale(.99); }

/* Farbvariablen pro Button – steuern den Glow */
.btnx         { --btn-glow: #11d3ff; }                 /* default */
.btnx.business{ --btn-glow: #00ff99; }                 /* grün */
.btnx.guerilla{ --btn-glow: #ff5cab; }                 /* pink/orange */
.btnx.demo    { --btn-glow: #11d3ff; }                 /* cyan */

/* Leuchtrand-Layer */
.btnx::after{
  content:"";
  position:absolute;
  inset:-3px;                 /* leicht größer als der Button */
  border-radius:999px;
  pointer-events:none;
  /* sanfter Glow */
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--btn-glow) 100%, transparent),
    0 0 24px 6px color-mix(in srgb, var(--btn-glow) 55%, transparent);
  opacity:0;
  transform: scale(.98);
  transition: opacity .15s ease, transform .15s ease;
}

/* Hover & Tastatur-Fokus = Glow an + Puls */
.btnx:hover::after,
.btnx:focus-visible::after{
  opacity:1;
  transform: scale(1.02);
  animation: glowPulse 1.2s ease-in-out infinite;
}

/* sanfter Schatten am Button selbst, passend zur Glow-Farbe */
.btnx:hover,
.btnx:focus-visible{
  box-shadow: 0 8px 22px color-mix(in srgb, var(--btn-glow) 30%, transparent);
}

/* Pulsanimation */
@keyframes glowPulse{
  0%,100% { opacity:.85; transform: scale(1.01); }
  50%     { opacity:1;   transform: scale(1.04); }
}

/* Bewegung reduzieren, wenn Nutzer das wünscht */
@media (prefers-reduced-motion: reduce){
  .btnx::after { animation:none !important; }
}
