:root {
  --bg: #101114;
  --card: #1a1c22;
  --line: #2a2d36;
  --text: #f3f1ea;
  --muted: #9a9588;
  --accent: #d7b56d;
  --danger: #e07a5f;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: Georgia, "Times New Roman", serif; }
a { color: var(--accent); text-decoration: none; }
.top { display: flex; justify-content: space-between; align-items: center; padding: 18px 8vw; border-bottom: 1px solid var(--line); }
.logo { letter-spacing: .18em; font-weight: 700; color: var(--text); }
nav { display: flex; gap: 16px; align-items: center; font-family: system-ui, sans-serif; font-size: 14px; }
.who { color: var(--muted); }
.inline { display: inline; }
button, .cta, .btn-link {
  background: var(--accent); color: #1a1408; border: 0; padding: 10px 16px;
  font-weight: 700; cursor: pointer; font-family: system-ui, sans-serif;
}
.btn-link { display: inline-block; }
nav button { background: transparent; color: var(--muted); padding: 0; font-weight: 500; }
main { padding: 48px 8vw 80px; max-width: 1200px; margin: 0 auto; }
.hero { max-width: 640px; padding: 8vh 0; }
.hero h1 { font-size: clamp(36px, 6vw, 64px); margin: 0 0 16px; }
.lead { color: var(--muted); font-size: 20px; line-height: 1.5; margin-bottom: 28px; }
.auth { max-width: 380px; }
label { display: block; margin: 14px 0; font-family: system-ui, sans-serif; font-size: 13px; color: var(--muted); }
input { width: 100%; margin-top: 6px; padding: 12px; background: var(--card); border: 1px solid var(--line); color: var(--text); }
.error { color: var(--danger); }
.muted { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.card img, .ph { width: 100%; height: 160px; object-fit: cover; background: #121318; }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h2 { margin: 0; font-size: 22px; }
.city { font-family: system-ui, sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.wait {
  display: inline-block; border: 1px solid var(--accent); color: var(--accent);
  padding: 8px 12px; font-family: system-ui, sans-serif; letter-spacing: .06em;
  text-transform: uppercase; font-size: 12px; margin-bottom: 16px;
}
.coins { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.coin { background: var(--card); border: 1px solid var(--line); padding: 16px; }
.coin img { width: 160px; height: 160px; background: #fff; padding: 8px; }
.coin code { display: block; margin-top: 10px; word-break: break-all; font-size: 12px; color: var(--muted); }
.amt { font-size: 20px; margin: 8px 0; }
.back { display: inline-block; margin-top: 28px; font-family: system-ui, sans-serif; }
