:root {
  --bg: #07080c;
  --panel: #11131b;
  --panel-soft: #171a24;
  --text: #f7f8ff;
  --muted: #a9b0c2;
  --line: rgba(255,255,255,.10);
  --accent: #8b6dff;
  --accent-soft: rgba(139,109,255,.12);
  --warning: #f3c86b;
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(139,109,255,.11), transparent 30%),
    radial-gradient(circle at 88% 25%, rgba(77,141,255,.08), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
}
a { color: #c2b5ff; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(920px, calc(100% - 32px)); margin: auto; padding: 34px 0 72px; }
.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-bottom: 28px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8,9,14,.82);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: white; font-weight: 800; }
.brand-mark {
  width: 31px; height: 31px; display: grid; place-items: center;
  border-radius: 10px; background: linear-gradient(145deg,#a48cff,#5a39da);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.top-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; font-size: 13px; }
.card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20,22,31,.96), rgba(11,12,18,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}
.eyebrow {
  display: inline-flex; margin-bottom: 14px; padding: 6px 9px;
  border: 1px solid rgba(164,140,255,.22); border-radius: 8px;
  background: var(--accent-soft); color: #c9beff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
h1 { margin: 0 0 12px; font-size: clamp(38px, 7vw, 62px); line-height: 1.03; letter-spacing: -.05em; }
h2 { margin: 36px 0 10px; font-size: 25px; line-height: 1.2; }
h3 { margin: 24px 0 8px; font-size: 18px; }
p, li { color: var(--muted); }
strong { color: #f4f5fb; }
ul { padding-left: 22px; }
li + li { margin-top: 7px; }
.notice {
  margin: 22px 0; padding: 14px 16px; border-left: 3px solid var(--accent);
  border-radius: 9px; background: var(--accent-soft); color: #dcd6ff;
}
.warning {
  margin: 22px 0; padding: 14px 16px; border-left: 3px solid var(--warning);
  border-radius: 9px; background: rgba(243,200,107,.08); color: #f5ddb0;
}
.info-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 22px 0; }
.info-box { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel-soft); }
.info-box span { display: block; color: #848da0; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.info-box strong { display: block; margin-top: 3px; overflow-wrap: anywhere; }
.links { display: grid; gap: 12px; margin-top: 24px; }
.links a { display: block; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--panel-soft); }
.links a strong { display: block; margin-bottom: 3px; }
.links a span { color: var(--muted); font-size: 14px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
th, td { padding: 11px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--panel-soft); }
td { color: var(--muted); }
footer { margin-top: 24px; color: #7e8799; font-size: 12px; text-align: center; }
@media (max-width: 650px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .top-links { justify-content: flex-start; }
  .info-grid { grid-template-columns: 1fr; }
  .card { padding: 24px; }
}
