/* Pilsmaatje deeplink/landing site — static, self-contained, dark brand.
   No user input is ever rendered here; there is no JS. Served at
   app.pilsmaatje.nl (Firebase Hosting "app" target). */

:root {
  --canvas: #0b0b0e;
  --elevated: #14141a;
  --muted: #1c1c24;
  --border: #2a2a34;
  --text: #f4f4f6;
  --text-2: #a8a8b3;
  --text-3: #6e6e7a;
  --gold: #e8c547;
  --amber: #f5a623;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px calc(32px + env(safe-area-inset-bottom));
  gap: 20px;
}

.card {
  width: 100%;
  max-width: 420px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(232, 197, 71, 0.18);
}

h1 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 4px 0 0;
}

.brand {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

.store-badge {
  display: inline-block;
  height: 52px;
  transition: transform 0.2s ease;
}

.store-badge:hover { transform: scale(1.04); }
.store-badge img { display: block; height: 100%; width: auto; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1204;
  background: linear-gradient(135deg, #f5d06a, #e8a928 55%, #c9911f);
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  min-height: 48px;
  width: 100%;
  max-width: 280px;
}

.hint { font-size: 13px; color: var(--text-3); }

footer {
  font-size: 12px;
  color: var(--text-3);
}

footer a { color: var(--text-2); text-decoration: none; }
footer a:hover { text-decoration: underline; }
