<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>wish it – Wunschlisten App</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      padding: 24px;
    }
    .card {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 48px 32px;
      max-width: 420px;
      width: 100%;
    }
    h1 { font-size: 2.5rem; margin-bottom: 8px; }
    .subtitle { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; }
    .buttons { display: flex; flex-direction: column; gap: 12px; }
    .btn {
      display: inline-block;
      background: #fff;
      color: #764ba2;
      font-weight: 600;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 12px;
      text-decoration: none;
      transition: transform 0.15s;
    }
    .btn:hover { transform: scale(1.03); }
    .btn.secondary {
      background: rgba(255,255,255,0.2);
      color: #fff;
    }
  </style>
</head>
<body>
  <div class="card">
    <h1>wish it</h1>
    <p class="subtitle">Deine Wunschlisten-App für Freunde, Familie und Gruppen.</p>
    <div class="buttons">
      <a class="btn" href="https://play.google.com/store/apps/details?id=com.digitale.wishit">Google Play Store</a>
      <a class="btn secondary" href="https://apps.apple.com/app/wish-it/id6740814198">Apple App Store</a>
    </div>
  </div>
</body>
</html>
