:root {
  --bg1: #0b1020;
  --bg2: #2a0b2e;
  --card: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --yes: #22c55e;
  --no: #ef4444;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, #3b1b54, transparent),
              radial-gradient(900px 700px at 80% 30%, #1b3b6a, transparent),
              linear-gradient(135deg, var(--bg1), var(--bg2));
  min-height: 100vh;
}

.center {
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(680px, 94vw);
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

h1 { margin: 10px 0 18px; font-size: clamp(28px, 4vw, 44px); }
.tiny { margin-top: 18px; color: var(--muted); font-size: 12px; }

.btnRow { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  transform: translateY(0);
  transition: transform .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.yes { background: linear-gradient(180deg, #2ee97a, var(--yes)); }
.btn.no  { background: linear-gradient(180deg, #ff6b6b, var(--no)); }

.hero {
  text-align: center;
  padding: 40px 16px 10px;
}
.hero p { color: var(--muted); margin-top: 6px; }

.grid {
  width: min(1100px, 92vw);
  margin: 18px auto 40px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 0 16px;
}
.grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.footer {
  text-align: center;
  padding-bottom: 40px;
}

/* Confetti canvas */
#confetti {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero, .grid, .footer { position: relative; z-index: 1; }
