
    /* Tinos lokal einbinden – ersetze den Pfad durch deinen Serverpfad */
    @font-face {
      font-family: 'Tinos';
      src: url('/fonts/Tinos-Regular.woff2') format('woff2'),
           url('/fonts/Tinos-Regular.woff') format('woff');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Tinos';
      src: url('/fonts/Tinos-Bold.woff2') format('woff2'),
           url('/fonts/Tinos-Bold.woff') format('woff');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    /* Grundlayout */
    body {
      margin: 0;
      padding: 0;
      font-family: 'Tinos', sans-serif;
      background: #fff;
      color: #111;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
    }

    .container {
      max-width: 600px;
      max-height: 600px;
      padding: 2rem;
    }

    .logo {
      max-width: 200px;
      margin: 0 auto 1.5rem;
      display: block;
    }

    h1 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .links a {
      display: block;
      margin: 0.5rem 0;
      text-decoration: none;
      color: #e5007d; /* Akzentfarbe */
      font-weight: 700;
    }

    .links a:hover {
      text-decoration: underline;
    }

    .footer-links {
      margin-top: 2rem;
      font-size: 0.9rem;
    }

    .footer-links a {
      color: #111;
      text-decoration: none;
      margin: 0 0.5rem;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }