
:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --shadow: 0 10px 30px rgba(16,24,40,0.08);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 50% -10%, #eef2ff 0%, var(--bg) 45%);
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.center{
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 20px;
}
.card{
  width:min(920px, 92vw);
  background:var(--card);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:28px clamp(18px, 3vw, 40px);
}
.pill{
  display:inline-block;
  margin:0 auto 10px;
  padding:6px 12px;
  font-size:14px;
  color:#0f172a;
  border:1px solid #e2e8f0;
  border-radius:999px;
  background:#fff;
}
.msg{
  margin:0;
  line-height:1.35;
  text-align:center;
  /* Larger message text for ads, responsive */
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight:600;
}
.next{
  text-align:center;
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
}
.hidden{display:none!important}
a{color:inherit}
