@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-latin-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF;
}
@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-latin-ext-400.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Inter';
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-latin-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF;
}
@font-face {
  font-family: 'Inter';
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-latin-ext-600.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin-ext-700.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+20A0-20AB, U+20AD-20C0;
}
:root {
  color-scheme: dark;
  --bg: #050b24;
  --panel: rgba(12, 16, 40, 0.82);
  --text: #eef4ff;
  --muted: #9fb0d6;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #5ee7ff;
  --gold: #ffd23a;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-text-size-adjust: 100%;
}
body {
  background: radial-gradient(1200px 600px at 50% -10%, #16224a 0%, var(--bg) 60%) fixed;
}
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 16px 64px;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.brand {
  font: 700 20px/1.2 'Space Grotesk', Inter, system-ui, sans-serif;
  color: #fff;
  text-decoration: none;
}
.brand span {
  color: var(--muted);
  font-weight: 600;
}
nav a,
.langs a {
  color: var(--accent);
}
.langs {
  display: flex;
  gap: 10px;
  font-size: 14px;
}
h1 {
  font: 700 clamp(26px, 6vw, 34px) / 1.2 'Space Grotesk', Inter, system-ui, sans-serif;
  margin: 8px 0 6px;
}
h2 {
  font: 700 20px/1.3 'Space Grotesk', Inter, system-ui, sans-serif;
  margin: 28px 0 8px;
}
p,
li {
  color: var(--text);
}
.muted {
  color: var(--muted);
  font-size: 14px;
}
a {
  color: var(--accent);
}
section.lang {
  padding: 4px 20px 16px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
th,
td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  color: var(--muted);
  font-weight: 600;
}
.seller {
  padding: 10px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 210, 58, 0.06);
  border-radius: 8px;
}
footer {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
