:root { --bg1:#fff0f4; --bg2:#ffe3ec; --ink:#2a2a2e; --muted:#8a8a93; --card:#ffffff; }
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; height: 100%; }
body {
  font: 16px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
  display: flex; align-items: center; justify-content: center;
  padding: 24px; min-height: 100dvh;
}
.card {
  width: 100%; max-width: 420px; background: var(--card);
  border-radius: 22px; padding: 34px 24px 28px; text-align: center;
  box-shadow: 0 12px 40px rgba(200,120,150,0.18);
}
.avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px;
  background: radial-gradient(circle at 35% 30%, #ffd0e0, #ff9fc0);
}
h1 { margin: 6px 0 2px; font-size: 26px; font-weight: 700; }
.tagline { margin: 0 0 22px; color: var(--muted); font-size: 15px; }
.links { display: flex; flex-direction: column; gap: 12px; }
.btn {
  display: block; text-decoration: none; color: #fff; font-weight: 600; font-size: 16px;
  padding: 15px 18px; border-radius: 14px; transition: transform .05s ease, filter .15s ease;
}
.btn:active { transform: scale(.985); }
.btn:hover { filter: brightness(1.04); }
.btn-telegram  { background: linear-gradient(135deg, #37aee2, #1e96c8); }
.btn-snapchat  { background: linear-gradient(135deg, #fffc00, #f7d000); color: #1a1a1a; }
.btn-instagram { background: linear-gradient(135deg, #feda75, #d62976 45%, #4f5bd5); }
.hint { margin: 18px 0 0; color: var(--muted); font-size: 12.5px; }
