@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

/* ── Tokens ── */
:root {
  --bg:     #060412;
  --bg2:    #0e0820;
  --panel:  #110d22;
  --pink:   #ff2d78;
  --cyan:   #00f5ff;
  --yellow: #ffe100;
  --green:  #00ff88;
  --purple: #b24bff;
  --text:   #e8d8ff;
  --dim:    #5a4480;
  --border: #ff2d78;
  --sw:     296px;
}

[data-ui-theme="matrix"] {
  --bg:     #000500;
  --bg2:    #000d00;
  --panel:  #001500;
  --pink:   #00ff41;
  --cyan:   #008f11;
  --yellow: #d1ff00;
  --text:   #00ff41;
  --dim:    #003b00;
  --border: #00ff41;
}

[data-ui-theme="synthwave"] {
  --bg:     #2b0b3d;
  --bg2:    #1a062d;
  --panel:  #3d1455;
  --pink:   #ff00ff;
  --cyan:   #00ffff;
  --yellow: #ffff00;
  --text:   #fbc1ff;
  --dim:    #7b3a9c;
  --border: #ff00ff;
}

[data-ui-theme="blood"] {
  --bg:     #110000;
  --bg2:    #220000;
  --panel:  #330000;
  --pink:   #f00;
  --cyan:   #500;
  --yellow: #ff4444;
  --text:   #ffcccc;
  --dim:    #660000;
  --border: #f00;
}

[data-ui-theme="gold"] {
  --bg:     #1a1400;
  --bg2:    #2b2200;
  --panel:  #3d3000;
  --pink:   #ffdf00;
  --cyan:   #8a6d3b;
  --yellow: #ffffff;
  --text:   #fff4cc;
  --dim:    #6b5400;
  --border: #ffdf00;
}

[data-ui-theme="abyssal"] {
  --bg:     #000814;
  --bg2:    #001d3d;
  --panel:  #003566;
  --pink:   #00f5ff;
  --cyan:   #0077b6;
  --yellow: #00ff88;
  --text:   #caf0f8;
  --dim:    #023e8a;
  --border: #00f5ff;
}

[data-ui-theme="toxic"] {
  --bg:     #0d1a00;
  --bg2:    #1a3300;
  --panel:  #2d4d00;
  --pink:   #adff2f;
  --cyan:   #32cd32;
  --yellow: #ffff00;
  --text:   #e6ffcc;
  --dim:    #4d8000;
  --border: #adff2f;
}

[data-ui-theme="frozen"] {
  --bg:     #0a192f;
  --bg2:    #112240;
  --panel:  #233554;
  --pink:   #64ffda;
  --cyan:   #48cae4;
  --yellow: #ffffff;
  --text:   #ccd6f6;
  --dim:    #495670;
  --border: #64ffda;
}

[data-ui-theme="forest"] {
  --bg:     #1b261b;
  --bg2:    #2d3b2d;
  --panel:  #3e4f3e;
  --pink:   #90be6d;
  --cyan:   #43aa8b;
  --yellow: #f9c74f;
  --text:   #f1faee;
  --dim:    #4d614d;
  --border: #90be6d;
}

[data-ui-theme="carbon"] {
  --bg:     #121212;
  --bg2:    #1e1e1e;
  --panel:  #2a2a2a;
  --pink:   #e53935;
  --cyan:   #424242;
  --yellow: #ffffff;
  --text:   #e0e0e0;
  --dim:    #616161;
  --border: #e53935;
}

[data-ui-theme="midnight"] {
  --bg:     #020205;
  --bg2:    #050510;
  --panel:  #0a0a1a;
  --pink:   #4b0082;
  --cyan:   #191970;
  --yellow: #9370db;
  --text:   #a2a2d0;
  --dim:    #1a1a3a;
  --border: #4b0082;
}

[data-ui-theme="noir"] {
  --bg:     #000000;
  --bg2:    #080808;
  --panel:  #111111;
  --pink:   #333333;
  --cyan:   #222222;
  --yellow: #ffffff;
  --text:   #aaaaaa;
  --dim:    #444444;
  --border: #333333;
}

[data-ui-theme="solar"] {
  --bg:     #fffcf0;
  --bg2:    #f5f0e1;
  --panel:  #ebe4cf;
  --pink:   #ff6f00;
  --cyan:   #ffab40;
  --yellow: #ffeb3b;
  --text:   #4e342e;
  --dim:    #a1887f;
  --border: #ff6f00;
}

[data-ui-theme="paper"] {
  --bg:     #f8f9fa;
  --bg2:    #e9ecef;
  --panel:  #dee2e6;
  --pink:   #007bff;
  --cyan:   #17a2b8;
  --yellow: #ffc107;
  --text:   #212529;
  --dim:    #adb5bd;
  --border: #007bff;
}

.theme-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.theme-swatch {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  background: linear-gradient(135deg, var(--c1) 50%, var(--c2) 50%);
  transition: transform 0.1s, border-color 0.1s;
}
.theme-swatch:hover {
  transform: scale(1.1);
  border-color: #fff;
}
.theme-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 10px var(--c1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }

body {
  font-family: 'Press Start 2P', monospace;
  background: var(--bg);
  color: var(--text);
  image-rendering: pixelated;
}

.vt { font-family: 'VT323', monospace; }

/* ── Scanlines ── */
.scanlines {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.18) 2px, rgba(0,0,0,0.18) 3px
  );
}

/* ── Layout ── */
.layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ── Sidebar ── */
.sidebar {
  width: var(--sw);
  min-width: 200px;
  max-width: 520px;
  position: relative;
  background: var(--bg2);
  border-right: 3px solid var(--pink);
  box-shadow: 4px 0 24px rgba(255,45,120,0.25);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px 12px;
  flex-shrink: 0;
}

/* Drag-to-resize handle */
.resize-handle {
  position: absolute;
  right: -5px;
  top: 0; bottom: 0;
  width: 10px;
  cursor: ew-resize;
  z-index: 200;
  background: transparent;
  transition: background 0.1s;
}
.resize-handle::after {
  content: '';
  position: absolute;
  left: 4px; top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,45,120,0.3);
  transition: background 0.1s, box-shadow 0.1s;
}
.resize-handle:hover::after,
.resize-handle.dragging::after {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

.pixel-title {
  font-size: 18px;
  line-height: 1.5;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan), 0 0 30px rgba(0,245,255,0.3);
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.pixel-title span { color: var(--pink); text-shadow: 0 0 10px var(--pink); }

@keyframes blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }
.blink { animation: blink 1s step-end infinite; color: var(--green); }

.s-section {
  border-top: 1px solid rgba(255,45,120,0.2);
  padding: 10px 0;
}

.pixel-label {
  font-size: 7px;
  color: var(--dim);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.pixel-label.accent { color: var(--cyan); }

/* ── Pixel button ── */
.pixel-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--yellow);
  background: transparent;
  border: 2px solid var(--yellow);
  padding: 8px 10px;
  cursor: pointer;
  width: 100%;
  letter-spacing: 1px;
  transition: none;
  box-shadow: 3px 3px 0 rgba(255,225,0,0.3);
}
.pixel-btn:hover {
  background: rgba(255,225,0,0.1);
  box-shadow: 4px 4px 0 rgba(255,225,0,0.5), 0 0 12px rgba(255,225,0,0.3);
}
.pixel-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(255,225,0,0.3); }
.pixel-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Status ── */
.status-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.dot { width: 8px; height: 8px; border-radius: 0; flex-shrink: 0; }
.dot-off  { background: var(--pink); box-shadow: 0 0 4px var(--pink); }
.dot-on   { background: var(--green); box-shadow: 0 0 8px var(--green), 0 0 16px rgba(0,255,136,0.4); }
.dim { color: var(--dim); }

/* ── CRT frame around keyboard ── */
.crt-frame {
  position: relative;
  border: 3px solid var(--cyan);
  padding: 6px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 0 0 1px #000, 0 0 20px rgba(0,245,255,0.3), inset 0 0 12px rgba(0,0,0,0.8);
}
.crt-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 5;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,245,255,0.03) 3px, rgba(0,245,255,0.03) 4px
  );
  border-radius: 0;
}

/* ── Keyboard ── */
.keyboard {
  position: relative;
  background: #050505;
}
.key {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  font-family: 'VT323', monospace;
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
  transition: background-color 0.08s, box-shadow 0.08s;
  user-select: none;
  overflow: hidden;
}

/* ── Brightness slider ── */
.pixel-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--dim);
  outline: none;
  cursor: pointer;
  border-radius: 0;
}
.pixel-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 16px;
  border-radius: 0;
  background: var(--yellow);
  cursor: pointer;
  box-shadow: 0 0 6px var(--yellow);
}

/* ── Log ── */
.log-panel {
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: var(--green);
  background: #020a04;
  border: 1px solid rgba(0,255,136,0.2);
  padding: 6px 8px;
  max-height: 120px;
  overflow-y: auto;
  line-height: 1.6;
}

/* ── Warning ── */
.pixel-warn {
  font-size: 7px;
  color: var(--pink);
  border: 2px solid rgba(255,45,120,0.3);
  padding: 8px;
  line-height: 2;
  margin-top: 8px;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ── Main panel ── */
.main {
  flex: 1;
  overflow-y: auto;
  background: var(--bg);
  padding: 0 0 40px;
}

/* ── Category strip ── */
.cat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 3px solid var(--pink);
  background: var(--bg2);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(255,45,120,0.2);
}

.cat-tab {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  padding: 9px 11px;
  border: none;
  border-right: 2px solid rgba(255,45,120,0.2);
  background: var(--bg2);
  color: var(--dim);
  cursor: pointer;
  letter-spacing: 1px;
  transition: none;
  white-space: nowrap;
}
.cat-tab:hover { background: rgba(255,45,120,0.08); color: var(--pink); }
.cat-tab.active {
  background: rgba(255,45,120,0.15);
  color: var(--yellow);
  border-bottom: 3px solid var(--yellow);
  text-shadow: 0 0 8px var(--yellow);
  margin-bottom: -3px;
}

/* ── Pattern count ── */
.pattern-count {
  font-size: 14px;
  color: var(--dim);
  padding: 8px 16px 4px;
}

/* ── Effects grid ── */
.effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 4px;
  padding: 8px 12px;
}

.effect-card {
  font-family: 'VT323', monospace;
  font-size: 15px;
  padding: 7px 8px;
  border: 2px solid rgba(255,45,120,0.18);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  user-select: none;
  transition: none;
}
.effect-card:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,245,255,0.06);
  box-shadow: inset 0 0 8px rgba(0,245,255,0.05), 0 0 8px rgba(0,245,255,0.15);
}
.effect-card.active {
  border-color: var(--pink);
  color: var(--yellow);
  background: rgba(255,45,120,0.12);
  box-shadow: inset 0 0 8px rgba(255,45,120,0.08), 0 0 10px rgba(255,45,120,0.25);
}

.effect-icon { font-size: 16px; flex-shrink: 0; line-height: 1; }
.effect-name { font-size: 14px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Scrollbars ── */
::-webkit-scrollbar { width: 5px; background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--pink); }



/* ── Tabs & Hardware UI ── */
.pixel-tabs {
  display: flex;
  background: var(--bg2);
  border-bottom: 2px solid var(--dim);
}
.pixel-tab {
  flex: 1;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 12px 0;
  border: none;
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  letter-spacing: 1px;
}
.pixel-tab:hover { color: var(--pink); background: rgba(255,45,120,0.1); }
.pixel-tab.active {
  color: var(--cyan);
  background: rgba(0,245,255,0.08);
  border-bottom: 2px solid var(--cyan);
  margin-bottom: -2px;
  text-shadow: 0 0 6px var(--cyan);
}

.panel {
  display: none;
}
.panel.active {
  display: block;
}

.hw-controls {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hw-group {
  border: 2px solid rgba(255,45,120,0.15);
  background: var(--panel);
  padding: 16px;
}
.pixel-select {
  font-family: 'VT323', monospace;
  font-size: 18px;
  width: 100%;
  background: var(--bg);
  color: var(--yellow);
  border: 1px solid var(--cyan);
  padding: 8px;
  cursor: pointer;
  outline: none;
}
.pixel-select:focus { box-shadow: 0 0 8px rgba(0,245,255,0.4); }

/* ── Custom Preset Panel ── */
.custom-toolbar {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg2);
  border-bottom: 2px solid rgba(255,45,120,0.2);
  flex-wrap: wrap;
}
.custom-toolbar-left {
  flex: 0 0 auto;
}
.custom-toolbar-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.custom-color-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.custom-color-input {
  width: 48px;
  height: 36px;
  border: 2px solid var(--cyan);
  background: var(--bg);
  cursor: pointer;
  padding: 0;
  margin-bottom: 6px;
}
.custom-color-input::-webkit-color-swatch-wrapper { padding: 2px; }
.custom-color-input::-webkit-color-swatch { border: none; }
.custom-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.swatch {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  padding: 0;
}
.swatch:hover {
  transform: scale(1.2);
  box-shadow: 0 0 8px currentColor;
  border-color: #fff;
  z-index: 2;
}
.swatch.active-swatch {
  border-color: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
}
.custom-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.custom-action-btn {
  font-size: 7px !important;
  padding: 6px 10px !important;
  width: auto !important;
  flex: 0 0 auto;
}
.custom-push-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-push-btn {
  font-size: 8px !important;
  padding: 8px 14px !important;
  width: auto !important;
  border-color: var(--green) !important;
  color: var(--green) !important;
  box-shadow: 3px 3px 0 rgba(0,255,136,0.3) !important;
}
.custom-push-btn:hover {
  background: rgba(0,255,136,0.1) !important;
  box-shadow: 4px 4px 0 rgba(0,255,136,0.5), 0 0 12px rgba(0,255,136,0.3) !important;
}
.custom-toggle-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--dim);
  cursor: pointer;
  user-select: none;
}
.custom-toggle-label input:checked + span {
  color: var(--green);
  text-shadow: 0 0 6px rgba(0,255,136,0.5);
}

/* ── Preset Generator ── */
.gen-section {
  border-top: 2px solid rgba(0,245,255,0.15);
  border-bottom: 2px solid rgba(0,245,255,0.15);
  background: var(--bg2);
}
.gen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.gen-header:hover {
  background: rgba(0,245,255,0.05);
}
.gen-arrow {
  font-size: 14px;
  color: var(--cyan);
  transition: transform 0.2s;
}
.gen-arrow.open {
  transform: rotate(90deg);
}
.gen-body {
  padding: 0 20px 16px;
}
.gen-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.gen-group {
  flex: 1;
  min-width: 140px;
}
.gen-select {
  font-size: 14px !important;
  padding: 6px 8px !important;
}
.gen-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gen-btn {
  font-size: 8px !important;
  padding: 8px 14px !important;
  width: auto !important;
}
.gen-surprise-btn {
  border-color: var(--cyan) !important;
  color: var(--cyan) !important;
  box-shadow: 3px 3px 0 rgba(0,245,255,0.3) !important;
}
.gen-surprise-btn:hover {
  background: rgba(0,245,255,0.1) !important;
  box-shadow: 4px 4px 0 rgba(0,245,255,0.5), 0 0 12px rgba(0,245,255,0.3) !important;
}

/* ── Custom Keyboard ── */
.custom-keyboard-wrap {
  padding: 12px 0;
}
.custom-keyboard {
  position: relative;
  background: #050505;
  margin: 0 20px;
  border: 2px solid rgba(0,245,255,0.3);
  box-shadow: 0 0 20px rgba(0,245,255,0.1);
  overflow: hidden;
}
.custom-key {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  cursor: pointer;
  transition: background-color 0.06s, border-color 0.1s;
  user-select: none;
  overflow: hidden;
  z-index: 1;
}
.custom-key:hover {
  border-color: rgba(255,255,255,0.4);
  z-index: 5;
}
.custom-key.selected {
  border-color: var(--yellow) !important;
  box-shadow: 0 0 8px var(--yellow), inset 0 0 4px rgba(255,225,0,0.15);
  z-index: 10;
}
.custom-key.painting {
  border-color: var(--cyan) !important;
}

/* ── Profiles ── */
.custom-profiles {
  padding: 16px 20px;
  border-top: 2px solid rgba(255,45,120,0.2);
}
.profile-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.profile-input {
  font-family: 'VT323', monospace;
  font-size: 16px;
  background: var(--bg);
  color: var(--yellow);
  border: 1px solid var(--cyan);
  padding: 6px 10px;
  flex: 1;
  min-width: 120px;
  outline: none;
}
.profile-input::placeholder { color: var(--dim); }
.profile-input:focus { box-shadow: 0 0 8px rgba(0,245,255,0.4); }
.profile-btn {
  font-size: 7px !important;
  padding: 6px 10px !important;
  width: auto !important;
}
.profile-import-label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.profile-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 200px;
  overflow-y: auto;
}
.profile-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255,45,120,0.15);
  background: var(--panel);
  cursor: pointer;
  transition: border-color 0.1s;
}
.profile-item:hover {
  border-color: var(--cyan);
  background: rgba(0,245,255,0.05);
}
.profile-item-name {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--text);
  flex: 1;
}
.profile-item-date {
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: var(--dim);
}
.profile-item-del {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--pink);
  background: none;
  border: 1px solid var(--pink);
  padding: 3px 6px;
  cursor: pointer;
}
.profile-item-del:hover {
  background: rgba(255,45,120,0.2);
}
.profile-item-colors {
  display: flex;
  gap: 1px;
}
.profile-color-dot {
  width: 4px;
  height: 12px;
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: var(--bg2);
  border: 3px solid var(--pink);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 30px rgba(255, 45, 120, 0.4), inset 0 0 15px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
}
.modal-header {
  font-size: 14px;
  color: var(--pink);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--pink);
}
.modal-body {
  font-family: 'VT323', monospace;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 25px;
}
.modal-body span {
  color: var(--cyan);
  text-shadow: 0 0 5px var(--cyan);
}
.modal-close-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--bg2);
  background: var(--cyan);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--dim);
}
.modal-close-btn:hover {
  background: var(--text);
  box-shadow: 2px 2px 0 var(--dim);
  transform: translate(2px, 2px);
}
.modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.modal-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--dim);
  font-size: 16px;
}
.modal-checkbox-label input {
  accent-color: var(--pink);
  width: 16px;
  height: 16px;
}
.modal-checkbox-label:hover {
  color: var(--text);
}

.footer-signature {
  position: fixed;
  bottom: 8px;
  left: 12px;
  font-size: 11px;
  color: var(--dim);
  z-index: 100;
  pointer-events: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-signature span.accent {
  color: var(--cyan);
  text-shadow: 0 0 5px var(--cyan);
}

