:root {
  --bg: #0a0b10;
  --panel: #11131b;
  --panel-2: #171a24;
  --text: #f5f2ea;
  --muted: #aaa8b2;
  --line: rgba(255, 255, 255, .11);
  --accent: #e7b55a;
  --accent-2: #f16f8b;
  --green: #7ad6ad;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 0%, rgba(241, 111, 139, .14), transparent 32rem),
    radial-gradient(circle at 10% 16%, rgba(231, 181, 90, .11), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(10, 11, 16, .88); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 820; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-family: Georgia, serif; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.age-chip { padding: 6px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--accent); font-weight: 750; }
.hero { padding: 96px 0 62px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
h1 { max-width: 830px; margin: 18px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 7vw, 82px); line-height: .98; letter-spacing: -.045em; font-weight: 500; }
.hero-copy { max-width: 680px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: #d2ced4; font-size: 13px; }
.hero-meta span::before { content: "\2022"; color: var(--accent); margin-right: 9px; }
.notice { margin: 0 0 42px; padding: 18px 20px; border: 1px solid rgba(231, 181, 90, .3); border-radius: 14px; background: rgba(231, 181, 90, .07); color: #ddd6c8; }
.section { padding: 52px 0; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 24px; }
h2 { margin: 0; font: 500 clamp(30px, 4vw, 48px)/1.1 Georgia, serif; letter-spacing: -.025em; }
.section-head p { max-width: 510px; margin: 0; color: var(--muted); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: rgba(17, 19, 27, .8); }
table { width: 100%; border-collapse: collapse; min-width: 860px; }
th, td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); text-transform: uppercase; letter-spacing: .09em; font-size: 11px; }
td { font-size: 14px; }
tr:last-child td { border-bottom: 0; }
.best { color: var(--green); font-weight: 750; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { display: flex; flex-direction: column; min-height: 345px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(155deg, rgba(23,26,36,.94), rgba(14,16,23,.94)); }
.card-number { color: var(--accent); font: 500 13px Georgia, serif; letter-spacing: .1em; }
.card h3 { margin: 22px 0 8px; font: 500 27px Georgia, serif; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0; }
.tag { padding: 5px 9px; border: 1px solid var(--line); border-radius: 99px; color: #d5d2db; font-size: 11px; }
.card-link { margin-top: auto; padding-top: 22px; color: var(--accent); font-size: 13px; font-weight: 760; text-decoration: none; }
.card-link:hover { color: #ffd68b; }
.method { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: item; }
.method article { padding: 22px; border-top: 1px solid var(--accent); background: rgba(255,255,255,.025); }
.method article::before { counter-increment: item; content: "0" counter(item); color: var(--accent); font-size: 12px; }
.method h3 { margin: 28px 0 8px; font-size: 16px; }
.method p { margin: 0; color: var(--muted); font-size: 13px; }
.prose { max-width: 800px; padding: 68px 0 90px; }
.prose h1 { font-size: clamp(40px, 6vw, 66px); }
.prose h2 { margin-top: 42px; font-size: 30px; }
.prose p, .prose li { color: #c5c1c8; }
.prose a { color: var(--accent); }
.updated { color: var(--muted); font-size: 13px; }
.footer { border-top: 1px solid var(--line); padding: 34px 0 48px; color: var(--muted); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--text); }
.age-gate { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 22px; background: rgba(4,5,8,.92); backdrop-filter: blur(14px); }
.age-gate.is-open { display: grid; }
.age-dialog { width: min(100%, 480px); padding: 34px; border: 1px solid rgba(231,181,90,.32); border-radius: 20px; background: var(--panel); box-shadow: 0 30px 100px #000; }
.age-dialog h2 { font-size: 36px; }
.age-dialog p { color: var(--muted); }
.age-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 25px; }
.button { appearance: none; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--text); font: inherit; font-weight: 750; cursor: pointer; text-align: center; text-decoration: none; }
.button-primary { border-color: var(--accent); background: var(--accent); color: #171109; }
.button:hover { filter: brightness(1.1); }
body.gated { overflow: hidden; }

@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: repeat(2, 1fr); }
  .section-head { align-items: start; flex-direction: column; }
}
@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 64px; }
  .nav-links a:not(.age-chip) { display: none; }
  .hero { padding-top: 66px; }
  .cards, .method { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
  .age-actions { grid-template-columns: 1fr; }
}
