/* Solar interface. Tokens and metrics mirror the Android app (Theme.kt), so the
   site and the app render the same design on every screen size. */

@font-face { font-family: 'Inter'; src: url('/assets/fonts/inter.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/assets/fonts/inter-medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/assets/fonts/inter-semibold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/assets/fonts/inter-bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

:root {
  --background: #0e0f12;
  --surface: #181a1f;
  --surface-raised: #21242a;
  --stroke: rgba(255, 255, 255, 0.08);
  --accent: #fab533;
  --accent-dim: rgba(250, 181, 51, 0.15);
  --online: #4dd48c;
  --offline: #f25a61;
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.55);
  --radius-card: 16px;
  --shell: 720px;
  --navbar-height: 80px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html, body { height: 100%; margin: 0; }

body {
  background: var(--background);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; margin: 0; padding: 0; cursor: pointer; }
button:disabled { cursor: default; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ol, ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
code { font-family: ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Consolas, monospace; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }

/* Shell ------------------------------------------------------------------ */

#root { min-height: 100%; }

.app { min-height: 100dvh; display: flex; flex-direction: column; }

.app-content {
  flex: 1;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px 20px calc(var(--navbar-height) + env(safe-area-inset-bottom, 0px) + 24px);
}

.screen { display: flex; flex-direction: column; gap: 16px; }

.boot { padding: 64px 0; text-align: center; color: var(--text-2); }

.privacy-page { max-width: 760px; margin: 0 auto; padding: 48px 20px; color: var(--text-1); }
.privacy-header { margin-bottom: 24px; }
.privacy-header h1 { margin: 4px 0 8px; font-size: 32px; }
.privacy-card { line-height: 1.65; }
.privacy-card h2 { margin: 26px 0 8px; font-size: 18px; }
.privacy-card h2:first-child { margin-top: 0; }
.privacy-card p { margin: 0 0 14px; color: var(--text-2); }
.privacy-card a { color: var(--accent); }

/* Navigation bar --------------------------------------------------------- */

.navbar {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 20;
}

.navbar-inner {
  max-width: var(--shell);
  margin: 0 auto;
  height: var(--navbar-height);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 0 8px;
}

.navbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-2);
  transition: color 0.15s ease;
}

.navbar-item small { font-size: 12px; font-weight: 500; }
.navbar-item.active { color: var(--accent); }

.navbar-indicator {
  display: grid;
  place-items: center;
  width: 64px;
  max-width: 100%;
  height: 32px;
  border-radius: 16px;
  transition: background 0.15s ease;
}

.navbar-item.active .navbar-indicator { background: var(--accent-dim); }

/* Headers ---------------------------------------------------------------- */

.screen-header { display: flex; flex-direction: column; gap: 4px; padding-top: 4px; }
.screen-header h1 { font-size: 32px; font-weight: 700; line-height: 1.15; }
.screen-header p { font-size: 14px; color: var(--text-2); }

.sub-header { display: flex; align-items: center; gap: 4px; }
.sub-header h2 { font-size: 24px; font-weight: 700; }
.sub-header .icon-button { color: var(--accent); }

.section-label { display: block; padding: 0 4px; font-size: 15px; font-weight: 600; }

.section { display: flex; flex-direction: column; gap: 10px; }
.screen > .section + .section { margin-top: 10px; }

/* Cards and rows --------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
  padding: 16px;
}

.card-flush { padding: 0; overflow: hidden; }
.card-title { font-size: 16px; font-weight: 600; }
.card-text { font-size: 14px; color: var(--text-2); }

.stack { display: flex; flex-direction: column; gap: 12px; }
.stack-lg { gap: 16px; }

.divider { display: block; height: 1px; background: var(--stroke); }

.row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  text-align: start;
}

.row-divided { border-top: 1px solid var(--stroke); }

.row-main,
.row-main-inline {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: start;
}

.row-label { flex: 1; font-size: 15px; }

.row-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-meta { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-2); }
.row-meta em { font-style: normal; }
.row-meta .is-online { color: var(--online); }
.row-meta-wrap { display: block; white-space: normal; line-height: 1.4; }

.row-detail {
  font-size: 13px;
  color: var(--text-2);
  max-width: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-chevron { color: var(--text-2); flex: none; }
.nav-row:hover { background: rgba(255, 255, 255, 0.03); }

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  color: var(--text-2);
}

.icon-button:hover { background: rgba(255, 255, 255, 0.06); }
.icon-button:disabled { opacity: 0.5; }

.link-danger { color: var(--offline); font-size: 12px; flex: none; }

.dot { display: block; width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--offline); }
.dot-online { background: var(--online); }

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 10px 24px;
  border-radius: 21px;
  font-size: 14px;
  font-weight: 600;
  transition: filter 0.15s ease, background 0.15s ease;
}

.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover:not(:disabled) { filter: brightness(1.08); }
.btn-muted { background: var(--surface-raised); color: var(--text); }
.btn-muted:hover:not(:disabled) { background: #272b32; }
.btn:disabled { background: var(--surface-raised); color: var(--text-2); }

/* Fields ----------------------------------------------------------------- */

.field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-raised);
  border: 1px solid var(--stroke);
  border-radius: 4px;
  padding: 0 8px 0 14px;
  min-height: 52px;
  color: var(--text-2);
}

.field:focus-within { border-color: var(--accent); }

.field input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  padding: 14px 0;
  color: var(--text);
  outline: none;
}

.field input::placeholder { color: var(--text-2); }
.field-action { color: var(--accent); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; }

.field-stack { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.field-head { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.field-head output { color: var(--accent); font-variant-numeric: tabular-nums; }
.field-row { align-items: center; }
.field-pair { display: flex; gap: 10px; }
.field-pair .field { flex: 1; min-width: 0; }
.field-pair .field-port { flex: none; width: 116px; padding-inline-end: 14px; }

.select {
  display: flex;
  align-items: center;
  background: var(--surface-raised);
  border: 1px solid var(--stroke);
  border-radius: 4px;
  padding-inline-end: 10px;
  color: var(--text-2);
}

.select select {
  flex: 1;
  appearance: none;
  background: none;
  border: 0;
  padding: 12px 14px;
  color: var(--text);
  outline: none;
}

.select option { background: var(--surface); }

input[type='range'] {
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--surface-raised);
  outline: none;
}

input[type='range']::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

input[type='range']::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.file-input { display: none; }

/* Switch ----------------------------------------------------------------- */

.switch {
  position: relative;
  flex: none;
  width: 52px;
  height: 32px;
  border-radius: 16px;
  background: var(--surface-raised);
  border: 2px solid var(--stroke);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.switch i {
  position: absolute;
  top: 50%;
  inset-inline-start: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-2);
  transform: translateY(-50%);
  transition: inset-inline-start 0.15s ease, width 0.15s ease, height 0.15s ease, background 0.15s ease;
}

.switch.on { background: var(--accent); border-color: var(--accent); }
.switch.on i { inset-inline-start: 22px; width: 24px; height: 24px; background: #000; }

/* Play ------------------------------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  background: var(--surface-raised);
  border-radius: 50px;
  padding: 7px 11px;
  font-size: 12px;
  color: var(--text-2);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chip:hover { color: var(--text); }

.hint { font-size: 11px; color: var(--text-2); }
.hint-accent { font-size: 12px; color: var(--accent); }

.server-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.server-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.15s ease;
}

.server-card:hover { transform: translateY(-2px); }

.server-card-art {
  display: grid;
  place-items: center;
  height: 80px;
  flex: none;
  min-height: 0;
  overflow: hidden;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-2);
}

.server-card-art img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

.server-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 11px;
  background: var(--surface);
  text-align: start;
}

.server-card-body strong {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.session-heading { display: flex; align-items: center; gap: 8px; }
.session-heading strong { font-size: 13px; font-weight: 600; color: var(--online); }
.session-heading span {
  margin-inline-start: auto;
  font-size: 12px;
  color: var(--text-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-field {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-raised);
  color: var(--text-2);
  text-align: start;
}

.copy-field:hover { background: #272b32; }
.copy-field > span { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.copy-field small { font-size: 10px; letter-spacing: 0.08em; }

.copy-field code {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-field .code-strong { color: var(--accent); letter-spacing: 0.14em; }

.steps { display: flex; flex-direction: column; gap: 10px; }
.steps li { display: flex; gap: 10px; align-items: flex-start; }

.steps span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.steps p { font-size: 12px; color: var(--text-2); }
.steps strong { color: var(--text); font-weight: 600; }

/* Account, settings, help ------------------------------------------------ */

.identity { display: flex; align-items: center; gap: 12px; }

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--surface-raised);
  color: var(--text-2);
  overflow: hidden;
}

.avatar img { width: 100%; height: 100%; object-fit: cover; }

.google-signin { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.google-signin > div { display: flex; justify-content: center; width: 100%; }

.faq-answer {
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--text-2);
  white-space: pre-line;
}

.loading-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-2); }

.spinner {
  display: block;
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--accent-dim);
  border-top-color: var(--accent);
  animation: spin 0.7s linear infinite;
}

.spinner-dark { border-color: rgba(0, 0, 0, 0.25); border-top-color: #000; }

@keyframes spin { to { transform: rotate(360deg); } }

.error-text {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(242, 90, 97, 0.12);
  border: 1px solid rgba(242, 90, 97, 0.3);
  color: #ffb3b7;
  font-size: 13px;
}

/* Sheets ----------------------------------------------------------------- */

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  padding: 0;
}

.sheet {
  width: 100%;
  max-width: var(--shell);
  max-height: 88dvh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 20px 20px 0 0;
  animation: sheet-in 0.2s ease;
}

@keyframes sheet-in { from { transform: translateY(16px); opacity: 0; } }

.sheet-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--stroke);
}

.sheet-head h2 { font-size: 18px; font-weight: 700; }
.sheet-head p { font-size: 12px; color: var(--text-2); }

.sheet-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
}

.sheet-head > div { flex: 1; min-width: 0; }

.sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sheet-actions {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--stroke);
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

/* Premium ---------------------------------------------------------------- */

.premium-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.premium-hero img { width: 96px; height: 96px; object-fit: contain; }
.premium-hero p { font-size: 12px; letter-spacing: 0.22em; color: var(--accent); font-weight: 700; }

.premium-feature { display: flex; align-items: flex-start; gap: 12px; }

.premium-feature > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
}

.premium-feature strong { display: block; font-size: 14px; font-weight: 600; }
.premium-feature p { font-size: 12px; color: var(--text-2); }

.plan-list { display: flex; flex-direction: column; gap: 10px; }

.plan {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--stroke);
  text-align: start;
}

.plan.active { border-color: var(--accent); background: var(--accent-dim); }
.plan > span { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.plan strong { font-size: 15px; font-weight: 600; }
.plan small { font-size: 11px; color: var(--text-2); }
.plan b { font-size: 15px; font-weight: 700; color: var(--accent); white-space: nowrap; }

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  padding: 8px 14px;
  border-radius: 50px;
  background: var(--surface-raised);
  border: 1px solid var(--stroke);
  font-size: 13px;
  color: var(--text-2);
}

.pill.active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

.qr { width: 200px; height: 200px; margin: 0 auto; border-radius: 12px; background: #fff; padding: 8px; }

.invoice-amount { display: flex; flex-direction: column; gap: 2px; align-items: center; text-align: center; }
.invoice-amount strong { font-size: 22px; font-weight: 700; }
.invoice-amount small, .invoice-amount span { font-size: 12px; color: var(--text-2); }

.invoice-address {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-raised);
  font-size: 12px;
  word-break: break-all;
}

/* Admin ------------------------------------------------------------------ */

.admin-user { display: flex; align-items: center; gap: 12px; }
.admin-user .row-main-inline { gap: 2px; }
.presence { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-2); }

/* Profiler --------------------------------------------------------------- */

.profiler-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.profiler-stat { display: flex; flex-direction: column; gap: 2px; min-width: 0; padding: 10px 12px; border-radius: 12px; background: var(--surface-raised); }
.profiler-stat small { font-size: 11px; color: var(--text-2); }
.profiler-stat strong { font-size: 15px; font-variant-numeric: tabular-nums; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.profiler-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.profiler-actions .btn { width: auto; flex: 1 1 160px; }
.profiler-player:hover { background: rgba(255, 255, 255, 0.03); }
.profiler-detail { display: flex; flex-direction: column; gap: 10px; padding: 0 16px 16px; }
.profiler-subtitle { font-size: 13px; font-weight: 600; }
.profiler-scroll { overflow-x: auto; }
.profiler-table { width: 100%; border-collapse: collapse; font-size: 12px; font-variant-numeric: tabular-nums; }
.profiler-table th { padding: 6px 8px; border-bottom: 1px solid var(--stroke); color: var(--text-2); font-weight: 500; text-align: start; white-space: nowrap; }
.profiler-table td { padding: 6px 8px; border-bottom: 1px solid var(--stroke); white-space: nowrap; }
.profiler-table tr:last-child td { border-bottom: none; }
.profiler-table .num { text-align: end; }
.profiler-name { max-width: 340px; overflow: hidden; text-overflow: ellipsis; }
.profiler-bar { display: inline-block; width: 80px; height: 6px; overflow: hidden; border-radius: 3px; background: var(--surface-raised); vertical-align: middle; }
.profiler-bar span { display: block; height: 100%; background: var(--accent); }
.chip-active { background: var(--accent-dim); color: var(--accent); }
.profiler-charts { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.profiler-chart { display: flex; flex-direction: column; gap: 6px; min-width: 0; padding: 10px 12px; border-radius: 12px; background: var(--surface-raised); }
.profiler-chart-head { display: flex; align-items: baseline; gap: 8px; }
.profiler-chart-head small { font-size: 11px; color: var(--text-2); }
.profiler-chart-head small:first-child { flex: 1; }
.profiler-chart-head strong { font-size: 14px; font-variant-numeric: tabular-nums; }
.profiler-chart svg { display: block; width: 100%; height: 64px; }
.profiler-chart path { fill: none; stroke: var(--accent); stroke-width: 2; vector-effect: non-scaling-stroke; }

/* Responsive ------------------------------------------------------------- */

@media (min-width: 900px) {
  :root { --shell: 860px; }
  .server-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .app-content { padding-inline: 32px; }
  .sheet-backdrop { align-items: center; padding: 24px; }
  .sheet { border-radius: 20px; max-height: 82dvh; }
  .sheet-actions { padding-bottom: 16px; }
}

@media (max-width: 380px) {
  .screen-header h1 { font-size: 28px; }
  .navbar-item small { font-size: 11px; }
  .app-content { padding-inline: 16px; }
}

/* App tab --------------------------------------------------------------- */

.app-hero { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }

.app-hero-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 16px;
  background: var(--accent-dim);
  color: var(--accent);
}

.app-hero-body { flex: 1; min-width: 0; }
.app-hero-body strong { display: block; font-size: 16px; font-weight: 600; }
.app-hero-body p { font-size: 12px; color: var(--text-2); }

.card .btn + .hint { margin-top: 10px; }

.app-steps { padding: 16px; }

.app-feature { display: flex; align-items: flex-start; gap: 12px; }

.app-feature > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
}

.app-feature strong { display: block; font-size: 14px; font-weight: 600; }
.app-feature p { font-size: 12px; color: var(--text-2); }

.btn[aria-disabled="true"] { opacity: 0.6; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.changelog-entry { display: flex; flex-direction: column; gap: 16px; }
.changelog-heading { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.changelog-version { font-size: 20px; font-weight: 700; }
.changelog-tag {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}
.changelog-date { margin-left: auto; font-size: 13px; color: var(--text-2); }
.changelog-group { display: flex; flex-direction: column; gap: 6px; }
.changelog-group-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.changelog-group-title.new { color: var(--online); }
.changelog-group-title.fixed { color: var(--accent); }
.changelog-items { display: flex; flex-direction: column; gap: 4px; margin: 0; padding-left: 18px; }
.changelog-items li { font-size: 14px; color: var(--text-2); line-height: 1.45; }
