/* ===========================================================================
   FCK DRP — ترمینال تحقیقاتی. مشکی زغالی + قرمز-صورتی هشدار + سبز فسفری امضا.
   display: Space Grotesk · data/mono: JetBrains Mono · fa: Vazirmatn
   =========================================================================== */
:root {
  --bg:       #0a0b0d;
  --bg-1:     #0e1013;
  --panel:    #131519;
  --panel-2:  #171a1f;
  --line:     #23272e;
  --line-2:   #2d323b;

  --ink:      #eef1f4;
  --ink-2:    #9aa2ad;
  --ink-3:    #626b76;
  --ink-4:    #3d444d;

  --hot:      #ff3b6b;   /* آکسنت اصلی — CTA و برند */
  --hot-dim:  rgba(255, 59, 107, 0.14);
  --term:     #00ff9c;   /* سبز فسفری — فقط امضا (خط فرمان، نتایج) */
  --term-dim: rgba(0, 255, 156, 0.1);
  --amber:    #ffb03b;
  --blue:     #4db8ff;

  --r:   12px;
  --r-lg:18px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --disp: 'Space Grotesk', 'Vazirmatn', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg); color: var(--ink);
  font-family: 'Vazirmatn', var(--disp); line-height: 1.7;
  min-height: 100vh; -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
.mono { font-family: var(--mono); direction: ltr; }
.hidden { display: none !important; }

/* اسکن‌لاین محو — بافت ترمینال */
.scanlines {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

/* ───────── دکمه‌ها ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: var(--r); border: 1px solid var(--line-2);
  background: var(--panel-2); color: var(--ink); cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  transition: all 0.18s var(--ease);
}
.btn:hover { border-color: var(--ink-3); transform: translateY(-1px); }
.btn-primary {
  background: var(--hot); border-color: var(--hot); color: #fff;
  box-shadow: 0 6px 24px -8px var(--hot);
}
.btn-primary:hover { background: #ff507c; box-shadow: 0 10px 30px -8px var(--hot); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-icon {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: var(--r); border: 1px solid var(--line); background: var(--panel);
  color: var(--ink-2); cursor: pointer; font-size: 17px; transition: all 0.18s;
}
.btn-icon:hover { color: var(--hot); border-color: var(--hot); }

/* ═══════════ صفحهٔ ورود ═══════════ */
.gate {
  position: relative; z-index: 2; min-height: 100vh;
  display: grid; place-items: center; padding: 24px;
}
.gate-bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 500px at 50% -10%, var(--hot-dim), transparent 60%),
    radial-gradient(500px 400px at 85% 100%, var(--term-dim), transparent 60%),
    var(--bg);
}
.gate-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px; opacity: 0.35;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 50% 40%, #000, transparent 75%);
}
.gate-card {
  width: 100%; max-width: 420px;
  background: linear-gradient(180deg, var(--panel), var(--bg-1));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 32px 30px; box-shadow: 0 40px 90px -30px #000;
  animation: gateIn 0.6s var(--ease);
}
@keyframes gateIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

/* brand */
.brand { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.brand-mark {
  font-size: 68px; line-height: 1; color: var(--hot);
  filter: drop-shadow(0 0 24px var(--hot));
  animation: skull 4s ease-in-out infinite;
}
@keyframes skull { 0%,88%,100% { opacity: 1; transform: none; } 91% { opacity: 0.25; } 94% { opacity: 1; } 96% { opacity: 0.4; } 98% { opacity: 1; } }
.brand-name {
  font-family: var(--disp); font-weight: 700; font-size: 34px;
  letter-spacing: -0.03em; color: var(--ink);
}
.brand-drp { color: var(--hot); }
/* topbar — logo inline and smaller */
.brand.small { flex-direction: row; gap: 10px; }
.brand.small .brand-name { font-size: 20px; }
.brand.small .brand-mark { font-size: 26px; animation: none; }
.brand-tag { text-align: center; color: var(--ink-3); font-size: 13.5px; margin: 8px 0 26px; }

/* تب‌ها */
.gate-tabs {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 5px; margin-bottom: 24px;
}
.gate-tab {
  position: relative; z-index: 2; padding: 10px; border: none; background: none;
  color: var(--ink-3); font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: color 0.2s; border-radius: 8px;
}
.gate-tab.active { color: var(--ink); }
.gate-tab-slider {
  position: absolute; z-index: 1; top: 5px; bottom: 5px; right: 5px;
  width: calc(50% - 5px); background: var(--panel-2);
  border: 1px solid var(--line-2); border-radius: 8px;
  transition: transform 0.28s var(--ease);
}
.gate-tabs[data-active="register"] .gate-tab-slider { transform: translateX(-100%); }

.gate-form { display: flex; flex-direction: column; gap: 15px; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.fld { display: flex; flex-direction: column; gap: 7px; }
.fld-label { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.fld-opt { color: var(--ink-4); font-weight: 400; }
.fld-input {
  padding: 12px 14px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r); color: var(--ink); font-family: inherit; font-size: 14px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.fld-input.mono { direction: ltr; }
.fld-input:focus {
  outline: none; border-color: var(--hot);
  box-shadow: 0 0 0 3px var(--hot-dim);
}
.fld-input::placeholder { color: var(--ink-4); }

.gate-hint { text-align: center; font-size: 12px; color: var(--ink-4); margin-top: -4px; }
.gate-error, .gate-ok {
  padding: 11px 14px; border-radius: var(--r); font-size: 13px; text-align: center; display: none;
}
.gate-error { background: var(--hot-dim); border: 1px solid rgba(255,59,107,0.3); color: var(--hot); }
.gate-error.show { display: block; animation: shake 0.4s; }
.gate-ok { background: var(--term-dim); border: 1px solid rgba(0,255,156,0.3); color: var(--term); }
.gate-ok.show { display: block; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }

.gate-foot { position: fixed; bottom: 18px; left: 0; right: 0; text-align: center; color: var(--ink-4); font-size: 11px; z-index: 2; }

/* ═══════════ اپ ═══════════ */
.app { display: none; position: relative; z-index: 2; }
.app.show { display: block; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: rgba(10,11,13,0.85);
  backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
}
.topnav { display: flex; gap: 4px; }
.nav-item {
  position: relative; padding: 8px 16px; border-radius: var(--r);
  border: none; background: none; color: var(--ink-3);
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.16s;
}
.nav-item:hover { color: var(--ink); background: var(--panel); }
.nav-item.active { color: var(--hot); background: var(--hot-dim); }
.nav-badge {
  display: none; min-width: 18px; height: 18px; padding: 0 5px; margin-inline-start: 6px;
  border-radius: 999px; background: var(--hot); color: #fff;
  font-family: var(--mono); font-size: 11px; line-height: 18px; text-align: center;
}
.nav-badge.show { display: inline-block; }

.topbar-right { display: flex; align-items: center; gap: 12px; }
.quota { display: flex; align-items: center; gap: 9px; padding: 7px 13px; border-radius: 999px; background: var(--panel); border: 1px solid var(--line); }
.quota-dots { display: flex; gap: 4px; }
.qd { width: 7px; height: 7px; border-radius: 50%; background: var(--term); box-shadow: 0 0 6px var(--term); transition: all 0.3s; }
.qd.spent { background: var(--ink-4); box-shadow: none; }
.quota-text { font-size: 12px; color: var(--ink-2); }
.user-chip { padding: 7px 14px; border-radius: 999px; background: var(--panel); border: 1px solid var(--line); font-size: 13px; color: var(--ink-2); }

.main { max-width: 960px; margin: 0 auto; padding: 40px 24px 90px; }

/* ═══════════ نمای جستجو ═══════════ */
.search-hero { text-align: center; margin-bottom: 34px; }
.search-hero h1 {
  font-family: var(--disp); font-size: 32px; font-weight: 700; letter-spacing: -0.03em;
}
.search-hero p { color: var(--ink-3); margin-top: 6px; font-size: 14.5px; }

/* خط فرمان — المان امضا */
.cmd {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-1); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 6px 6px 6px 20px; max-width: 680px; margin: 0 auto;
  box-shadow: 0 20px 60px -30px #000, inset 0 0 0 1px rgba(255,255,255,0.01);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cmd:focus-within { border-color: var(--term); box-shadow: 0 0 0 3px var(--term-dim), 0 20px 60px -30px #000; }
.cmd-prompt { color: var(--term); font-family: var(--mono); font-size: 17px; font-weight: 700; flex-shrink: 0; }
.cmd-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--ink); font-family: var(--mono); font-size: 16px; direction: ltr; letter-spacing: 0.02em;
}
.cmd-input::placeholder { color: var(--ink-4); }
.cmd-btn {
  flex-shrink: 0; padding: 12px 22px; border-radius: var(--r);
  background: var(--term); color: #04150e; border: none; cursor: pointer;
  font-family: var(--disp); font-weight: 700; font-size: 14px; transition: all 0.18s;
}
.cmd-btn:hover { background: #4dffb8; box-shadow: 0 8px 24px -8px var(--term); }
.cmd-btn:disabled { background: var(--ink-4); color: var(--ink-3); cursor: not-allowed; box-shadow: none; }

.cmd-help { text-align: center; color: var(--ink-4); font-size: 12px; margin-top: 12px; font-family: var(--mono); direction: ltr; }

/* نتایج */
.results { margin-top: 34px; }
.results-bar {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.results-count { font-family: var(--disp); font-size: 18px; font-weight: 700; }
.results-q { font-family: var(--mono); font-size: 13px; color: var(--term); direction: ltr; }
.results-meta { margin-inline-start: auto; font-size: 12px; color: var(--ink-4); }

.log-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 15px 17px; margin-bottom: 10px;
  border-inline-start: 3px solid var(--line-2);
  animation: logIn 0.4s var(--ease) backwards;
}
@keyframes logIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.log-card:hover { border-color: var(--line-2); background: var(--panel-2); }
.log-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.log-chan { font-family: var(--mono); font-size: 11px; color: var(--blue); background: rgba(77,184,255,0.1); border: 1px solid rgba(77,184,255,0.2); padding: 2px 9px; border-radius: 999px; }
.log-code { font-family: var(--mono); font-size: 11px; color: var(--hot); background: var(--hot-dim); border: 1px solid rgba(255,59,107,0.2); padding: 2px 9px; border-radius: 999px; cursor: pointer; }
.log-code:hover { background: rgba(255,59,107,0.2); }
.log-user { font-weight: 600; font-size: 14px; }
.log-time { margin-inline-start: auto; font-family: var(--mono); font-size: 11.5px; color: var(--ink-4); direction: ltr; }
.log-body { font-size: 14px; color: var(--ink-2); white-space: pre-wrap; word-break: break-word; }
.log-body strong { color: var(--ink); }
.log-embed { margin-top: 8px; padding: 10px 13px; background: var(--bg-1); border-radius: 9px; border-inline-start: 2px solid var(--line-2); }
.log-embed .em-desc { font-size: 13.5px; color: var(--ink); }
.log-embed .em-field { margin-top: 7px; }
.log-embed .em-fn { font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.log-embed pre { background: var(--bg); border: 1px solid var(--line); border-radius: 7px; padding: 9px 11px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-2); overflow-x: auto; direction: ltr; margin-top: 3px; }
.log-embed .em-foot { font-size: 11px; color: var(--ink-4); margin-top: 6px; }

/* حالت‌ها */
.state { text-align: center; padding: 70px 20px; color: var(--ink-3); }
.state-ico { font-size: 44px; opacity: 0.4; margin-bottom: 14px; }
.state h3 { color: var(--ink); font-size: 17px; margin-bottom: 6px; }
.state.err .state-ico { color: var(--hot); }

.spinner { width: 40px; height: 40px; margin: 0 auto 18px; border: 3px solid var(--line); border-top-color: var(--term); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════ پنل ادمین ═══════════ */
.admin-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.admin-head h1 { font-family: var(--disp); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.admin-tabs { display: flex; gap: 6px; }
.atab { padding: 8px 15px; border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); color: var(--ink-3); font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.atab:hover { color: var(--ink); }
.atab.active { background: var(--hot-dim); border-color: rgba(255,59,107,0.3); color: var(--hot); }

.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: right; padding: 14px 18px; font-size: 13.5px; }
th { color: var(--ink-3); font-weight: 500; font-size: 12px; border-bottom: 1px solid var(--line); }
td { border-bottom: 1px solid var(--line); color: var(--ink-2); }
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--panel-2); }
td .uname { color: var(--ink); font-weight: 600; }
.badge { font-size: 11px; padding: 3px 10px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
.badge.pending { background: rgba(255,176,59,0.12); color: var(--amber); }
.badge.approved { background: var(--term-dim); color: var(--term); }
.badge.rejected { background: var(--hot-dim); color: var(--hot); }
.badge.banned { background: rgba(255,59,107,0.2); color: #ff6b8f; }
.badge.admin { background: rgba(77,184,255,0.12); color: var(--blue); }
.row-act { display: flex; gap: 6px; justify-content: flex-end; }
.mini { padding: 6px 11px; font-size: 12px; border-radius: 8px; border: 1px solid var(--line); background: var(--panel-2); color: var(--ink-2); cursor: pointer; font-family: inherit; transition: all 0.15s; }
.mini:hover { color: var(--ink); }
.mini.ok:hover { border-color: var(--term); color: var(--term); }
.mini.no:hover { border-color: var(--amber); color: var(--amber); }
.mini.del:hover { border-color: var(--hot); color: var(--hot); }
.note-cell { color: var(--ink-3); font-size: 12.5px; max-width: 200px; }

.skel { height: 48px; border-radius: 8px; background: linear-gradient(90deg, var(--panel) 25%, var(--panel-2) 50%, var(--panel) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; margin: 8px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ═══════════ Toast ═══════════ */
.toasts { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast { padding: 12px 20px; border-radius: var(--r); font-size: 14px; background: var(--panel-2); border: 1px solid var(--line-2); color: var(--ink); box-shadow: 0 20px 50px -20px #000; animation: toastIn 0.3s var(--ease); }
.toast.ok { border-color: rgba(0,255,156,0.3); }
.toast.err { border-color: rgba(255,59,107,0.3); }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-4); }

/* ═══════════ Player profile ═══════════ */
.profile { margin-top: 34px; animation: fadeIn 0.4s var(--ease); }

.profile-head {
  display: flex; align-items: center; gap: 18px; margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.avatar-xl {
  width: 66px; height: 66px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 18px;
  background: linear-gradient(140deg, var(--hot), #8a1030);
  color: #fff; font-family: var(--disp); font-weight: 700; font-size: 30px;
  box-shadow: 0 10px 30px -10px var(--hot);
}
.profile-id { flex: 1; min-width: 0; }
.profile-name { font-family: var(--disp); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.profile-sub { font-size: 13px; color: var(--ink-3); margin-top: 3px; word-break: break-all; }
.profile-status {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 12.5px; color: var(--term);
  background: var(--term-dim); border: 1px solid rgba(0,255,156,0.2);
  padding: 6px 13px; border-radius: 999px;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--term); box-shadow: 0 0 8px var(--term); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* stat tiles */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin-bottom: 20px; }
.stat-tile {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 16px 18px; position: relative; overflow: hidden;
  animation: statIn 0.45s var(--ease) backwards;
}
@keyframes statIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.stat-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; opacity: 0.8; }
.stat-term::before { background: var(--term); } .stat-term .stat-val { color: var(--term); }
.stat-blue::before { background: var(--blue); } .stat-blue .stat-val { color: var(--blue); }
.stat-amber::before { background: var(--amber); } .stat-amber .stat-val { color: var(--amber); }
.stat-hot::before { background: var(--hot); } .stat-hot .stat-val { color: var(--hot); }
.stat-val { font-size: 23px; font-weight: 700; letter-spacing: -0.01em; }
.stat-label { font-size: 12px; color: var(--ink-3); margin-top: 3px; }

/* profile cards */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.pcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 20px; }
.pcard-wide { grid-column: 1 / -1; }
.pcard-title {
  font-family: var(--disp); font-size: 13px; font-weight: 600; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pcard-count { font-family: var(--mono); font-size: 11px; color: var(--ink-4); background: var(--bg); border: 1px solid var(--line); padding: 1px 8px; border-radius: 999px; }

.detail-list { display: flex; flex-direction: column; }
.detail-row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.detail-row:last-child { border-bottom: none; }
.detail-k { color: var(--ink-3); }
.detail-v { color: var(--ink); font-weight: 500; text-align: right; }

.id-list { display: flex; flex-direction: column; gap: 4px; }
.id-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.id-row:last-child { border-bottom: none; }
.id-label { font-size: 12.5px; color: var(--ink-3); flex-shrink: 0; }
.id-val { font-size: 12.5px; color: var(--blue); cursor: pointer; direction: ltr; word-break: break-all; text-align: right; transition: color 0.15s; }
.id-val:hover { color: var(--term); }

.act-list { display: flex; flex-direction: column; }
.act-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); animation: logIn 0.4s var(--ease) backwards; }
.act-row:last-child { border-bottom: none; }
.act-chan { font-family: var(--mono); font-size: 11px; color: var(--hot); background: var(--hot-dim); border: 1px solid rgba(255,59,107,0.2); padding: 3px 9px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.act-text { flex: 1; font-size: 13.5px; color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.act-time { font-family: var(--mono); font-size: 11px; color: var(--ink-4); flex-shrink: 0; direction: ltr; }

@media (max-width: 720px) {
  .profile-grid { grid-template-columns: 1fr; }
  .act-text { white-space: normal; }
}

/* admin contact cells */
.contact-cell { line-height: 1.5; }
.ct-email { font-size: 12.5px; color: var(--blue); direction: ltr; }
.ct-phone { font-size: 12px; color: var(--ink-3); direction: ltr; }
.ct-none { color: var(--ink-4); }
.ct-time { font-size: 12px; color: var(--ink-4); direction: ltr; }
.ct-query { color: var(--term); direction: ltr; }

@media (max-width: 640px) {
  .search-hero h1 { font-size: 26px; }
  .cmd { flex-wrap: wrap; }
  .user-chip { display: none; }
  .note-cell, th:nth-child(4), td:nth-child(4) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.05ms !important; }
}
