    /* --- Reset / Grundstil --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      color: #fff;
      background: #000;
      overflow: hidden;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* --- Hintergrundbild --- */
    body::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('/resources/background2.png') center center/cover no-repeat;
      z-index: -1;
    }

    /* --- Inhalt --- */
    .content {
      text-align: center;
      padding: 2rem;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 1rem;
      backdrop-filter: blur(5px);
      max-width: 600px;
      width: 90%;
    }

    .logo {
      width: 120px;
      height: auto;
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    h1 {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    p {
      margin-bottom: 0.8rem;
      font-size: 1.1rem;
    }

    a {
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid #fff3;
      transition: all 0.3s ease;
    }

    a:hover {
      color: #ffcc00;
      border-bottom-color: #ffcc00;
    }

    /* --- Fußnote / Impressum-Hinweis --- */
   footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: #eee;
  background: rgba(0, 0, 0, 0.5); /* macht es besser lesbar */
  padding: 0.6rem 0;
  backdrop-filter: blur(4px);
}



    @media (max-width: 480px) {
      h1 {
        font-size: 1.5rem;
      }
      p {
        font-size: 1rem;
      }
      .logo {
        width: 90px;
      }
    }