:root {
  --paper: #f6f1e7;
  --paper-2: #fffdf8;
  --paper-3: #efe8da;
  --ink: #22201c;
  --ink-2: #4d4940;
  --ink-3: #8a8375;
  --line: #e2d9c7;
  --coral: #f06b4f;
  --butter: #f7d774;
  --sage: #a9c4a0;
  --sky: #a9c7e8;
  --lilac: #cdb8e6;
  --radius: 18px;
  --shadow: 0 1px 0 rgba(60, 40, 10, 0.05), 0 14px 30px -18px rgba(60, 40, 10, 0.35);
  --shadow-lg: 0 2px 0 rgba(60, 40, 10, 0.05), 0 30px 60px -30px rgba(60, 40, 10, 0.45);
  --hand: 'Caveat', 'Comic Sans MS', cursive;
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(34, 32, 28, 0.13) 1px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: -11px -11px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
.hand { font-family: var(--hand); }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(246, 241, 231, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--hand); font-size: 30px; font-weight: 700; letter-spacing: 0.3px; }
.brand-mark { width: 36px; height: 36px; transform: rotate(-6deg); transition: transform 0.3s; }
.brand:hover .brand-mark { transform: rotate(4deg) scale(1.05); }
.nav { display: flex; gap: 6px; }
.nav a {
  text-decoration: none; font-weight: 500; font-size: 14px;
  padding: 8px 14px; border-radius: 999px; border: 1.5px solid transparent;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav a:hover { border-color: var(--line); background: var(--paper-2); }
.nav a.active { border-color: var(--ink); background: var(--paper-2); box-shadow: 2px 2px 0 var(--ink); }
.badge { font-size: 11px; background: var(--coral); color: #fff; border-radius: 999px; padding: 1px 7px; font-weight: 600; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--paper-2); border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  font-weight: 500; font-size: 14px; text-decoration: none; white-space: nowrap;
  transition: transform 0.12s, box-shadow 0.12s, background 0.2s;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.btn.primary { background: var(--ink); color: var(--paper-2); box-shadow: 2px 2px 0 var(--coral); }
.btn.primary:hover { box-shadow: 3px 3px 0 var(--coral); }
.btn.yellow { background: var(--butter); }
.btn.ghost { border-color: var(--line); box-shadow: none; background: transparent; }
.btn.ghost:hover { background: var(--paper-2); border-color: var(--ink-3); }
.btn.small { padding: 6px 12px; font-size: 13px; }
.btn.icon { width: 38px; height: 38px; padding: 0; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  padding: clamp(36px, 7vw, 80px) clamp(16px, 4vw, 40px) 24px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
}
.eyebrow { font-family: var(--hand); font-size: 24px; color: var(--coral); margin: 0 0 6px; transform: rotate(-2deg); display: inline-block; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 7vw, 84px); line-height: 0.98; margin: 0; letter-spacing: -1px; }
.hero h1 em { position: relative; white-space: nowrap; }
.hero h1 em svg { position: absolute; left: -2%; bottom: -0.12em; width: 104%; height: 0.32em; overflow: visible; }
.lede { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 520px; margin: 22px 0 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-family: var(--hand); font-size: 21px; color: var(--ink-2); display: flex; align-items: center; gap: 6px; margin-left: 6px; }
.hero-art { position: relative; height: 360px; }
.polaroid {
  position: absolute; width: 58%; aspect-ratio: 1;
  background: var(--paper-2); padding: 10px 10px 34px; border-radius: 6px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.polaroid > svg { display: block; width: 100%; height: 100%; border-radius: 3px; }
.polaroid span { position: absolute; bottom: 6px; left: 0; right: 0; text-align: center; font-family: var(--hand); font-size: 19px; }
.polaroid:nth-child(1) { left: 2%; top: 8%; transform: rotate(-8deg); }
.polaroid:nth-child(2) { right: 0; top: 0; transform: rotate(6deg); z-index: 2; }
.polaroid:nth-child(3) { left: 24%; bottom: -6%; transform: rotate(-2deg); z-index: 3; width: 52%; }
.hero-art:hover .polaroid:nth-child(1) { transform: rotate(-12deg) translate(-10px, -4px); }
.hero-art:hover .polaroid:nth-child(2) { transform: rotate(10deg) translate(8px, -6px); }
.tape {
  position: absolute; top: -10px; left: 50%; width: 70px; height: 22px; margin-left: -35px;
  background: rgba(247, 215, 116, 0.75); transform: rotate(-4deg);
  border-left: 1px dashed rgba(0,0,0,.08); border-right: 1px dashed rgba(0,0,0,.08);
}

/* ---------- library toolbar ---------- */
.library { max-width: 1180px; margin: 0 auto; padding: 18px clamp(16px, 4vw, 40px) 60px; }
.lib-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 28px 0 14px; }
.lib-head h2 { font-family: var(--serif); font-weight: 400; font-size: 36px; margin: 0; }
.lib-head h2 small { font-family: var(--hand); font-size: 22px; color: var(--ink-3); margin-left: 8px; }
.filters {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; box-shadow: var(--shadow); display: grid; gap: 12px;
}
.filter-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.search { position: relative; flex: 1 1 240px; }
.search input {
  width: 100%; padding: 10px 14px 10px 38px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--paper); outline: none; font-size: 14px;
}
.search input:focus { border-color: var(--ink); }
.search svg { position: absolute; left: 13px; top: 50%; width: 16px; height: 16px; margin-top: -8px; color: var(--ink-3); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  border: 1.5px solid var(--line); background: var(--paper); border-radius: 999px;
  padding: 5px 11px; font-size: 13px; display: inline-flex; gap: 6px; align-items: center;
  transition: background 0.15s, border-color 0.15s;
}
.chip:hover { border-color: var(--ink-3); }
.chip .n { font-size: 11px; color: var(--ink-3); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--paper-2); }
.chip.on .n { color: var(--butter); }
.chip.clear { border-style: dashed; }
.pal-pick { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--ink-2); }
.pal-pick .label { font-family: var(--hand); font-size: 20px; color: var(--ink); margin-right: 2px; }
.mini-pal {
  display: inline-flex; border-radius: 999px; overflow: hidden; border: 1.5px solid var(--line);
  height: 24px; padding: 0; background: none; transition: transform 0.15s;
}
.mini-pal:hover { transform: translateY(-1px); border-color: var(--ink-3); }
.mini-pal.on { border-color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.mini-pal i { display: block; width: 12px; height: 100%; }
.mini-pal.text { padding: 0 10px; align-items: center; font-size: 12px; background: var(--paper); }

/* ---------- gallery grid ---------- */
.grid {
  display: grid; gap: 26px 22px; margin-top: 26px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.card {
  position: relative; display: block; text-decoration: none;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 10px; box-shadow: var(--shadow);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s;
}
.card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-lg); z-index: 2; }
.card .thumb { aspect-ratio: 1; border-radius: 11px; overflow: hidden; background: var(--paper-3); position: relative; }
.card .thumb > svg { display: block; width: 100%; height: 100%; }
.card .thumb .ph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--hand); color: var(--ink-3); font-size: 20px; }
.card .meta { padding: 10px 4px 2px; }
.card .no { font-family: var(--hand); font-size: 17px; color: var(--coral); }
.card h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 23px; line-height: 1.1; }
.card .tags { margin-top: 5px; font-size: 12px; color: var(--ink-3); }
.card .tape { opacity: 0; transition: opacity 0.2s; }
.card:hover .tape { opacity: 1; }
.card .card-actions { position: absolute; top: 18px; right: 18px; display: flex; gap: 6px; opacity: 0; transition: opacity 0.2s; }
.card:hover .card-actions, .card:focus-within .card-actions { opacity: 1; }
.card-actions button { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--ink); background: var(--paper-2); display: grid; place-items: center; box-shadow: 1.5px 1.5px 0 var(--ink); }
.card-actions button svg { width: 15px; height: 15px; }
.empty { text-align: center; padding: 60px 20px; font-family: var(--hand); font-size: 26px; color: var(--ink-2); }
.empty p { font-family: var(--sans); font-size: 15px; color: var(--ink-3); }

/* ---------- editor ---------- */
.editor {
  max-width: 1400px; margin: 0 auto; padding: 22px clamp(16px, 3vw, 32px) 50px;
  display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start;
}
.stage-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.stage-title { display: flex; align-items: center; gap: 12px; min-width: 0; }
.stage-title h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 44px); margin: 0; line-height: 1; }
.stage-title .no { font-family: var(--hand); font-size: 22px; color: var(--coral); }
.stage-title .tags { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.stage-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.desk {
  position: relative; border-radius: 26px; padding: clamp(18px, 4vw, 44px);
  background: var(--paper-3);
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.018) 0 2px, transparent 2px 9px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.sheet {
  position: relative; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 24px 50px -24px rgba(60, 40, 10, 0.5);
  border-radius: 3px; transition: aspect-ratio 0.3s;
  width: 100%; max-height: 72vh;
}
.sheet > svg { display: block; width: 100%; height: 100%; }
.sheet-label { position: absolute; right: 16px; bottom: 10px; font-family: var(--hand); font-size: 19px; color: var(--ink-3); }
.variations { margin-top: 22px; }
.variations-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.variations h4 { margin: 0; font-family: var(--hand); font-size: 26px; font-weight: 700; }
.var-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.var {
  padding: 5px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper-2);
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.var:nth-child(odd) { transform: rotate(-1.5deg); }
.var:nth-child(even) { transform: rotate(1.2deg); }
.var:hover { transform: rotate(0) translateY(-3px); }
.var > svg { display: block; width: 100%; aspect-ratio: 1; border-radius: 8px; }

.panel {
  position: sticky; top: 84px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 104px); display: flex; flex-direction: column; overflow: hidden;
}
.tabs { display: grid; grid-template-columns: repeat(3, 1fr); padding: 8px; gap: 4px; border-bottom: 1px dashed var(--line); }
.tab { border: 0; background: transparent; padding: 10px 6px; border-radius: 12px; font-weight: 500; font-size: 14px; color: var(--ink-2); display: flex; gap: 7px; align-items: center; justify-content: center; }
.tab svg { width: 16px; height: 16px; }
.tab:hover { background: var(--paper); }
.tab.on { background: var(--ink); color: var(--paper-2); }
.tab-body { padding: 18px 18px 22px; overflow-y: auto; }
.section { margin-bottom: 22px; }
.section:last-child { margin-bottom: 0; }
.section-title { font-family: var(--hand); font-size: 23px; font-weight: 700; margin: 0 0 10px; display: flex; align-items: center; justify-content: space-between; }
.section-title .sub { font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--ink-3); }
.hint { font-size: 12px; color: var(--ink-3); line-height: 1.5; margin: 6px 0 0; }

.ctl { margin-bottom: 14px; }
.ctl-top { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; margin-bottom: 6px; color: var(--ink-2); }
.ctl-top output { font-variant-numeric: tabular-nums; font-size: 12px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 1px 7px; }
input[type='range'] { -webkit-appearance: none; appearance: none; width: 100%; height: 22px; background: transparent; margin: 0; }
input[type='range']::-webkit-slider-runnable-track { height: 6px; border-radius: 6px; background: linear-gradient(to right, var(--ink) var(--fill, 50%), var(--line) var(--fill, 50%)); }
input[type='range']::-moz-range-track { height: 6px; border-radius: 6px; background: var(--line); }
input[type='range']::-moz-range-progress { height: 6px; border-radius: 6px; background: var(--ink); }
input[type='range']::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--butter); border: 2px solid var(--ink); margin-top: -7px; box-shadow: 1.5px 1.5px 0 var(--ink); transition: transform 0.12s; }
input[type='range']::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--butter); border: 2px solid var(--ink); }
input[type='range']:active::-webkit-slider-thumb { transform: scale(1.15); }

.seg { display: flex; background: var(--paper); border: 1.5px solid var(--line); border-radius: 999px; padding: 3px; gap: 2px; flex-wrap: wrap; }
.seg button { flex: 1; border: 0; background: transparent; border-radius: 999px; padding: 6px 10px; font-size: 13px; color: var(--ink-2); white-space: nowrap; }
.seg button.on { background: var(--ink); color: var(--paper-2); }
.toggle { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--ink-2); cursor: pointer; margin-bottom: 12px; }
.toggle input { display: none; }
.toggle .sw { width: 40px; height: 24px; border-radius: 999px; background: var(--line); position: relative; border: 1.5px solid var(--ink); transition: background 0.2s; flex: none; }
.toggle .sw::after { content: ''; position: absolute; top: 2px; left: 2px; width: 17px; height: 17px; border-radius: 50%; background: var(--paper-2); border: 1.5px solid var(--ink); transition: transform 0.2s; box-sizing: border-box; }
.toggle input:checked + .sw { background: var(--sage); }
.toggle input:checked + .sw::after { transform: translateX(16px); }

.seed-row { display: flex; gap: 8px; align-items: center; }
.seed-row input { flex: 1; min-width: 0; padding: 8px 12px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--paper); font-variant-numeric: tabular-nums; }

/* wands */
.wands { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wand {
  text-align: left; border: 1.5px solid var(--ink); border-radius: 16px; padding: 10px 12px 11px;
  background: var(--paper); box-shadow: 2px 2px 0 var(--ink); transition: transform 0.12s, box-shadow 0.12s;
  position: relative; overflow: hidden;
}
.wand:hover { transform: translate(-1px, -1px) rotate(-0.5deg); box-shadow: 3px 3px 0 var(--ink); }
.wand b { display: flex; align-items: center; gap: 6px; font-family: var(--hand); font-size: 22px; line-height: 1; }
.wand b svg { width: 18px; height: 18px; }
.wand small { font-size: 12px; color: var(--ink-3); }
.wand .dots { display: flex; gap: 3px; margin-top: 7px; }
.wand .dots i { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }
.wand.sparkle { animation: wiggle 0.5s; }
@keyframes wiggle { 30% { transform: rotate(-3deg) scale(1.03); } 60% { transform: rotate(2deg); } }

.presets { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }
.preset { border: 1.5px solid var(--line); background: var(--paper); border-radius: 12px; padding: 6px; text-align: left; font-size: 11px; color: var(--ink-2); }
.preset:hover { border-color: var(--ink-3); }
.preset .bar { display: flex; height: 18px; border-radius: 6px; overflow: hidden; margin-bottom: 5px; border: 1px solid rgba(0,0,0,.06); }
.preset .bar i { flex: 1; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.slot { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); background: var(--paper); border-radius: 12px; padding: 6px 8px; font-size: 12px; }
.slot label { position: relative; width: 28px; height: 28px; border-radius: 8px; border: 1.5px solid var(--ink); flex: none; overflow: hidden; cursor: pointer; }
.slot input[type='color'] { position: absolute; inset: -8px; width: 50px; height: 50px; opacity: 0; cursor: pointer; }
.slot .nm { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.slot .nm span { color: var(--ink-3); font-size: 11px; font-variant-numeric: tabular-nums; }

textarea.codes { width: 100%; min-height: 64px; resize: vertical; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper); padding: 10px 12px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; outline: none; }
textarea.codes:focus { border-color: var(--ink); }
.row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.row.spread { justify-content: space-between; }
.check { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-2); }

.papers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.paper-btn { border: 1.5px solid var(--line); background: var(--paper); border-radius: 12px; padding: 8px 4px 6px; display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: var(--ink-2); }
.paper-btn i { display: block; background: #fff; border: 1.5px solid var(--ink-3); border-radius: 2px; }
.paper-btn.on { border-color: var(--ink); background: var(--butter); color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.paper-btn.on i { border-color: var(--ink); }
.export-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.export-grid .btn { width: 100%; }
.note { font-family: var(--hand); font-size: 18px; color: var(--ink-2); background: #fff8d9; border: 1px dashed #e7cf7b; border-radius: 12px; padding: 8px 12px; transform: rotate(-0.6deg); }

/* ---------- saved ---------- */
.saved-wrap { max-width: 1180px; margin: 0 auto; padding: 36px clamp(16px, 4vw, 40px) 60px; }
.saved-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.saved-head h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5vw, 56px); margin: 0; }
.saved-head p { margin: 6px 0 0; color: var(--ink-2); }

/* ---------- toast & footer ---------- */
#toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--ink); color: var(--paper-2); padding: 10px 18px; border-radius: 999px; font-size: 14px;
  box-shadow: 3px 3px 0 var(--coral); transition: opacity 0.25s, transform 0.25s; z-index: 50;
}
#toast.show { opacity: 1; transform: translate(-50%, 0); }
.foot { text-align: center; padding: 26px 16px 34px; color: var(--ink-3); font-size: 20px; }

#print-root { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .editor { grid-template-columns: 1fr; }
  .panel { position: static; max-height: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { height: 300px; max-width: 460px; width: 100%; margin: 10px auto 0; }
}
@media (max-width: 640px) {
  .brand { font-size: 23px; gap: 7px; }
  .brand-mark { width: 30px; height: 30px; }
  .nav .long { display: none; }
  .topbar { padding: 12px 14px; }
  .nav { gap: 2px; }
  .nav a { padding: 6px 9px; font-size: 13px; }
  .var-row { grid-template-columns: repeat(3, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .card h3 { font-size: 19px; }
  .card .tags { display: none; }
  .papers { grid-template-columns: repeat(4, 1fr); }
  .desk { min-height: 0; }
  .stage-actions .btn .lbl { display: none; }
  .hero-art { height: 240px; }
}

/* ---------- print ---------- */
@media print {
  body { background: #fff !important; display: block; min-height: 0; }
  body > *:not(#print-root) { display: none !important; }
  #print-root { display: block !important; }
  .print-page { break-after: page; page-break-after: always; overflow: hidden; }
  .print-page:last-child { break-after: auto; page-break-after: auto; }
  .print-page svg { display: block; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}
