:root {
  --bg0:     #fff0f5;   
  --bg1:     #fde8f1;  
  --bg2:     #fcdeed;   
  --bg3:     #f9cfe5;   

  --text:    #a0456a;   
  --text2:   #b5567a;  
  --text3:   #c8749a;   
  --dim:     #d9a0bc;   

  --accent:  #d45c88;
  --accent2: #e070a0;

  --green:   #5a9e6e;
  --red:     #d45858;
  --yellow:  #b08030;
  --cyan:    #3a9090;

  --win-bg:      #fffafc;   
  --win-border:  #f0c0d8;
  --tbar-bg:     #fde8f1;
  --tbar-border: #f0c0d8;

  --tbar-bar:    #fde8f1;

  --input-bg:    #fffafc;
  --input-bdr:   #f0c0d8;

  --mono: 'JetBrains Mono', monospace;
}


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


body {
  font-family: var(--mono);
  background: #fff5f8;
  color: var(--text);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  cursor: default;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(180,80,120,0.018) 3px,
    rgba(180,80,120,0.018) 4px
  );
}

#splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff5f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .8s;
}

#sw {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 68px;
  color: var(--accent);
  animation: wglow 2.5s ease-in-out infinite alternate;
}

@keyframes wglow {
  from { text-shadow: 0 0 20px rgba(192,67,110,0.2); }
  to   { text-shadow: 0 0 50px rgba(192,67,110,0.45), 0 0 90px rgba(192,67,110,0.15); }
}

#ssub {
  color: var(--text3);
  font-size: 12px;
  letter-spacing: 4px;
  margin-top: 10px;
}

#blog {
  margin-top: 30px;
  font-size: 10.5px;
  color: var(--text3);
  width: 380px;
}

.bl {
  margin-bottom: 3px;
  animation: blfade .3s ease;
}

@keyframes blfade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#desktop {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(255,200,220,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 25%, rgba(240,180,210,0.45) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 80%, rgba(255,210,230,0.4) 0%, transparent 45%),
    linear-gradient(150deg, #fff5f8 0%, #fdeef5 50%, #fff0f6 100%);
}

#arch-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  opacity: 0.75;
  pointer-events: none;
}

.petal {
  position: absolute;
  pointer-events: none;
  animation: petalfall linear infinite;
  font-size: 14px;
  opacity: 0;
}

@keyframes petalfall {
  0%   { transform: translateY(-30px) rotate(0deg);   opacity: 0; }
  5%   { opacity: .8; }
  95%  { opacity: .5; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.dico {
  position: absolute;
  width: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 4px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background .18s;
}

.dico:hover {
  background: rgba(192,67,110,0.1);
}

.dico .ico {
  font-size: 30px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 6px rgba(192,67,110,0.25));
}

.dico .lbl {
  font-size: 9.5px;
  color: var(--text);
  text-align: center;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
  line-height: 1.3;
  font-weight: 500;
}

#taskbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  z-index: 5000;
  background: rgba(248,216,232,0.92);
  border-top: 1px solid var(--tbar-border);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  box-shadow: 0 -1px 12px rgba(192,67,110,0.08);
}

.tlogo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-right: 6px;
  cursor: pointer;
}

.tbtn {
  padding: 3px 11px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--win-border);
  color: var(--text);
  font-family: var(--mono);
  font-size: 10.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: all .18s;
  white-space: nowrap;
}

.tbtn:hover {
  background: rgba(192,67,110,0.12);
  border-color: var(--accent);
  color: var(--accent);
}

#tbar-clk {
  margin-left: auto;
  font-size: 11px;
  color: var(--text2);
  letter-spacing: .5px;
}


.win {
  position: absolute;
  display: none;
  flex-direction: column;
  background: var(--win-bg);
  border: 1px solid var(--win-border);
  border-radius: 10px;
  box-shadow:
    0 8px 32px rgba(192,67,110,0.12),
    0 2px 8px rgba(192,67,110,0.08);
  overflow: hidden;
  min-width: 300px;
  min-height: 180px;
  z-index: 200;
}

.win.shown {
  display: flex;
}

.win.minimized {
  display: none !important;
}

.win.maximized {
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
}

.win:focus-within {
  border-color: var(--accent);
  box-shadow:
    0 8px 40px rgba(192,67,110,0.18),
    0 2px 10px rgba(192,67,110,0.12);
}

.tbar {
  background: var(--tbar-bg);
  border-bottom: 1px solid var(--tbar-border);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: move;
  user-select: none;
  flex-shrink: 0;
}

.wb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: filter .15s;
}

.wb:hover { filter: brightness(0.85); }
.wb-c { background: #f5a0a8; }
.wb-m { background: #f5d870; }
.wb-x { background: #7dce82; }

.wtitle {
  flex: 1;
  text-align: center;
  font-size: 10.5px;
  color: var(--text2);
  letter-spacing: .8px;
}

.rzh {
  position: fixed;
  width: 18px;
  height: 18px;
  cursor: se-resize;
  z-index: 9999;
  background: linear-gradient(135deg, transparent 40%, rgba(192,67,110,0.4) 40%);
  border-bottom-right-radius: 10px;
  display: none;
}

.smbtn {
  padding: 4px 11px;
  font-family: var(--mono);
  font-size: 10px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid var(--win-border);
  background: rgba(255,255,255,0.6);
  color: var(--text);
  transition: all .18s;
}

.smbtn:hover {
  background: rgba(192,67,110,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

#wt {
  width: 660px;
  height: 420px;
  top: 55px;
  left: 100px;
}

#tb {
  flex: 1;
  overflow-y: auto;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.65;
  background: #fffafc;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
  min-height: 0; 
  word-break: break-word;
}

.tl { margin-bottom: 1px; word-break: break-all; }

.tp { color: var(--accent); }
.tc { color: var(--text); }
.to { color: var(--text2); white-space: pre-wrap; }
.te { color: var(--red); }
.ti { color: var(--cyan); }
.ts { color: var(--green); }
.ty { color: var(--yellow); }

#tir {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  border-top: 1px solid var(--bg3);
  background: #fde8f0;
  flex-shrink: 0;
  min-height: 36px;
  position: relative;
  z-index: 10;
  pointer-events: all;
}

#tpl {
  color: var(--accent);
  font-size: 12.5px;
  white-space: nowrap;
  margin-right: 7px;
  font-weight: 600;
}

#tinp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12.5px;
  caret-color: var(--accent);
  pointer-events: all;
  position: relative;
  z-index: 10;
}


#we {
  width: 640px;
  height: 430px;
  top: 65px;
  left: 800px;
}

/* language tabs */
#etabs {
  display: flex;
  padding: 5px 8px 0;
  gap: 3px;
  background: var(--bg1);
  border-bottom: 1px solid var(--win-border);
  flex-shrink: 0;
}

.etab {
  padding: 4px 13px;
  font-size: 10.5px;
  cursor: pointer;
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--win-border);
  border-bottom: none;
  color: var(--dim);
  border-radius: 4px 4px 0 0;
  transition: all .18s;
  font-family: var(--mono);
}

.etab.active {
  background: var(--win-bg);
  color: var(--accent);
  border-color: var(--win-border);
  font-weight: 600;
}

#esplit {
  flex: 1;
  display: flex;
  overflow: hidden;
}

#elnum {
  padding: 11px 7px;
  color: var(--dim);
  font-size: 11.5px;
  line-height: 1.65;
  text-align: right;
  min-width: 36px;
  border-right: 1px solid var(--bg3);
  background: #fde8f0;
  user-select: none;
  flex-shrink: 0;
}

#ecode {
  flex: 1;
  padding: 11px;
  background: #fff5f8;
  border: none;
  outline: none;
  resize: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.65;
  tab-size: 2;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
}

/* bottom bar */
#efoot {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-top: 1px solid var(--bg3);
  background: var(--bg1);
  flex-shrink: 0;
}

.ebtn {
  padding: 4px 13px;
  font-family: var(--mono);
  font-size: 10.5px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid var(--win-border);
  background: rgba(255,255,255,0.6);
  color: var(--text);
  transition: all .18s;
}

.ebtn:hover {
  background: rgba(192,67,110,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.ebtn.run {
  border-color: #4a8c5c;
  color: #4a8c5c;
  font-weight: 600;
}

.ebtn.run:hover {
  background: rgba(74,140,92,0.1);
}

#ecur {
  font-size: 9.5px;
  color: var(--dim);
}

#elangbadge {
  margin-left: auto;
  font-size: 9.5px;
  padding: 2px 8px;
  background: rgba(192,67,110,0.08);
  border: 1px solid var(--win-border);
  border-radius: 3px;
  color: var(--text2);
}

#eout {
  display: none;
  max-height: 90px;
  overflow-y: auto;
  padding: 7px 12px;
  font-size: 11px;
  white-space: pre-wrap;
  border-top: 1px solid var(--bg3);
  background: #fff0f5;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
}

#wg {
  width: 390px;
  height: 470px;
  top: 70px;
  left: 100px;
}

/* main menu */
#ghome {
  padding: 14px;
  flex: 1;
  overflow-y: auto;
  background: var(--win-bg);
}

.gtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 14px;
}

.gcard {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--win-border);
  border-radius: 7px;
  padding: 11px 13px;
  margin-bottom: 9px;
  cursor: pointer;
  transition: all .2s;
}

.gcard:hover {
  background: rgba(192,67,110,0.07);
  border-color: var(--accent);
  transform: translateX(3px);
  box-shadow: 0 2px 12px rgba(192,67,110,0.1);
}

.gcard h3 {
  color: var(--text);
  font-size: 12px;
  margin-bottom: 3px;
}

.gcard p {
  color: var(--dim);
  font-size: 10.5px;
}

/* ── snake ── */
#snkwrap {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  flex: 1;
  background: var(--win-bg);
}

#snkcv {
  border: 1.5px solid var(--win-border);
  box-shadow: 0 2px 12px rgba(192,67,110,0.1);
  image-rendering: pixelated;
  border-radius: 4px;
}

#snksc {
  color: var(--accent);
  font-size: 13px;
  margin: 7px 0;
  font-weight: 600;
}

/* ── typing ── */
#typwrap {
  display: none;
  flex-direction: column;
  padding: 14px;
  flex: 1;
  gap: 10px;
  background: var(--win-bg);
}

#typprompt {
  background: #fff0f5;
  border: 1px solid var(--win-border);
  border-radius: 6px;
  padding: 12px;
  font-size: 13.5px;
  line-height: 1.85;
  min-height: 70px;
  color: var(--dim);
  letter-spacing: .3px;
}

.tcok  { color: var(--accent); font-weight: 600; }
.tcbad { color: var(--red); background: rgba(192,64,64,0.08); border-radius: 2px; }

#typinp {
  background: #fff5f8;
  border: 1px solid var(--win-border);
  border-radius: 6px;
  padding: 9px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  outline: none;
}

#typinp:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(192,67,110,0.1);
}

#typstats {
  color: var(--dim);
  font-size: 10.5px;
}

#memwrap {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  flex: 1;
  background: var(--win-bg);
}

#memgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 8px 0;
}

.mc {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(255,255,255,0.6);
  border: 1.5px solid var(--win-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  transition: all .25s;
  user-select: none;
}

.mc.flipped,
.mc.matched {
  background: rgba(192,67,110,0.08);
  border-color: var(--accent);
}

.mc.matched {
  opacity: .45;
  pointer-events: none;
}

#memsc {
  color: var(--accent);
  font-size: 12.5px;
  margin: 5px 0;
  font-weight: 600;
}

#wc {
  width: 480px;
  height: 410px;
  top: 80px;
  left: 520px;
}

#cambody {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  gap: 10px;
  overflow: hidden;
  background: var(--win-bg);
}

#campreview {
  width: 100%;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f0d8e8;
  border: 1.5px solid var(--win-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#camvid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 6px;
}

#camcv { display: none; }

#camoverlay {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  pointer-events: none;
  border: 1.5px solid rgba(192,67,110,0.3);
  transition: background .13s;
}

#camoverlay::before,
#camoverlay::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent);
  border-style: solid;
}

#camoverlay::before {
  top: 8px; left: 8px;
  border-width: 2px 0 0 2px;
  border-radius: 3px 0 0 0;
}

#camoverlay::after {
  bottom: 8px; right: 8px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 3px 0;
}

#camno {
  color: var(--dim);
  font-size: 12px;
  text-align: center;
  padding: 20px;
  line-height: 1.8;
}

#camfoot {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-shrink: 0;
}

#camshoot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 38%, #f5cce2 100%);
  border: 3px solid var(--accent);
  cursor: pointer;
  transition: all .18s;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(192,67,110,0.2);
  display: none;
}

#camshoot:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(192,67,110,0.35);
}

#camfiltlbl {
  font-size: 10.5px;
  color: var(--text2);
  display: none;
}

#camfilt {
  background: #fff5f8;
  border: 1px solid var(--win-border);
  color: var(--text);
  font-family: var(--mono);
  font-size: 10.5px;
  padding: 4px 7px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  display: none;
}

#camshots {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
  padding-bottom: 2px;
  flex-shrink: 0;
  min-height: 0;
}

.cthumb {
  width: 52px;
  height: 42px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--win-border);
  cursor: pointer;
  transition: border-color .15s;
}

#ctxmenu {
  position: fixed;
  display: none;
  z-index: 99998;
  background: var(--win-bg);
  border: 1px solid var(--win-border);
  border-radius: 8px;
  padding: 5px 0;
  min-width: 170px;
  box-shadow: 0 4px 20px rgba(192,67,110,0.15);
  font-size: 11.5px;
}

.ctxitem {
  padding: 7px 14px;
  cursor: pointer;
  color: var(--text);
  transition: background .12s;
}

.ctxitem:hover {
  background: rgba(192,67,110,0.09);
  color: var(--accent);
}

.ctx-sep {
  height: 1px;
  background: var(--bg3);
  margin: 4px 0;
}


#folderdlg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(220,160,190,0.25);
  align-items: center;
  justify-content: center;
}

#folderdlg.shown {
  display: flex;
}

#folderdlg-box {
  background: var(--win-bg);
  border: 1px solid var(--win-border);
  border-radius: 10px;
  padding: 20px 24px;
  width: 280px;
  box-shadow: 0 8px 32px rgba(192,67,110,0.15);
}

#folderdlg-title {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

#folderdlg-inp {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--win-border);
  border-radius: 6px;
  background: #fff5f8;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  outline: none;
  margin-bottom: 12px;
}

#folderdlg-inp:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(192,67,110,0.1);
}

#folderdlg-btns {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

#folderdlg-btns button {
  padding: 5px 16px;
  font-family: var(--mono);
  font-size: 11px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid var(--win-border);
  background: rgba(255,255,255,0.6);
  color: var(--text);
  transition: all .15s;
}

#folderdlg-btns button:first-child {
  background: rgba(192,67,110,0.1);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

#folderdlg-btns button:hover {
  filter: brightness(0.92);
}

.desk-folder {
  position: absolute;
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 4px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background .18s;
}

.desk-folder:hover {
  background: rgba(192,67,110,0.1);
}

.desk-folder .ico {
  font-size: 30px;
  margin-bottom: 4px;
}

.desk-folder .lbl {
  font-size: 9.5px;
  color: var(--text);
  text-align: center;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
  line-height: 1.3;
  font-weight: 500;
  word-break: break-all;
}

#wnp {
  width: 580px;
  height: 460px;
  top: 90px;
  left: 200px;
}

#np-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: var(--bg1);
  border-bottom: 1px solid var(--win-border);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.np-btn {
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid var(--win-border);
  background: rgba(255,255,255,0.6);
  color: var(--text);
  transition: all .15s;
}

.np-btn:hover {
  background: rgba(192,67,110,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.np-sep {
  width: 1px;
  height: 18px;
  background: var(--bg3);
  margin: 0 3px;
}

#np-wordcount {
  margin-left: auto;
  font-size: 10px;
  color: var(--dim);
}

#np-body {
  flex: 1;
  padding: 14px 16px;
  outline: none;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  background: #fffafc;
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
  white-space: pre-wrap;
  word-break: break-word;
}

#np-body:empty::before {
  content: attr(data-placeholder);
  color: var(--dim);
  pointer-events: none;
}

#wbook {
  width: 720px;
  height: 520px;
  top: 60px;
  left: 180px;
}

#book-inner {
  flex: 1;
  display: flex;
  overflow: hidden;
  min-height: 0;
}

#book-sidebar {
  width: 175px;
  flex-shrink: 0;
  border-right: 1px solid var(--win-border);
  background: var(--bg1);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
  padding: 8px 0;
}

.book-ch-item {
  padding: 8px 14px;
  font-size: 10.5px;
  color: var(--text2);
  cursor: pointer;
  transition: all .15s;
  border-left: 2px solid transparent;
  line-height: 1.4;
}

.book-ch-item:hover {
  background: rgba(192,67,110,0.07);
  color: var(--accent);
}

.book-ch-item.active {
  background: rgba(192,67,110,0.1);
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}

#book-content {
  flex: 1;
  overflow-y: auto;
  background: #fffafc;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
  min-height: 0;
}

#book-all-chapters {
  padding: 6px 0 24px;
}

.book-section {
  padding: 18px 22px 10px;
  border-bottom: 1px solid var(--bg3);
}

.book-section:last-child {
  border-bottom: none;
}

.book-section-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(192,67,110,0.15);
  display: flex;
  align-items: center;
  gap: 7px;
}

.book-section-num {
  font-size: 10px;
  color: var(--dim);
  background: rgba(192,67,110,0.08);
  border-radius: 3px;
  padding: 1px 6px;
  font-weight: 400;
}

.book-section-body {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text);
  white-space: pre-wrap;
  font-family: var(--mono);
  display: block;
  width: 100%;
  word-break: break-word;
  margin-top: 4px;
}