/* =============================================================================
   歴史ドリル — シンプル・グラス UI（アクセント1色）
   ============================================================================= */
:root{
  --bg:#0b0c10;
  --surface:rgba(255,255,255,.040);
  --surface-2:rgba(255,255,255,.075);
  --surface-3:rgba(255,255,255,.115);
  --line:rgba(255,255,255,.085);
  --line-2:rgba(255,255,255,.16);
  --ink:#eef0f6;
  --ink-2:rgba(238,240,246,.62);
  --ink-3:rgba(238,240,246,.34);
  --ac:#6b7bff;
  --ac-soft:rgba(107,123,255,.16);
  --ac-line:rgba(107,123,255,.42);
  --ok:#2ecc8f;
  --ok-soft:rgba(46,204,143,.14);
  --ng:#ff5f75;
  --ng-soft:rgba(255,95,117,.14);
  --shadow:0 18px 40px -24px rgba(0,0,0,.85);
  --r:18px; --r-sm:12px; --r-lg:24px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --spring:cubic-bezier(.34,1.4,.64,1);
  --maxw:820px;
  --glass:saturate(150%) blur(20px);
}
:root[data-theme="light"]{
  --bg:#f4f5f8;
  --surface:rgba(255,255,255,.72);
  --surface-2:rgba(255,255,255,.92);
  --surface-3:#ffffff;
  --line:rgba(18,22,40,.09);
  --line-2:rgba(18,22,40,.16);
  --ink:#131622;
  --ink-2:rgba(19,22,34,.64);
  --ink-3:rgba(19,22,34,.40);
  --ac:#4a56e8;
  --ac-soft:rgba(74,86,232,.10);
  --ac-line:rgba(74,86,232,.34);
  --ok:#11a473;
  --ok-soft:rgba(17,164,115,.11);
  --ng:#e03a54;
  --ng-soft:rgba(224,58,84,.10);
  --shadow:0 16px 36px -26px rgba(20,28,60,.45);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0; min-height:100dvh; background:var(--bg); color:var(--ink);
  font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN","Noto Sans JP",-apple-system,
              BlinkMacSystemFont,"Segoe UI","Yu Gothic UI",system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
  overscroll-behavior-y:none;
}
button,input,textarea{ font:inherit; color:inherit; }
button{ border:0; background:none; cursor:pointer; -webkit-tap-highlight-color:transparent; }
h1,h2,h3,p,ul{ margin:0; } ul{ padding:0; list-style:none; }
::selection{ background:var(--ac-soft); }

/* 背景：アクセント1色のごく薄いグロー（アニメーションなし） */
.bgwash{ position:fixed; inset:0; z-index:-1; pointer-events:none; }
.bgwash::before{
  content:""; position:absolute; left:50%; top:-38vmin; width:110vmin; height:80vmin;
  transform:translateX(-50%);
  background:radial-gradient(closest-side, var(--ac), transparent 72%);
  opacity:.16; filter:blur(30px);
}
:root[data-theme="light"] .bgwash::before{ opacity:.13; }

/* ---------- primitives ---------- */
.card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r);
  -webkit-backdrop-filter:var(--glass); backdrop-filter:var(--glass);
  box-shadow:var(--shadow);
}
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 18px 96px; }
.screen{ animation:in .3s var(--ease); }
@keyframes in{ from{ opacity:0; transform:translateY(8px) } to{ opacity:1; transform:none } }

/* ---------- topbar ---------- */
.topbar{ position:sticky; top:0; z-index:30; padding:14px 18px 10px;
  background:linear-gradient(180deg,var(--bg) 55%,transparent); }
.topbar-in{ max-width:var(--maxw); margin:0 auto; display:flex; align-items:center; gap:8px; }
.sig{ font-size:12px; font-weight:700; letter-spacing:.04em; color:var(--ink-3);
  padding:6px 2px; transition:color .2s; }
.sig:hover{ color:var(--ink-2); }
.sig b{ color:var(--ink-2); font-weight:800; }
.spacer{ flex:1; }
.iconbtn{ width:34px; height:34px; border-radius:11px; display:grid; place-items:center; flex:none;
  background:var(--surface); border:1px solid var(--line); color:var(--ink-2); font-size:14px;
  transition:.2s var(--ease); }
.iconbtn svg{ display:block; }
.iconbtn:hover{ background:var(--surface-2); color:var(--ink); }
.iconbtn:active{ transform:scale(.92); }

/* ---------- hero ---------- */
.hero{ padding:22px 22px 20px; margin-bottom:22px; }
.hero h1{ font-size:clamp(20px,4.6vw,26px); font-weight:800; line-height:1.45; letter-spacing:-.01em; }
.hero h1 em{ font-style:normal; color:var(--ac); }
.hero p{ margin-top:8px; font-size:12.5px; line-height:1.85; color:var(--ink-2); }
.hero-row{ display:flex; align-items:center; gap:16px; margin-top:18px; flex-wrap:wrap; }
.ring{ width:64px; height:64px; flex:none; position:relative; }
.ring svg{ width:100%; height:100%; transform:rotate(-90deg); }
.ring .bgc{ stroke:var(--line-2); }
.ring .fg{ stroke:var(--ac); stroke-linecap:round; transition:stroke-dashoffset .9s var(--ease); }
.ring b{ position:absolute; inset:0; display:grid; place-items:center; font-size:15px; font-weight:800; }
.ring b small{ display:block; font-size:8.5px; font-weight:700; color:var(--ink-3); margin-top:-2px; }
.stats{ display:flex; gap:18px; flex-wrap:wrap; }
.stat i{ display:block; font-style:normal; font-size:10.5px; font-weight:700; color:var(--ink-3); }
.stat b{ font-size:16px; font-weight:800; }
.stat b span{ font-size:11px; font-weight:600; color:var(--ink-3); }

/* ---------- section ---------- */
.sec{ margin:22px 0 10px; display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; }
.sec h2{ font-size:12px; font-weight:800; letter-spacing:.08em; color:var(--ink-2); }
.sec .hint{ font-size:11px; color:var(--ink-3); }

/* ---------- pills ---------- */
.pills{ display:flex; gap:7px; flex-wrap:wrap; }
.pill{
  padding:8px 14px; border-radius:11px; font-size:12.5px; font-weight:700;
  background:var(--surface); border:1px solid var(--line); color:var(--ink-2);
  transition:.18s var(--ease); white-space:nowrap;
}
.pill:hover{ background:var(--surface-2); color:var(--ink); }
.pill.on{ background:var(--ac); border-color:var(--ac); color:#fff; }
.pill .c{ opacity:.6; font-size:10.5px; margin-left:4px; font-weight:700; }
.pill.on .c{ opacity:.75; }

/* ---------- modes ---------- */
.modes{ display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:10px; }
.mode{
  display:flex; align-items:center; gap:13px; text-align:left; padding:15px 16px;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r);
  -webkit-backdrop-filter:var(--glass); backdrop-filter:var(--glass);
  transition:.22s var(--ease);
}
.mode:hover{ background:var(--surface-2); border-color:var(--line-2); }
.mode:active{ transform:scale(.985); }
.mode .ic{ width:36px; height:36px; flex:none; border-radius:11px; display:grid; place-items:center;
  background:var(--ac-soft); color:var(--ac); font-size:16px; }
.mode h3{ font-size:14px; font-weight:800; }
.mode p{ margin-top:2px; font-size:11px; line-height:1.6; color:var(--ink-3); }

/* ---------- buttons ---------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:7px;
  padding:12px 18px; border-radius:13px; font-weight:800; font-size:13.5px;
  background:var(--surface-2); border:1px solid var(--line); color:var(--ink);
  transition:.2s var(--ease); }
.btn:hover{ background:var(--surface-3); }
.btn:active{ transform:scale(.97); }
.btn[disabled]{ opacity:.35; pointer-events:none; }
.btn-primary{ background:var(--ac); border-color:var(--ac); color:#fff; }
.btn-primary:hover{ background:var(--ac); filter:brightness(1.08); }
.btn-ghost{ background:transparent; }
.btn-sm{ padding:8px 13px; font-size:12px; border-radius:11px; }
.btn-wide{ width:100%; }

/* ---------- quiz ---------- */
.qtop{ display:flex; align-items:center; gap:10px; padding:2px 0 14px; }
.bar{ flex:1; height:6px; border-radius:99px; background:var(--line-2); overflow:hidden; }
.bar i{ display:block; height:100%; border-radius:99px; background:var(--ac); transition:width .45s var(--ease); }
.count{ font-size:11.5px; font-weight:800; color:var(--ink-3); font-variant-numeric:tabular-nums; white-space:nowrap; }
.qcard{ padding:22px 20px 24px; border-radius:var(--r-lg); }
.qmeta{ display:flex; align-items:center; gap:6px; flex-wrap:wrap; margin-bottom:14px; }
.tag{ font-size:10.5px; font-weight:700; padding:3px 8px; border-radius:7px;
  background:var(--surface-2); border:1px solid var(--line); color:var(--ink-3); }
.tag.stars{ color:var(--ac); letter-spacing:.1em; }
.tag.ex{ background:var(--ac-soft); border-color:var(--ac-line); color:var(--ac); }
.qtitle{ font-size:11px; font-weight:700; color:var(--ink-3); margin-bottom:10px; letter-spacing:.04em; }

.sent{ font-size:clamp(15.5px,3.9vw,19px); font-weight:500; line-height:2.1; }
.sent .era{ font-weight:800; color:var(--ac); margin-right:.5em; font-variant-numeric:tabular-nums; }
.slot{ display:inline-flex; align-items:center; justify-content:center; vertical-align:middle;
  min-width:8.5em; min-height:1.95em; margin:0 .15em; padding:0 .65em; border-radius:10px;
  font-weight:800; background:var(--surface-2); border:1.5px dashed var(--line-2); color:var(--ink-3);
  transition:.25s var(--spring); }
.slot.filled{ border-style:solid; color:var(--ink); background:var(--surface-3); animation:pop .28s var(--spring); }
.slot.ok{ border-color:var(--ok); color:var(--ok); background:var(--ok-soft); }
.slot.ng{ border-color:var(--ng); color:var(--ng); background:var(--ng-soft); text-decoration:line-through; }
@keyframes pop{ from{ transform:scale(.8); opacity:0 } to{ transform:scale(1); opacity:1 } }

.bank{ display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.chip{ padding:10px 15px; border-radius:12px; font-weight:700; font-size:14px;
  background:var(--surface-2); border:1px solid var(--line-2); color:var(--ink);
  transition:.16s var(--ease); }
.chip:hover{ background:var(--surface-3); border-color:var(--ac-line); }
.chip:active{ transform:scale(.95); }
.chip.used{ opacity:.2; pointer-events:none; }
.chip kbd{ font:inherit; font-size:10px; opacity:.35; margin-right:5px; }

.answerbox{ margin-top:20px; display:flex; gap:8px; flex-wrap:wrap; }
.tinput{ flex:1; min-width:200px; padding:13px 15px; border-radius:13px; font-size:16px; font-weight:700;
  background:var(--surface); border:1.5px solid var(--line-2); color:var(--ink); outline:none;
  transition:.2s var(--ease); }
.tinput::placeholder{ color:var(--ink-3); font-weight:500; }
.tinput:focus{ border-color:var(--ac); box-shadow:0 0 0 3px var(--ac-soft); }
.tinput.ok{ border-color:var(--ok); } .tinput.ng{ border-color:var(--ng); }
.hintline{ margin-top:10px; font-size:11.5px; color:var(--ink-3); display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.hintline b{ color:var(--ac); font-weight:800; }

/* ---------- 判定（インライン） ---------- */
.verdict{ margin-top:18px; padding:14px 16px 13px; border-radius:14px; position:relative; overflow:hidden;
  animation:in .22s var(--ease); }
.verdict.ok{ background:var(--ok-soft); border:1px solid color-mix(in srgb,var(--ok) 32%,transparent); }
.verdict.ng{ background:var(--ng-soft); border:1px solid color-mix(in srgb,var(--ng) 32%,transparent); }
.verdict .vhead{ display:flex; align-items:center; gap:9px; font-size:14px; font-weight:900; }
.verdict.ok .vhead{ color:var(--ok); } .verdict.ng .vhead{ color:var(--ng); }
.verdict .vhead .mk{ width:22px; height:22px; border-radius:7px; display:grid; place-items:center;
  font-size:13px; color:#fff; }
.verdict.ok .vhead .mk{ background:var(--ok); } .verdict.ng .vhead .mk{ background:var(--ng); }
.verdict .vhead .btn-next{ margin-left:auto; padding:7px 12px; font-size:12px; gap:5px;
  background:var(--surface-3); border-color:var(--line-2); }
.verdict.ok .vhead .btn-next{ color:var(--ok); border-color:color-mix(in srgb,var(--ok) 42%,transparent); }
.verdict.ng .vhead .btn-next{ color:var(--ng); border-color:color-mix(in srgb,var(--ng) 42%,transparent); }
.verdict .vhead .btn-next svg{ display:block; }
.verdict .vbody{ margin-top:8px; font-size:12.5px; line-height:1.85; color:var(--ink-2); }
.verdict .vbody .ans{ font-weight:900; color:var(--ink); }
.verdict .vbody .yomi{ font-size:11px; color:var(--ink-3); }
.verdict .alt{ display:block; margin-top:4px; font-size:11.5px; color:var(--ink-3); }
.verdict .alt b{ color:var(--ink-2); font-weight:700; }
.verdict .vtimer{ position:absolute; left:0; bottom:0; height:2px; background:currentColor; opacity:.4; }
.verdict.ok .vtimer{ background:var(--ok); } .verdict.ng .vtimer{ background:var(--ng); }
@keyframes drain{ from{ width:100% } to{ width:0% } }

/* ---------- 年表（1ページまとめ） ---------- */
.tl{ display:grid; gap:6px; margin-top:4px; }
.tlrow{ display:flex; align-items:flex-start; gap:11px; padding:11px 13px; border-radius:13px;
  background:var(--surface); border:1px solid var(--line); transition:.22s var(--ease); }
.tlrow.active{ border-color:var(--ac); background:var(--ac-soft); }
.tlrow.done-ok{ border-color:color-mix(in srgb,var(--ok) 34%,transparent); background:var(--ok-soft); }
.tlrow.done-ng{ border-color:color-mix(in srgb,var(--ng) 34%,transparent); background:var(--ng-soft); }
.tlrow .yr{ flex:none; width:104px; font-size:11.5px; font-weight:800; color:var(--ac);
  font-variant-numeric:tabular-nums; padding-top:3px; }
.tlrow.done-ok .yr{ color:var(--ok); } .tlrow.done-ng .yr{ color:var(--ng); }
.tlrow .tx{ flex:1; min-width:0; font-size:13px; line-height:1.85; }
.tlrow .blank{ display:inline-flex; align-items:center; justify-content:center; min-width:6.5em;
  padding:1px .55em; margin:0 .12em; border-radius:8px; font-weight:800;
  background:var(--surface-2); border:1.5px dashed var(--line-2); color:var(--ink-3); }
.tlrow.active .blank{ border-color:var(--ac); color:var(--ac); border-style:solid; }
.tlrow.done-ok .blank{ border-style:solid; border-color:var(--ok); color:var(--ok); background:transparent; }
.tlrow.done-ng .blank{ border-style:solid; border-color:var(--ng); color:var(--ng); background:transparent;
  text-decoration:line-through; }
.tlrow .fix{ display:block; font-size:11.5px; font-weight:800; color:var(--ok); margin-top:2px; }
.tlrow .mk{ flex:none; width:18px; text-align:center; font-weight:900; font-size:13px; padding-top:3px; }
.tlrow.done-ok .mk{ color:var(--ok); } .tlrow.done-ng .mk{ color:var(--ng); }

/* ---------- 並べ替え ---------- */
.orderzone{ display:grid; gap:7px; margin-top:4px; }
.oslot{ display:flex; align-items:center; gap:10px; padding:12px 13px; border-radius:13px;
  background:var(--surface); border:1.5px dashed var(--line-2); min-height:50px; transition:.22s var(--ease); }
.oslot.filled{ border-style:solid; background:var(--surface-2); }
.oslot .no{ width:22px; height:22px; flex:none; border-radius:7px; display:grid; place-items:center;
  font-size:11px; font-weight:900; background:var(--ac-soft); color:var(--ac); }
.oslot .txt{ font-size:12.5px; font-weight:600; line-height:1.5; }
.oslot .yr{ margin-left:auto; font-size:11px; font-weight:800; color:var(--ink-3); white-space:nowrap; }
.oslot.ok{ border-color:var(--ok); background:var(--ok-soft); border-style:solid; }
.oslot.ng{ border-color:var(--ng); background:var(--ng-soft); border-style:solid; }
.oslot .ph{ color:var(--ink-3); font-weight:500; }
.oslot.filled{ cursor:grab; touch-action:none; user-select:none; -webkit-user-select:none; }
.oslot.over{ border-color:var(--ac); border-style:solid; background:var(--ac-soft); }
.oslot.dragging,.ocard.dragging{ opacity:.3; }
.dragghost{
  position:fixed; z-index:200; pointer-events:none; padding:10px 14px; border-radius:12px;
  font-size:12.5px; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  background:var(--surface-3); border:1px solid var(--ac); color:var(--ink);
  box-shadow:0 20px 40px -14px rgba(0,0,0,.55);
  opacity:0; transform:scale(.96); transition:opacity .12s var(--ease), transform .12s var(--ease);
}
.dragghost.on{ opacity:1; transform:scale(1.05) rotate(-1.5deg); }
.ocards{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.ocard{ padding:10px 14px; border-radius:12px; font-size:12.5px; font-weight:700; text-align:left;
  background:var(--surface-2); border:1px solid var(--line-2); transition:.16s var(--ease); }
.ocard{ cursor:grab; touch-action:none; user-select:none; -webkit-user-select:none; }
.ocard:hover{ background:var(--surface-3); border-color:var(--ac-line); }
.ocard.used{ opacity:.2; pointer-events:none; }

/* ---------- result ---------- */
.result{ padding:26px 22px; text-align:center; border-radius:var(--r-lg); }
.result .big{ font-size:clamp(38px,11vw,52px); font-weight:900; letter-spacing:-.03em; line-height:1; color:var(--ac); }
.result .big small{ font-size:.3em; color:var(--ink-3); font-weight:800; }
.result .lead{ margin-top:8px; font-size:14.5px; font-weight:800; }
.result .sub{ margin-top:5px; font-size:12px; color:var(--ink-2); }
.result .acts{ margin-top:18px; display:flex; gap:8px; justify-content:center; flex-wrap:wrap; }
.sheet{ margin-top:16px; border-radius:var(--r); overflow:hidden; border:1px solid var(--line); }
.sheet-head{ padding:10px 14px; font-size:11.5px; font-weight:800; background:var(--surface-2);
  border-bottom:1px solid var(--line); display:flex; justify-content:space-between; }
.sheet-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(205px,1fr)); }
.srow{ display:flex; align-items:center; gap:8px; padding:7px 10px; border-bottom:1px solid var(--line);
  border-right:1px solid var(--line); font-size:12px; min-height:38px; text-align:left; }
.srow .n{ width:26px; flex:none; font-size:10px; font-weight:800; color:var(--ink-3);
  font-variant-numeric:tabular-nums; text-align:right; }
.srow .mk{ width:16px; flex:none; text-align:center; font-weight:900; }
.srow.ok .mk{ color:var(--ok); } .srow.ng .mk{ color:var(--ng); }
.srow .v{ flex:1; min-width:0; font-weight:700; line-height:1.4; }
.srow .v s{ color:var(--ink-3); font-weight:500; }
.srow .v em{ font-style:normal; color:var(--ok); display:block; font-size:11px; }
.srow.ng{ background:var(--ng-soft); }

/* ---------- 一覧 ---------- */
.ulist{ display:grid; gap:7px; }
.uitem{ display:flex; align-items:flex-start; gap:10px; padding:12px 14px; border-radius:13px;
  background:var(--surface); border:1px solid var(--line); }
.uitem .n{ width:34px; flex:none; font-size:10.5px; font-weight:800; color:var(--ink-3);
  font-variant-numeric:tabular-nums; padding-top:3px; }
.uitem .body{ flex:1; min-width:0; }
.uitem .q{ font-size:12.5px; line-height:1.8; color:var(--ink-2); }
.uitem .a{ display:inline-block; margin-top:4px; padding:2px 9px; border-radius:8px; font-weight:800;
  font-size:13px; background:var(--ac-soft); border:1px solid var(--ac-line); color:var(--ink); transition:.2s; }
.uitem .a .yo{ font-size:10px; font-weight:600; color:var(--ink-3); margin-left:6px; }
body.hideans .uitem .a{ color:transparent; background:var(--ng-soft); border-color:transparent; }
body.hideans .uitem .a .yo{ color:transparent; }
body.hideans .uitem .a:hover{ color:var(--ink); background:var(--ac-soft); border-color:var(--ac-line); }
body.hideans .uitem .a:hover .yo{ color:var(--ink-3); }
.uitem .st{ font-size:10px; color:var(--ac); letter-spacing:.08em; flex:none; }

/* ---------- マイ問題 ---------- */
.field{ margin-bottom:11px; }
.field label{ display:block; font-size:11px; font-weight:800; color:var(--ink-3); margin-bottom:5px; }
.field input,.field textarea{ width:100%; padding:11px 14px; border-radius:12px; font-size:14px; font-weight:600;
  background:var(--surface); border:1.5px solid var(--line-2); color:var(--ink); outline:none;
  transition:.2s var(--ease); resize:vertical; }
.field input:focus,.field textarea:focus{ border-color:var(--ac); box-shadow:0 0 0 3px var(--ac-soft); }
.field .note{ margin-top:4px; font-size:10.5px; color:var(--ink-3); line-height:1.6; }
.mq{ display:flex; gap:10px; align-items:flex-start; padding:13px 14px; border-radius:13px;
  background:var(--surface); border:1px solid var(--line); }
.mq .body{ flex:1; min-width:0; }
.mq .q{ font-size:13px; line-height:1.7; }
.mq .a{ margin-top:4px; font-size:12.5px; font-weight:800; color:var(--ac); }
.mq .acts{ display:flex; gap:5px; flex:none; }

/* ---------- misc ---------- */
.empty{ padding:34px 20px; text-align:center; color:var(--ink-3); font-size:12.5px; line-height:1.9; }
.row{ display:flex; gap:8px; flex-wrap:wrap; }
.row.end{ justify-content:flex-end; }
.mt{ margin-top:12px; } .mt2{ margin-top:20px; }
.pad{ padding:20px; }
.foot{ margin-top:34px; text-align:center; font-size:10.5px; color:var(--ink-3); line-height:1.9; }
.toast{ position:fixed; left:50%; bottom:26px; transform:translate(-50%,140%); z-index:80;
  padding:11px 18px; border-radius:12px; font-size:12.5px; font-weight:800;
  background:var(--surface-3); border:1px solid var(--line-2); color:var(--ink);
  -webkit-backdrop-filter:var(--glass); backdrop-filter:var(--glass); box-shadow:var(--shadow);
  transition:transform .35s var(--spring); }
.toast.show{ transform:translate(-50%,0); }
.shake{ animation:shake .35s; }
@keyframes shake{ 20%,60%{transform:translateX(-5px)} 40%,80%{transform:translateX(5px)} }

@media (max-width:520px){
  .wrap{ padding:0 14px 100px; }
  .hero{ padding:18px 17px 17px; }
  .qcard{ padding:18px 15px 20px; }
  .modes{ grid-template-columns:1fr; }
  .sheet-grid{ grid-template-columns:1fr 1fr; }
  .srow{ font-size:11px; padding:6px 8px; }
  .tlrow{ flex-wrap:wrap; gap:6px 10px; }
  .tlrow .yr{ width:auto; padding-top:0; }
  .tlrow .tx{ flex-basis:100%; }
  .stats{ gap:14px; }
}
@media (prefers-reduced-motion:reduce){ *{ animation-duration:.01ms !important; transition-duration:.01ms !important; } }
