:root {
  --bg: #070707;
  --surface: #111111;
  --surface-2: #171717;
  --text: #f7f7f7;
  --muted: #b9b9b9;
  --accent: #f5c518;
  --border: #2b2b2b;
  --max: 920px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #17130a 0, var(--bg) 38%);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(7,7,7,.86);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 800; letter-spacing: .02em; }
.brand:hover { text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid #3b310c; }
nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
nav a { color: var(--muted); }
nav a:hover, nav a[aria-current="page"] { color: var(--text); }

main { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.hero { padding: 88px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1fr 250px; align-items: center; gap: 64px; }
.hero h1 { font-size: clamp(44px, 8vw, 76px); line-height: .98; margin: 0 0 22px; letter-spacing: -.04em; }
.hero p { font-size: clamp(18px, 2.5vw, 23px); color: var(--muted); max-width: 650px; margin: 0; }
.hero-logo { width: 100%; border-radius: 50%; box-shadow: 0 0 60px rgba(245,197,24,.12); }

.links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-weight: 650;
}
.button:hover { border-color: #5f5018; text-decoration: none; }

.legal { padding: 64px 0 80px; }
.legal-header { margin-bottom: 42px; }
.legal h1 { font-size: clamp(36px, 6vw, 56px); line-height: 1.06; letter-spacing: -.035em; margin: 0 0 10px; }
.updated { color: var(--muted); font-size: 14px; }
.legal section { padding: 28px 0; border-top: 1px solid var(--border); }
.legal h2 { margin: 0 0 10px; font-size: 24px; }
.legal h3 { margin: 22px 0 8px; font-size: 18px; }
.legal p, .legal li { color: #dddddd; }
.legal ul { padding-left: 22px; }
.notice {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid #4b4017;
  background: #151205;
  border-radius: 12px;
  color: #ece3ba;
}

footer { border-top: 1px solid var(--border); margin-top: 50px; }
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 40px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .header-inner { min-height: auto; padding: 14px 0; align-items: flex-start; flex-direction: column; gap: 10px; }
  nav { gap: 12px; }
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-logo { width: 190px; order: -1; }
}
