hhtml, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* 🔥 FULLSCREEN HERO HINTERGRUND MIT OVERLAY */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;

  /* Hintergrundbild + dunkles Overlay */
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("https://www.metalliverse.de/Webgrafiken/login_bg2.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* FRIENDICA / CONTENT bleibt oben */
#login,
.login-form,
.panel,
main,
.content {
  position: relative;
  z-index: 1;
}

#login-form,
.panel,
.login-form {
  position: relative;
  z-index: 3;
}

/* dein Content-Block */
.box {
  background: rgba(0,0,0,0.65);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  color: #fff;
}

/* Links */
a {
  color: #7029de;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #7029de;
  color: #fff;
  border-radius: 5px;
}

.cta:hover {
  background: #cc0000;
  color: #fff;
}

/* Sprachhinweis */
.lang-switch {
  font-size: 0.9em;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .content {
    padding: 40px 15px;
  }
}