:root {
  --ink: #143a32;
  --ink-soft: #1b493e;
  --ink-lift: #285f4f;
  --cream: #f5f3e8;
  --cream-bright: #fffdf6;
  --cream-muted: #d5ddcf;
  --totoro-green: #2f9d8d;
  --leaf-green: #91c66f;
  --gold: #c9bc6f;
  --danger: #e06a6a;
  --line: rgba(245, 243, 232, 0.14);
  --glass: rgba(15, 55, 46, 0.66);
  --glass-card: rgba(27, 73, 62, 0.52);
  --shadow: 0 24px 70px rgba(4, 31, 25, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text",
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI",
    "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
  --font-serif: "Iowan Old Style", Baskerville, "Songti SC", STSong,
    "Source Han Serif SC", "Noto Serif CJK SC", FangSong, SimSun, serif;
  --ease-out: cubic-bezier(0.2, 0.72, 0.25, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 160ms;
  --motion-ui: 240ms;
  --motion-page: 160ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
* { scrollbar-width: thin; scrollbar-color: rgba(145, 198, 111, 0.35) rgba(8, 30, 24, 0.6); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(8, 30, 24, 0.6); border-radius: 8px; }
::-webkit-scrollbar-thumb { background: rgba(145, 198, 111, 0.35); border-radius: 8px; border: 2px solid rgba(8, 30, 24, 0.6); }
::-webkit-scrollbar-thumb:hover { background: rgba(145, 198, 111, 0.55); }

html { min-height: 100%; scroll-behavior: smooth; background: var(--ink); }

body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 8%, rgba(201, 188, 111, 0.16), transparent 26rem),
    radial-gradient(circle at 7% 28%, rgba(109, 160, 70, 0.17), transparent 30rem),
    linear-gradient(150deg, #153c33 0%, #0d2c26 52%, #214d40 100%);
  background-attachment: fixed;
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 253, 246, 0.13) 0.5px, transparent 0.8px);
  background-size: 4px 4px;
  content: "";
  opacity: 0.1;
  pointer-events: none;
}

.grain { display: none; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

::selection { color: #0f3029; background: var(--leaf-green); }
:focus-visible { outline: 2px solid var(--leaf-green); outline-offset: 3px; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 26px;
  background: rgba(13, 44, 38, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cream-bright);
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--leaf-green), #2f7a4d);
  color: #0f3029;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(145, 198, 111, 0.24);
}

.brand-mark::after {
  position: absolute;
  inset: -4px;
  border-radius: 15px;
  background: radial-gradient(circle, rgba(145, 198, 111, 0.35), transparent 68%);
  content: "";
  opacity: 0;
  animation: brand-breathe 3.6s var(--ease-soft) infinite;
  pointer-events: none;
}

@keyframes brand-breathe {
  0%, 100% { opacity: 0; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.05); }
}

.brand-text { font-family: var(--font-serif); font-size: 17px; }

.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 3px; }
.nav a {
  position: relative;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--cream-muted);
  font-size: 14px;
  transition: color var(--motion-fast) ease;
}
.nav a::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--leaf-green), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-ui) var(--ease-out);
}
.nav a:hover { color: var(--cream-bright); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--cream-bright); background: rgba(145, 198, 111, 0.1); }
.nav .blog-link { color: var(--gold); }
.nav .logout { color: var(--danger); }

@media (max-width: 860px) {
  .topbar { padding: 12px 16px; }
  .nav {
    flex-wrap: nowrap;
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { white-space: nowrap; }
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 22px 64px;
  animation: page-in var(--motion-page) var(--ease-out) both;
}

@keyframes page-in {
  from { opacity: 0.35; }
  to { opacity: 1; transform: none; }
}

.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--leaf-green), var(--gold));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.nav-progress.active {
  opacity: 1;
  animation: nav-load 1.1s var(--ease-out) forwards;
}
@keyframes nav-load {
  0% { width: 0; }
  55% { width: 68%; }
  100% { width: 92%; opacity: 0.35; }
}

.page-title {
  margin: 4px 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 550;
  letter-spacing: 0.04em;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--glass-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  margin-bottom: 20px;
  transition:
    border-color var(--motion-ui) ease,
    box-shadow var(--motion-ui) ease,
    transform var(--motion-ui) var(--ease-out);
}

.card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 198, 111, 0.35), transparent);
  content: "";
  pointer-events: none;
}

.card:hover {
  border-color: rgba(145, 198, 111, 0.3);
  box-shadow: 0 30px 80px rgba(3, 25, 20, 0.4);
  transform: translateY(-2px);
}

.card.narrow { max-width: 640px; }
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.card-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 550;
  letter-spacing: 0.03em;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.stat { text-align: center; padding: 20px 14px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 600;
  color: var(--leaf-green);
  text-shadow: 0 0 26px rgba(145, 198, 111, 0.2);
}
.stat-label { color: var(--cream-muted); font-size: 13px; margin-top: 4px; letter-spacing: 0.06em; }

.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.list { list-style: none; margin: 0; padding: 0; }
.list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  border-radius: 12px;
  min-width: 0;
  transition:
    background var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}
.list-row:last-child { border-bottom: 0; }
.list-row:hover {
  background: linear-gradient(90deg, rgba(145, 198, 111, 0.09), rgba(145, 198, 111, 0.04));
  box-shadow: inset 0 1px 0 rgba(145, 198, 111, 0.12);
}
.list-row .keyword { overflow-wrap: anywhere; }
.keyword { font-weight: 600; overflow-wrap: anywhere; }
.meta { color: var(--cream-muted); font-size: 12px; }
.empty { color: var(--cream-muted); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 243, 232, 0.08);
}
.badge-on { background: rgba(145, 198, 111, 0.16); color: #c7e6a8; border-color: rgba(145, 198, 111, 0.24); }
.badge-off { background: rgba(255, 255, 255, 0.06); color: var(--cream-muted); }
.badge-ok { background: rgba(201, 188, 111, 0.16); color: var(--gold); border-color: rgba(201, 188, 111, 0.26); }
.badge-event { background: rgba(47, 157, 141, 0.18); color: #9fe0d3; border-color: rgba(47, 157, 141, 0.28); }
.badge-row { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }

.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.table th, .table td { text-align: left; padding: 11px 9px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--cream-muted); font-weight: 500; font-size: 12px; white-space: nowrap; letter-spacing: 0.05em; }
.table tbody tr { transition: background-color var(--motion-fast) ease; }
.table tbody tr:hover td {
  background: linear-gradient(90deg, rgba(145, 198, 111, 0.09), rgba(145, 198, 111, 0.04));
  box-shadow: inset 0 1px 0 rgba(145, 198, 111, 0.12);
}
.table tbody tr:hover td:first-child { border-radius: 12px 0 0 12px; }
.table tbody tr:hover td:last-child { border-radius: 0 12px 12px 0; }
.table .keyword { max-width: 300px; }
.actions-row { display: flex; gap: 6px; flex-wrap: nowrap; align-items: center; }
@media (max-width: 520px) {
  .actions-row { gap: 4px; }
  .actions-row .btn-sm { padding: 5px 9px; }
}
.inline-form { display: inline; margin: 0; }
.mono { font-family: "Cascadia Mono", Consolas, monospace; font-size: 12px; word-break: break-all; }
.err { color: var(--danger); font-size: 12px; }
.old-price { color: var(--cream-muted); text-decoration: line-through; }
.new-price { color: var(--leaf-green); font-weight: 600; }
.item-link {
  display: inline-block;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
  color: #a9d6b7;
  transition: color var(--motion-fast) ease;
}
.item-link:hover { color: var(--cream-bright); }
.pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.metric-line { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.chart-box { position: relative; height: 300px; }
.chart-box-radar { height: 340px; max-width: 520px; margin: 0 auto; }
.json-block {
  background: rgba(4, 20, 15, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  overflow-x: auto;
  font-size: 12px;
  max-height: 320px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 17px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  transition:
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    transform var(--motion-ui) var(--ease-out),
    box-shadow var(--motion-ui) ease;
}
.btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 253, 246, 0.14), transparent);
  content: "";
  transform: skewX(-18deg) translateX(0);
  transition: transform 520ms var(--ease-out);
  pointer-events: none;
}
.btn:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(145, 198, 111, 0.3); transform: translateY(-1px); }
.btn:hover::after { transform: skewX(-18deg) translateX(320%); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(145deg, var(--leaf-green), #2f7a4d);
  border: 0;
  color: #0f3029;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(92, 140, 70, 0.24);
}
.btn-primary:hover { background: linear-gradient(145deg, #a5d77f, #358c58); color: #0f3029; }
.btn-ghost { background: transparent; }
.btn-danger { background: rgba(224, 106, 106, 0.12); border-color: rgba(224, 106, 106, 0.34); color: #f0a6a6; }
.btn-danger:hover { background: rgba(224, 106, 106, 0.2); }
.btn-sm { padding: 5px 11px; font-size: 12px; border-radius: 9px; }
.btn-row { display: flex; gap: 10px; }

.stack { display: flex; flex-direction: column; gap: 13px; }
.stack label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--cream-muted); }
.stack label.check { flex-direction: row; align-items: center; gap: 8px; flex-wrap: nowrap; white-space: nowrap; }

input, select {
  background: rgba(5, 22, 16, 0.62);
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}
input:focus, select:focus {
  border-color: var(--leaf-green);
  box-shadow: 0 0 0 3px rgba(145, 198, 111, 0.14);
}
input[type="checkbox"] { width: auto; flex: 0 0 auto; }
input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="checkbox"],
input[type="radio"],
input[type="range"] { accent-color: var(--leaf-green); }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(5, 22, 16, 0.62) inset;
  -webkit-text-fill-color: var(--cream);
  caret-color: var(--cream);
  transition: background-color 9999s ease-out 0s;
}
::placeholder { color: rgba(213, 221, 207, 0.55); opacity: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* 自定义动画下拉 */
.select-wrap { position: relative; display: inline-block; min-width: 170px; width: 100%; }
.select-wrap .native-select { display: none; }
.select-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 10px 16px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(5, 22, 16, 0.62);
  color: var(--cream);
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}
.select-trigger:hover { border-color: rgba(145, 198, 111, 0.34); background: rgba(5, 22, 16, 0.78); }
.select-trigger[aria-expanded="true"] {
  border-color: var(--leaf-green);
  box-shadow: 0 0 0 3px rgba(145, 198, 111, 0.14);
}
.select-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select-chevron { flex: 0 0 auto; color: var(--cream-muted); transition: transform 200ms var(--ease-out); }
.select-trigger[aria-expanded="true"] .select-chevron { transform: rotate(180deg); }
.select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: rgba(10, 34, 27, 0.97);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(3, 25, 20, 0.48);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  pointer-events: none;
  transition: opacity 160ms ease, transform 180ms var(--ease-out);
}
.select-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--cream-muted);
  font-size: 14px;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, padding-left 160ms var(--ease-out);
}
.select-option:hover { background: rgba(145, 198, 111, 0.12); color: var(--cream-bright); padding-left: 16px; }
.select-option.selected { color: var(--leaf-green); background: rgba(145, 198, 111, 0.1); }
.select-option .select-check { margin-left: auto; opacity: 0; transition: opacity 120ms ease; }
.select-option.selected .select-check { opacity: 1; }

/* 详情折叠：箭头旋转 + 内容淡入 */
details summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  color: var(--leaf-green);
  margin: 12px 0;
  transition: color var(--motion-fast) ease;
}
details summary::after {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out);
}
details[open] summary::after { transform: rotate(225deg); }
details[open] .json-block { animation: fade-slide-in 220ms var(--ease-out); }
@keyframes fade-slide-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* 卡片头部链接：下划线滑入 */
.card-head a {
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(90deg, var(--leaf-green), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 240ms var(--ease-out), color var(--motion-fast) ease;
}
.card-head a:hover { background-size: 100% 1px; }

.alert { padding: 11px 15px; border-radius: 12px; margin-bottom: 14px; font-size: 14px; border: 1px solid transparent; }
.alert-ok { background: rgba(145, 198, 111, 0.12); border-color: rgba(145, 198, 111, 0.28); color: #c7e6a8; }
.alert-error { background: rgba(224, 106, 106, 0.12); border-color: rgba(224, 106, 106, 0.34); color: #f0a6a6; }
.auth-shell {
  display: flex;
  width: min(100%, 480px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 0 40px;
  flex-direction: column;
  align-items: center;
}
.login-card {
  max-width: 480px;
  width: 100%;
  padding: clamp(26px, 4vw, 38px);
  text-align: center;
}
.login-card .eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
}
.login-title { margin: 0 0 10px; font-family: var(--font-serif); font-size: 27px; font-weight: 550; }
.login-sub { color: var(--cream-muted); margin: 0 0 22px; font-size: 14px; line-height: 1.75; }
.auth-assurance {
  display: flex;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(145, 198, 111, 0.22);
  border-radius: 12px;
  align-items: center;
  gap: 11px;
  text-align: left;
  background: rgba(145, 198, 111, 0.07);
}
.auth-assurance-mark {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: 0 0 auto;
  place-items: center;
  color: #0f3029;
  background: linear-gradient(145deg, var(--leaf-green), #2f7a4d);
  font-size: 13px;
  font-weight: 800;
}
.auth-assurance strong {
  display: block;
  margin-bottom: 2px;
  color: var(--cream-bright);
  font-size: 13px;
}
.auth-assurance span {
  display: block;
  color: var(--cream-muted);
  font-size: 12px;
  line-height: 1.55;
}
.login-card .stack { text-align: left; margin-top: 4px; }
.auth-links {
  display: flex;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  justify-content: center;
  gap: 26px;
  font-size: 13px;
}
.auth-links a {
  color: var(--cream-muted);
  text-decoration: none;
  background-image: linear-gradient(90deg, var(--leaf-green), var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 240ms var(--ease-out), color var(--motion-fast) ease;
}
.auth-links a:hover { color: var(--cream-bright); background-size: 100% 1px; }
.auth-privacy {
  margin-top: 22px;
  color: rgba(245, 243, 232, 0.42);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream-muted);
  font-size: 12px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

details summary { cursor: pointer; color: var(--leaf-green); margin: 12px 0; transition: color var(--motion-fast) ease; }
details summary:hover { color: var(--cream-bright); }

/* 低性能入场动效：仅 transform/opacity，尊重系统减弱动效设置 */
html.js .reveal {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 220ms var(--ease-soft),
    transform 220ms var(--ease-soft);
}
html.js .reveal.revealed {
  opacity: 1;
  transform: none;
}
html.js .reveal.revealed.card:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page { animation: none; }
  .brand-mark::after { animation: none; opacity: 0; }
  .btn::after { display: none; }
  .card, .btn { transition: none; }
  .card:hover, .btn:hover { transform: none; }
  .select-menu,
  .select-option,
  .select-chevron,
  details summary::after,
  details[open] .json-block,
  .card-head a {
    transition: none !important;
    animation: none !important;
  }
}
