:root {
  --bg: #0c0910;
  --bg-soft: #16111c;
  --line: #2a2233;
  --text: #ece7f1;
  --muted: #a498b4;
  --accent: #c2456b;
  --accent-soft: rgba(194, 69, 107, 0.16);
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(1000px 520px at 50% -10%, #2a1526 0%, transparent 70%),
    var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

/* ---------- age gate ---------- */

.gate {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 6, 11, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.gate__card {
  max-width: 460px;
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.gate__badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.gate__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
}

.gate__body {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.gate__actions {
  display: grid;
  gap: 10px;
}

.gate__fine {
  color: #6f6480;
  font-size: 12px;
  margin: 18px 0 0;
}

.btn {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover { background: #d4527a; }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.btn--ghost:hover { border-color: var(--muted); }

/* ---------- page ---------- */

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 20px 48px;
  animation: rise 0.5s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.hero {
  text-align: center;
  margin-bottom: 36px;
}

.avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), #6b2a54);
  font-family: Fraunces, Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 1px var(--line), 0 18px 40px rgba(194, 69, 107, 0.25);
}

.hero__name {
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.hero__tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tags li {
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 12px;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
}

.card p { margin: 0 0 12px; font-size: 15px; }
.card p:last-child { margin-bottom: 0; }

.card__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.link:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateX(3px);
}

.link__icon {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.link__text { display: grid; }
.link__label { font-weight: 600; font-size: 15px; }
.link__handle { color: var(--muted); font-size: 13px; }
.link__arrow { margin-left: auto; color: var(--muted); }

.rules {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.rules li { margin-bottom: 8px; }
.rules li:last-child { margin-bottom: 0; }

.foot {
  text-align: center;
  color: #6f6480;
  font-size: 12px;
  margin-top: 28px;
}

@media (max-width: 480px) {
  .page { padding-top: 44px; }
  .hero__name { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
