/* HyperPons theme: see DA.md. Stryds is the foundation: a midnight void, poster-scale type,
   one lime voice for action, and a ring system that is the only multicolour element. */

:root {
  /* Void and surfaces: one step up, separated by hairlines, never by shadow. */
  --void: #101010;
  --carbon: #171717;
  --track: #1a1a1a;
  --slate: #333333;
  --steel: #3d3d3d;

  /* Text: the paper / fog pair does all the emphasis. */
  --paper: #fdfdfd;
  --fog: #6f6f6f;
  --mist: #a3a3a3;

  /* The single chromatic UI voice: CTA fills, active states, accent dots. */
  --lime: #a6ff00;
  --lime-ink: #101010;

  /* Ring spectrum: rings, arcs, the fee donut and coin backgrounds. Never on UI chrome. */
  --r-lime: #a6ff00;
  --r-green: #2ee86f;
  --r-teal: #00d1b2;
  --r-blue: #2f7bff;
  --r-purple: #8b5cf6;
  --r-pink: #ff4fa3;
  --r-orange: #ff7a1a;
  --r-yellow: #ffd400;

  /* Type: Inter with optical sizing, so display sizes get the Display cut. */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape and rhythm */
  --radius-card: 40px;
  --radius-pill: 100px;
  --pad-card: 80px;
  --gap: 16px;
  --section: 108px;
  --gutter: clamp(16px, 4vw, 56px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { color-scheme: dark; background: var(--void); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--void);
  color: var(--paper);
  font: 400 16px/1.4 var(--font);
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; padding: 0; font-weight: inherit; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; letter-spacing: inherit; }
img, svg { display: block; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.num { font-variant-numeric: tabular-nums; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------------------------------------------------------------- type (Stryds scale) */

.d-xl { font-size: clamp(64px, 12.8vw, 184px); line-height: 0.95; letter-spacing: -0.034em; font-weight: 600; }
.d-lg { font-size: clamp(52px, 10.3vw, 148px); line-height: 1; letter-spacing: -0.027em; font-weight: 600; }
.d { font-size: clamp(44px, 7.6vw, 109px); line-height: 1; letter-spacing: -0.026em; font-weight: 500; }
.h-lg { font-size: clamp(40px, 5.4vw, 78px); line-height: 1; letter-spacing: -0.023em; font-weight: 500; }
.h { font-size: clamp(30px, 3.1vw, 44px); line-height: 1.1; letter-spacing: -0.012em; font-weight: 600; }
.h-sm { font-size: clamp(24px, 2.5vw, 36px); line-height: 1.2; letter-spacing: -0.01em; font-weight: 600; }
.sub { font-size: 21px; line-height: 1.25; letter-spacing: -0.007em; font-weight: 500; color: var(--fog); }
.body { font-size: 16px; line-height: 1.5; color: var(--fog); }
.small { font-size: 14px; line-height: 1.43; }
.fog { color: var(--fog); }
.paper { color: var(--paper); }
.balance { text-wrap: balance; }

/* ---------------------------------------------------------------- buttons */

/* Buttons, Uniswap-shaped: rounded rectangles (16px, 20px when large), never pills,
   Inter at 535 with tight tracking. Pills stay for tokens, chips, filters and search. */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 16px; border: 0;
  font-size: 16px; font-weight: 535; line-height: 1.2; letter-spacing: -0.02em; white-space: nowrap; cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}
.pill:active { transform: scale(0.98); }
/* Main: Uniswap's soft accent button. Lime tints the fill and colours the label. */
.pill-lime { background: rgba(166, 255, 0, 0.13); color: var(--lime); }
.pill-lime:hover { background: rgba(166, 255, 0, 0.2); }
/* Create actions carry a plus, as on Uniswap. */
.pill.plus::before {
  content: ""; width: 15px; height: 15px; flex: none; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2.5v11M2.5 8h11' stroke='black' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2.5v11M2.5 8h11' stroke='black' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* Soft: Uniswap's secondary button, a quiet grey fill instead of an outline. */
.pill-line { background: rgba(255, 255, 255, 0.07); color: var(--paper); }
.pill-line:hover { background: rgba(255, 255, 255, 0.12); }
.pill-lg { padding: 16px 24px; font-size: 17px; border-radius: 20px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex: none; }

/* ---------------------------------------------------------------- surfaces */

.card { background: var(--carbon); border: 1px solid var(--slate); border-radius: var(--radius-card); padding: var(--pad-card); }
.coin-img { border-radius: 50%; overflow: hidden; background: var(--track); flex: none; }
.coin-img img, .coin-img svg { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- nav */

.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px var(--gutter); transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav.hide { transform: translateY(-110%); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.nav > .brand { padding: 10px 18px 10px 12px; border-radius: 20px; background: rgba(16, 16, 16, 0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.brand svg { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 6px; padding: 6px; border-radius: 20px; background: rgba(16, 16, 16, 0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav-links a:not(.pill) { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--mist); border-radius: var(--radius-pill); }
.nav-links a:not(.pill):hover { color: var(--paper); }
.nav-links .pill { padding: 9px 16px; font-size: 14px; border-radius: 14px; }

/* ---------------------------------------------------------------- footer */

.footer { padding: 80px var(--gutter) 48px; border-top: 1px solid var(--slate); }
.footer .row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer nav { display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--fog); }
.footer nav a:hover { color: var(--paper); }
.footer .legal { margin-top: 40px; max-width: 720px; font-size: 14px; color: var(--fog); }

/* ---------------------------------------------------------------- page transitions
   Same-origin navigations use View Transitions (Chrome, Edge, Safari 18.2+). The shell is named so it
   stays still; the page content lifts out and the next one settles in. Other browsers just navigate. */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 0.2s cubic-bezier(0.4, 0, 1, 1) both vt-out; }
::view-transition-new(root) { animation: 0.46s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s both vt-in; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-14px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(22px); } }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 60;
  padding: 13px 22px; border-radius: var(--radius-pill); background: var(--carbon); border: 1px solid var(--slate); font-size: 14px;
}

@media (max-width: 760px) {
  :root { --pad-card: 28px; --radius-card: 32px; --section: 72px; }
  .nav-links a:not(.pill) { display: none; }
  .sub { font-size: 18px; }
}

/* ================================================================ APP
   Everything after the landing hero, and every other page: an app shell (sidebar, top bar with the chain
   and search) in the same DA. Denser than the poster: 28-32px cards, 12px gaps, 20px padding. */

:root {
  --side: 248px;
  --top: 72px;
  /* Data colours: trading screens only (numbers, Long / Short). The landing hero stays colourless. */
  --up: #2ee86f;
  --down: #ff5470;
  --raise: #1d1d1d;
  --hair: #242424;
}
.up { color: var(--up); }
.down { color: var(--down); }
.muted { color: var(--fog); }

/* ---------------------------------------------------------------- shell */

.in-app .nav { transform: translateY(-110%); pointer-events: none; }
.sidebar {
  position: fixed; inset: 0 auto 0 0; z-index: 45; width: var(--side); display: flex; flex-direction: column;
  padding: 18px 14px 16px; background: var(--void); border-right: 1px solid var(--slate);
  transform: translateX(-102%); transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.15, 1);
}
.in-app .sidebar { transform: none; }
.sidebar { view-transition-name: sidebar; }
.apptop { view-transition-name: apptop; }
.side-head { display: flex; justify-content: space-between; align-items: center; padding: 4px 6px 26px 8px; }
.side-head .brand svg { width: 30px; height: 30px; }
/* Collapsed: icons only, and everything that reads off `--side` follows. */
.narrow { --side: 78px; }
.narrow .sidebar { padding-left: 12px; padding-right: 12px; }
.narrow .side-head { flex-direction: column; gap: 14px; padding: 4px 0 22px; }
.narrow .brand .lbl, .narrow .side-nav .lbl, .narrow .side-nav .count, .narrow .side-card { display: none; }
.narrow .side-nav a { justify-content: center; padding: 12px 0; }
.narrow .collapse svg { transform: rotate(180deg); }

.collapse { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--slate); background: none; color: var(--fog); display: grid; place-items: center; cursor: pointer; }
.collapse svg { width: 14px; height: 14px; }
.side-nav { display: grid; gap: 2px; }
.side-nav a { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border-radius: var(--radius-pill); font-size: 16px; font-weight: 500; color: var(--mist); transition: background-color 0.2s ease, color 0.2s ease; }
.side-nav a svg { width: 21px; height: 21px; flex: none; }
.side-nav a:hover { color: var(--paper); background: var(--carbon); }
.side-nav a[aria-current="page"] { color: var(--paper); background: var(--carbon); }
.side-nav a[aria-current="page"] svg { color: var(--lime); }
.side-nav .count { margin-left: auto; font-size: 12px; color: var(--fog); font-variant-numeric: tabular-nums; }
.side-card { margin-top: 22px; padding: 18px; border-radius: 24px; background: var(--carbon); border: 1px solid var(--slate); display: grid; gap: 12px; }
.side-card .ring-mini { width: 54px; height: 54px; }
.side-card b { font-size: 15px; font-weight: 600; }
.side-card .pill { justify-self: start; padding: 9px 16px; font-size: 14px; border-radius: 12px; }

.apptop {
  position: fixed; top: 0; left: var(--side); right: 0; z-index: 44; height: var(--top);
  display: grid; grid-template-columns: 1fr minmax(0, 520px) 1fr; align-items: center; gap: 16px; padding: 0 22px;
  background: rgba(16, 16, 16, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--slate);
  transform: translateY(-102%); transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.15, 1) 0.08s;
}
.in-app .apptop { transform: none; }
.apptop .mob-brand { display: none; }
.search { grid-column: 2; display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 8px 0 16px; border-radius: var(--radius-pill); background: var(--carbon); border: 1px solid var(--slate); color: var(--fog); font-size: 14px; transition: border-color 0.2s ease; }
.search:focus-within { border-color: var(--lime); }
.search svg { width: 17px; height: 17px; flex: none; }
.search input { flex: 1; min-width: 0; background: none; border: 0; outline: none; color: var(--paper); font: 400 14px var(--font); }
.search input::placeholder { color: var(--fog); }
.kbd { font-size: 12px; padding: 5px 9px; border-radius: 10px; background: var(--void); border: 1px solid var(--slate); color: var(--fog); }
.top-actions { grid-column: 3; justify-self: end; display: flex; gap: 8px; }
.top-actions .pill { padding: 11px 18px; font-size: 15px; border-radius: 14px; }

.app-main { padding-left: var(--side); }
.page { max-width: 1180px; margin: 0 auto; padding: calc(var(--top) + 44px) 32px 40px; }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px 32px; flex-wrap: wrap; margin-bottom: 32px; }
.page-head h1 { font-size: clamp(36px, 4.2vw, 58px); line-height: 1; letter-spacing: -0.032em; font-weight: 600; text-wrap: balance; }
.page-head p { margin-top: 14px; font-size: 17px; line-height: 1.6; color: var(--fog); max-width: 54ch; text-wrap: pretty; }
.page-head .actions { display: flex; gap: 8px; flex-wrap: wrap; }

.app-footer { margin-top: 96px; padding: 36px 0 20px; border-top: 1px solid var(--slate); display: grid; gap: 22px; }
.app-footer .row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.app-footer nav { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--fog); }
.app-footer nav a:hover { color: var(--paper); }
.app-footer p { font-size: 13px; color: var(--fog); max-width: 70ch; }

/* ---------------------------------------------------------------- panels, stats */

.panel { background: var(--carbon); border: 1px solid var(--slate); border-radius: 28px; min-width: 0; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 18px 22px 0; }
.panel-head h2 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.panel-head .meta { font-size: 13px; color: var(--fog); }
.panel-body { padding: 18px 22px 22px; }
.stats { display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); gap: 12px; }
.stat { display: grid; gap: 6px; align-content: start; padding: 18px 20px; border-radius: 24px; background: var(--carbon); border: 1px solid var(--slate); min-width: 0; }
.stat > span:first-child { font-size: 13px; color: var(--fog); }
.stat .v { font-size: 28px; font-weight: 600; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stat .s { font-size: 13px; color: var(--fog); }
.bar { height: 6px; border-radius: 3px; background: var(--hair); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 3px; background: var(--paper); }
.bar.lime i { background: var(--lime); }

/* ---------------------------------------------------------------- controls */

.seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: var(--radius-pill); background: var(--void); border: 1px solid var(--slate); }
.seg button { border: 0; background: none; padding: 8px 16px; border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 500; color: var(--fog); cursor: pointer; white-space: nowrap; }
.seg button:hover { color: var(--paper); }
.seg button.on { background: var(--paper); color: var(--void); }
.fpill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: var(--radius-pill); border: 1px solid var(--slate); background: none; font-size: 13px; font-weight: 500; color: var(--mist); cursor: pointer; white-space: nowrap; }
.fpill:hover { color: var(--paper); border-color: var(--fog); }
.fpill.on { background: var(--lime); border-color: transparent; color: var(--lime-ink); }
.pager { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fog); font-variant-numeric: tabular-nums; }
.pager button, .icon-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--slate); background: none; color: var(--paper); display: grid; place-items: center; cursor: pointer; }
.pager button:hover, .icon-btn:hover { border-color: var(--fog); }
.pager svg, .icon-btn svg { width: 14px; height: 14px; }
.icon-btn.on { background: var(--paper); color: var(--void); border-color: transparent; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: var(--radius-pill); border: 1px solid var(--slate); font-size: 12.5px; font-weight: 500; color: var(--mist); white-space: nowrap; }
.tag .dot { width: 6px; height: 6px; }

.field { display: grid; gap: 8px; min-width: 0; }
.field > .lbl { font-size: 13px; color: var(--fog); display: flex; justify-content: space-between; gap: 8px; }
.field > .hint { font-size: 12.5px; color: var(--fog); line-height: 1.5; }
.input { display: flex; align-items: center; gap: 8px; min-height: 50px; padding: 0 18px; border-radius: 18px; background: var(--void); border: 1px solid var(--slate); transition: border-color 0.2s ease; }
.input:focus-within { border-color: var(--lime); }
.input input, .input textarea { flex: 1; min-width: 0; width: 100%; background: none; border: 0; outline: none; color: var(--paper); font: 500 15px/1.5 var(--font); padding: 0; }
.input textarea { resize: none; min-height: 84px; padding: 14px 0; }
.input .unit { color: var(--fog); font-size: 14px; }
input[type="range"] { width: 100%; accent-color: var(--lime); }

/* ---------------------------------------------------------------- tables */

.tbl-wrap { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: 15px; font-variant-numeric: tabular-nums; }
.tbl th { padding: 0 16px 12px; font-size: 12px; font-weight: 500; color: var(--fog); text-align: right; white-space: nowrap; }
.tbl td { padding: 13px 16px; text-align: right; white-space: nowrap; border-top: 1px solid var(--hair); }
.tbl .l { text-align: left; }
.tbl th:first-child, .tbl td:first-child { padding-left: 22px; }
.tbl th:last-child, .tbl td:last-child { padding-right: 22px; }
.tbl tbody tr { transition: background-color 0.15s ease; }
.tbl tbody tr[data-href] { cursor: pointer; }
.tbl tbody tr:hover { background: var(--raise); }
.who-cell { display: flex; align-items: center; gap: 12px; }
.who-cell .coin-img { width: 38px; height: 38px; }
.who-cell b { display: block; font-weight: 600; }
.who-cell small { display: block; font-size: 12.5px; color: var(--fog); }

/* ---------------------------------------------------------------- coin cards, events */

.ccard { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; padding: 8px; border-radius: 28px; background: var(--carbon); border: 1px solid var(--slate); transition: border-color 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.ccard:hover { border-color: var(--steel); transform: translateY(-3px); }
.ccard .img { display: block; position: relative; aspect-ratio: 1; border-radius: 22px; overflow: hidden; }
.ccard .img img, .ccard .img svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.ccard:hover .img img { transform: scale(1.05); }
.badge { position: absolute; top: 10px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--radius-pill); background: rgba(16, 16, 16, 0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-size: 12px; font-weight: 500; }
.badge.l { left: 10px; }
.badge.r { right: 10px; color: var(--mist); }
.badge .dot { width: 7px; height: 7px; }
.ccard .meta { display: grid; gap: 8px; padding: 2px 8px 8px; }
.ccard .nm { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.ccard .nm b { min-width: 0; font-size: 16px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccard .nm span, .ccard .row span { font-size: 12px; color: var(--fog); }
.ccard .nm span { flex: none; }
.ccard .row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.ccard .row div { display: grid; gap: 1px; }
.ccard .row div:last-child { text-align: right; }

.events { display: grid; gap: 8px; }
.ev { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 20px; background: var(--void); border: 1px solid var(--slate); }
.ev .amt { display: block; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.ev small { display: block; font-size: 13px; color: var(--fog); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ev small b { color: var(--mist); font-weight: 500; }
.ev .who { display: flex; align-items: center; gap: 6px; color: var(--fog); }
.ev .who .coin-img { width: 30px; height: 30px; }
.ev .who svg { width: 14px; height: 14px; }
.ev time { font-size: 12px; color: var(--fog); min-width: 26px; text-align: right; }

/* ---------------------------------------------------------------- responsive shell */

@media (max-width: 900px) {
  :root { --side: 0px; --top: 64px; }
  .sidebar {
    inset: auto 0 0 0; width: 100%; height: 66px; flex-direction: row; padding: 0 8px; border-right: 0; border-top: 1px solid var(--slate);
    background: rgba(16, 16, 16, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transform: translateY(102%);
  }
  .side-head, .side-card, .side-nav .count, .side-nav .desk { display: none; }
  .side-nav { width: 100%; grid-auto-flow: column; grid-auto-columns: 1fr; align-items: center; }
  .side-nav a { flex-direction: column; gap: 4px; padding: 8px 0; font-size: 11px; border-radius: 16px; }
  .side-nav a:hover, .side-nav a[aria-current="page"] { background: none; }
  .apptop { grid-template-columns: auto 1fr; padding: 0 16px; }
  .apptop .mob-brand { display: inline-flex; }
  .search { display: none; }
  .top-actions { grid-column: 2; }
  .top-actions .pill-lime { display: none; }
  .page { padding: calc(var(--top) + 28px) 16px 100px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat .v { font-size: 22px; }
}

/* A coin without a logo: its ticker's first letter. Empty states. */
.letter { display: grid; place-items: center; width: 100%; height: 100%; aspect-ratio: 1; background: var(--slate); color: var(--paper); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; }
.ccard .img .letter { font-size: 72px; }
.empty { color: var(--fog); font-size: 14px; line-height: 1.5; padding: 18px 4px; }
.empty a { color: var(--lime); }
.empty.art { grid-column: 1 / -1; display: grid; justify-items: center; align-content: center; gap: 4px; height: 100%; padding: 12px 8px; text-align: center; }
.empty.art img { width: 116px; height: 116px; object-fit: contain; }
.empty.art p { margin: 0; max-width: 30ch; }
.empty.art.big img { width: 180px; height: 180px; }
