/* 스크린라이프 데스크톱 — docs/07 UI 화면정의서.
   오리지널 가상 OS 셸(macOS 아님) · CRT 스캔라인 · 작업표시줄 · 데스크톱 아이콘.
   --v-sidebar는 어디서도 참조되지 않는 기존 미사용 변수 — 이번 작업과 무관해 그대로 둔다. */

:root {
  --bg: #0e1218; --win: #1c212b; --bar: #20252f; --line: #32394680;
  --tx: #e8ebf0; --dim: #8b97a6; --acc: #5b9dd9; --ok: #5fc97f; --no: #e05f6a; --warn: #e0a94f;
  --mono: 'SF Mono', Consolas, 'D2Coding', ui-monospace, monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Pretendard', 'Apple SD Gothic Neo', system-ui, sans-serif;

  /* ── 셸 실측값 ── */
  --wall-img: none;
  --accent: #5a9c92; --accent-hi: #7bbdb2;
  --v-window: rgba(30,32,38,.88); --v-titlebar: rgba(38,40,46,.86); --v-taskbar: rgba(16,18,23,.86);
  --v-sidebar: rgba(255,255,255,.045); --v-panel: rgba(50,50,54,.80);
  --hair: rgba(255,255,255,.13); --sep: rgba(255,255,255,.115);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; background: #000; color: var(--tx);
  font-family: var(--sans); user-select: none; }
#screen { position: fixed; inset: 0; background: radial-gradient(ellipse at 30% 20%, #1c2836, #0b0f15 70%); overflow: hidden; }
#screen::after { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 999;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.13) 0, transparent 2px, transparent 3px);
  opacity: .5; animation: scanGlitch 9s linear infinite; }
@keyframes scanGlitch {
  0%, 93%, 100% { opacity: .5; transform: translateY(0); }
  94% { opacity: .8; transform: translateY(1px); }
  95% { opacity: .3; transform: translateY(-2px); }
  96% { opacity: .65; transform: translateY(0); }
}

/* ── 콜드 오픈 ── */
#cold { position: fixed; inset: 0; z-index: 900; background: #000; display: flex;
  align-items: center; justify-content: center; flex-direction: column; padding: 24px; }
.call { width: min(330px, 90vw); background: #14181f; border: 1px solid #2a323d; border-radius: 14px;
  padding: 16px 18px; margin-bottom: 10px; opacity: 0; transform: translateY(14px);
  transition: .55s cubic-bezier(.2,.9,.3,1.2); }
.call.on { opacity: 1; transform: none; }
.call .t { font-size: 11px; color: var(--dim); font-family: var(--mono); margin-bottom: 4px; }
.call .n { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.call .s { font-size: 12.5px; color: var(--no); }
#coldTx { margin-top: 26px; font-size: 15px; color: #9fb0c2; text-align: center; line-height: 2; opacity: 0; transition: 1s; }
#coldTx.on { opacity: 1; }
#coldBtn { margin-top: 22px; opacity: 0; transition: .8s; }
#coldBtn.on { opacity: 1; }

/* ── 로그인 (실사 macOS 잠금화면) ── */
#login { position: fixed; inset: 0; z-index: 800; display: none; overflow: hidden; }
#loginWall { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: #0a1119; }
#loginWall svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#loginWall { background-image: var(--wall-img); background-size: cover; background-position: center;
  filter: brightness(.78); }
#loginWall.hasimg svg { display: none; }
#login::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 42%); }

.lockTop { position: absolute; top: 10.5vh; left: 0; right: 0; text-align: center; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.lockDate { font-size: 21px; font-weight: 500; letter-spacing: -.2px; margin-bottom: -6px; }
.lockTime { font-size: 96px; font-weight: 250; letter-spacing: -3px; line-height: 1.08; font-variant-numeric: tabular-nums; }

.lockUser { position: absolute; left: 50%; bottom: 5vh; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; width: min(300px, 90vw); }
#login .av { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin-bottom: 9px;
  box-shadow: 0 3px 14px rgba(0,0,0,.4), inset 0 0 0 .5px rgba(255,255,255,.25); }
#login .av svg { display: block; width: 100%; height: 100%; }
#login .who { font-size: 15px; font-weight: 500; letter-spacing: .3px; margin-bottom: 12px; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
#loginTimer { font-family: var(--mono); font-size: 12px; color: #f09098; margin-bottom: 10px; }
.pwRow { display: flex; align-items: center; gap: 8px; }
.hintBtn { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.24); backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 .5px rgba(255,255,255,.34);
  color: #fff; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center;
  cursor: pointer; }
.hintBtn:hover { background: rgba(255,255,255,.36); }
.pw { position: relative; width: 198px; height: 29px; }
.pw input { width: 100%; height: 100%; border-radius: 15px; border: none; outline: none;
  background: rgba(255,255,255,.24); backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 .5px rgba(255,255,255,.34);
  color: #fff; font-family: var(--sans); font-size: 13px; padding: 0 32px 0 13px;
  letter-spacing: 3px; cursor: text; }
.pw input::placeholder { color: rgba(255,255,255,.6); letter-spacing: 0; }
.pw .go { position: absolute; right: 3px; top: 3px; width: 23px; height: 23px; border-radius: 50%;
  background: rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s; }
.pw .go:hover { background: rgba(255,255,255,.5); }
.pw.shake { animation: shake .4s; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-9px); }
  40% { transform: translateX(9px); } 60% { transform: translateX(-6px); } 80% { transform: translateX(6px); } }
#pinMsg { font-size: 12px; color: rgba(255,255,255,.75); min-height: 18px; margin-top: 10px; text-shadow: 0 1px 4px rgba(0,0,0,.6); text-align: center; }
#pinMsg.e { color: #ff9d9d; }

/* ── 폴라로이드 뒤집기 ── */
.flip3d { perspective: 800px; height: 118px; }
.flip3d .inner3d { position: relative; width: 100%; height: 100%;
  transition: transform .6s; transform-style: preserve-3d; }
.item.on .inner3d { transform: rotateY(180deg); }
.face3d { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 6px; overflow: hidden; }
.face3d.back { transform: rotateY(180deg); display: flex; align-items: center; justify-content: center;
  background: #e9e4d6; padding: 10px; text-align: center; }
.f3cap { position: absolute; bottom: 4px; left: 0; right: 0; text-align: center; font-size: 12px;
  color: #6a6558; font-family: cursive, var(--sans); }
.f3back { font-family: cursive, var(--sans); font-size: 15px; line-height: 1.5; color: #23282f; }

/* ── 산책로 다이어리(비밀번호 미로) ── */
.walkbox { background: #e9e4d6; border-radius: 8px; padding: 10px 12px 4px; margin-top: 4px; }
.walkbox .art { background: transparent; touch-action: none; cursor: crosshair; }
.walkbox .ds { font-size: 11px; color: #6a6558; line-height: 1.6; padding: 6px 2px 10px; }
.vine { fill: none; stroke: #26262e; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.vine.decoy { stroke: #55524a; stroke-width: 2.3; }
.vine.curl { stroke-width: 2; }
.doodle { stroke: #26262e; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.doodle.pencil { stroke: #9a9588; stroke-width: 1.7; }
.walkcap { font-size: 11px; fill: #7c7666; }
.walkdigit { font-family: cursive, var(--sans); font-size: 16px; fill: #8b8677; transition: fill .25s; }
.walkdigit.hit { fill: #b5443c; font-size: 19px; font-weight: bold; }

/* ── 책상 — Preview.app 창 안에서 물건을 직접 클릭하는 장면 ── */
.dTop { display: flex; justify-content: center; align-items: flex-start;
  gap: 5%; flex-wrap: wrap; margin-bottom: 18px; }
.dObj { position: relative; display: flex; flex-direction: column; align-items: stretch;
  cursor: pointer; filter: drop-shadow(0 10px 22px rgba(0,0,0,.4)); transition: transform .15s, filter .15s; }
.dObj:hover { transform: scale(1.045); filter: drop-shadow(0 12px 28px rgba(0,0,0,.5)); }
.dObj .dCap { margin-top: 7px; font-size: 10.5px; color: var(--dim); text-align: center; line-height: 1.4; }
.dObj .dCap b { display: block; font-size: 11.5px; color: var(--tx); margin-bottom: 2px; }
.dWalk .walkbox { width: 100%; }
.dWalk .dCap { margin-top: 6px; font-size: 10.5px; color: var(--dim); text-align: center; }
.dWalk .dCap b { display: block; font-size: 11.5px; color: var(--tx); margin-bottom: 2px; }
#walkTrail { fill: none; stroke: #111; stroke-width: 3.2; stroke-linecap: round; opacity: .9; }

/* ── 데스크톱 ── */
#desk { position: absolute; inset: 0; display: none; }
#wall { position: absolute; inset: 0; overflow: hidden; background: #0a1119;
  background-image: var(--wall-img); background-size: cover; background-position: center; }
#wall svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#wall.hasimg svg { display: none; }
#wall::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, transparent 14%, transparent 70%, rgba(0,0,0,.55) 100%); }
.wallart { border-radius: 0 !important; background: none !important; }

/* ── 작업표시줄 — 화면 최하단, macOS 메뉴바 자리를 대신한다 ── */
#taskbar { position: absolute; left: 0; right: 0; bottom: 0; height: 40px; z-index: 520; display: flex;
  align-items: center; gap: 2px; padding: 0 8px; background: var(--v-taskbar);
  backdrop-filter: blur(24px); border-top: .5px solid rgba(255,255,255,.09); font-size: 13px; color: #eceef2; }
.tbStart { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; opacity: .8; }
#taskbarWins { flex: 1; display: flex; align-items: center; gap: 6px; min-width: 0; overflow-x: auto; height: 100%; }
.tbWin { flex-shrink: 0; max-width: 160px; padding: 0 12px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; font-size: 12.5px; color: #c7cad2; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; cursor: pointer; background: rgba(255,255,255,.05); }
.tbWin:hover { background: rgba(255,255,255,.1); }
.tbWin.act { background: rgba(90,156,146,.28); color: #eafaf6; box-shadow: inset 0 0 0 .5px rgba(122,189,178,.5); }
.tbRight { display: flex; align-items: center; gap: 14px; padding: 0 6px 0 10px; flex-shrink: 0; }
#signal { font-size: 11px; color: var(--warn); font-family: var(--mono); }
#deadline { display: flex; align-items: center; gap: 4px; font-size: 11px; font-variant-numeric: tabular-nums; }
#deadline.warn { color: #ff5f57; animation: pulse 1s infinite; }
@keyframes pulse { 50% { opacity: .45; } }
#clock { font-size: 13px; font-variant-numeric: tabular-nums; letter-spacing: -.1px; color: #eceef2; }

/* ── 데스크톱 아이콘 — Dock 대신 화면에 직접 놓는다 ── */
#deskIcons { position: absolute; top: 16px; left: 14px; z-index: 5; display: flex; flex-direction: column; gap: 2px; }
#trashIcon { position: absolute; right: 16px; bottom: 52px; z-index: 5; }
.deskIcon { width: 74px; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 5px 2px; border-radius: 6px; cursor: pointer; }
.deskIcon:hover { background: rgba(255,255,255,.07); }
.deskIcon svg { width: 40px; height: 40px; display: block;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.3)) drop-shadow(0 3px 8px rgba(0,0,0,.4)); }
.deskIcon span { font-size: 11px; color: #eef0f4; text-align: center; line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 0 7px rgba(0,0,0,.55); }

/* ── 창 ── */
.w { position: absolute; border-radius: 10px; background: var(--v-window);
  backdrop-filter: blur(44px) saturate(175%);
  box-shadow: 0 0 0 .5px rgba(0,0,0,.55), inset 0 0 0 .5px rgba(255,255,255,.10),
    0 28px 78px rgba(0,0,0,.56), 0 4px 14px rgba(0,0,0,.34);
  display: none; flex-direction: column; overflow: hidden; z-index: 10; }
.w.on { display: flex; animation: wopen .13s cubic-bezier(.24,.9,.32,1.02); }
.w.on:not(.blur) { outline: 1px solid rgba(90,156,146,.4); outline-offset: -1px; }
@keyframes wopen { from { opacity: 0; transform: scale(.94); } }
.w.min { animation: wmin .42s cubic-bezier(.4,0,.7,.5) forwards; }
@keyframes wmin { to { opacity: 0; transform: scale(.06) translateY(60vh) skewX(14deg); } }
.wt { height: 28px; flex-shrink: 0; position: relative; display: flex; align-items: center;
  padding: 0 8px 0 12px; gap: 8px; background: var(--v-titlebar); border-bottom: .5px solid rgba(0,0,0,.34);
  border-radius: 10px 10px 0 0; cursor: move; }
.wt .ti { flex: 1; min-width: 0; font-size: 13px; font-weight: 600;
  color: #dfe1e5; letter-spacing: -.1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  pointer-events: none; }
.w.blur .wt .ti { color: #8b8d93; }
.wt .wc { display: flex; gap: 4px; z-index: 3; flex-shrink: 0; }
.wt .wc span { width: 22px; height: 20px; border-radius: 4px; flex-shrink: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 12px; line-height: 1;
  color: #aeb1b8; background: rgba(255,255,255,.05); }
.wt .wc span:hover { background: rgba(255,255,255,.16); color: #f0f1f4; }
.wt .wc .wc-close:hover { background: rgba(224,95,106,.3); color: #ffb3b3; }
.w.blur .wt .wc span { color: #5c5e64; }
.wb { flex: 1; min-height: 0; overflow: auto; padding: 13px 15px; font-size: 13px; line-height: 1.75; user-select: text; }
.wb.pad0 { padding: 0; display: flex; flex-direction: column; }

/* 8방향 리사이즈 핸들 */
.rz { position: absolute; z-index: 4; }
.rz.n { top: -3px; left: 8px; right: 8px; height: 6px; cursor: ns-resize; }
.rz.s { bottom: -3px; left: 8px; right: 8px; height: 6px; cursor: ns-resize; }
.rz.w { left: -3px; top: 8px; bottom: 8px; width: 6px; cursor: ew-resize; }
.rz.e { right: -3px; top: 8px; bottom: 8px; width: 6px; cursor: ew-resize; }
.rz.nw { top: -3px; left: -3px; width: 12px; height: 12px; cursor: nwse-resize; }
.rz.ne { top: -3px; right: -3px; width: 12px; height: 12px; cursor: nesw-resize; }
.rz.sw { bottom: -3px; left: -3px; width: 12px; height: 12px; cursor: nesw-resize; }
.rz.se { bottom: -3px; right: -3px; width: 12px; height: 12px; cursor: nwse-resize; }

/* ── 오버레이 스크롤바 — 평소 숨어 있다가 스크롤할 때만 뜬다 ── */
.scr { scrollbar-width: thin; scrollbar-color: transparent transparent; }
.scr::-webkit-scrollbar { width: 10px; height: 10px; }
.scr::-webkit-scrollbar-track { background: transparent; }
.scr::-webkit-scrollbar-thumb { background: transparent; border-radius: 10px;
  border: 3px solid transparent; background-clip: content-box; transition: background .2s; }
.scr.act::-webkit-scrollbar-thumb { background: rgba(255,255,255,.26); background-clip: content-box; }
.scr.act::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.42); background-clip: content-box; }

#guide { position: absolute; left: 12px; bottom: 12px; z-index: 100; font-size: 11.5px;
  color: rgba(255,255,255,.4); line-height: 1.85; pointer-events: none; }
#guide kbd { font-family: var(--mono); background: rgba(255,255,255,.12); border-radius: 3px; padding: 1px 6px; font-size: 10.5px; }

/* ── 메신저 ── */
.msg-split { display: flex; height: 100%; min-height: 0; }
.mlist { width: 150px; border-right: 1px solid var(--line); overflow: auto; padding: 6px 0; flex-shrink: 0; }
.mrow { display: flex; gap: 9px; padding: 8px 10px; border-radius: 7px; cursor: pointer; align-items: center; margin: 0 5px; }
.mrow:hover { background: rgba(120,170,220,.1); }
.mrow.act { background: rgba(91,157,217,.16); }
.mrow.dis { opacity: .35; cursor: default; }
.mav { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.mrow .nm { font-size: 12.5px; font-weight: 700; }
.mrow .st { font-size: 10px; color: var(--dim); }
.mrow .st.on { color: var(--ok); }
.msg-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.chat { flex: 1; overflow: auto; display: flex; flex-direction: column; gap: 9px; padding: 12px 14px; }
.bub { max-width: 78%; padding: 8px 12px; border-radius: 13px; font-size: 13px; line-height: 1.7;
  word-break: break-word; white-space: pre-wrap; position: relative; user-select: text; }
.bub.me { align-self: flex-end; background: #2f5f8c; border-bottom-right-radius: 4px; }
.bub.you { align-self: flex-start; background: #28303a; border-bottom-left-radius: 4px; }
.bub.sys { align-self: center; background: none; color: var(--dim); font-size: 11.5px; padding: 3px; text-align: center; }
.bub .tools { position: absolute; right: 6px; bottom: -22px; display: none; gap: 6px; }
.bub:hover .tools { display: flex; }
.bub .tools button { padding: 3px 8px; font-size: 10.5px; border-radius: 5px; }
.typing { align-self: flex-start; color: var(--dim); font-size: 12px; padding: 5px 11px; }
.cin { display: flex; gap: 7px; padding: 9px; border-top: 1px solid var(--line); flex-shrink: 0; }
.cin button { padding: 9px 14px; font-size: 12.5px; }
.msgInWrap { position: relative; flex: 1; min-width: 0; }
.msgInWrap input { width: 100%; background: #0f141b; border: 1px solid #2f3a47; border-radius: 18px;
  color: var(--tx); padding: 9px 38px 9px 14px; font-size: 13px; font-family: var(--sans); }
.msgInWrap input:focus { outline: none; border-color: var(--acc); }
.msgInWrap input:disabled { opacity: .4; }
.msgSend { position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: var(--acc);
  display: flex; align-items: center; justify-content: center; cursor: pointer; }
.msgSend.dis { background: #3a4552; cursor: default; }

/* ── 파일·목록 ── */
.frow { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 6px; cursor: pointer; }
.frow:hover { background: rgba(120,170,220,.1); }
.frow .fi { font-size: 18px; width: 24px; text-align: center; }
.frow .fn { flex: 1; font-size: 12.5px; }
.frow .fd { font-size: 11px; color: var(--dim); font-family: var(--mono); }
.frow.got { background: rgba(95,201,127,.1); }
.frow.gone { opacity: .22; text-decoration: line-through; pointer-events: none; }
.frow.vanishing { animation: vanish 1.6s forwards; }
@keyframes vanish { 40% { filter: grayscale(1); opacity: .5; } 100% { filter: grayscale(1); opacity: .12; text-decoration: line-through; } }

h3.sec { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 1px;
  margin: 14px 0 6px; font-weight: 700; }
h3.sec:first-child { margin-top: 0; }
.hint { font-size: 11.5px; color: var(--dim); line-height: 1.7; }
.kv { display: flex; gap: 8px; font-size: 12px; padding: 4px 0; border-bottom: 1px solid var(--line); }
.kv b { color: var(--dim); font-weight: 500; min-width: 74px; }

/* ── 나란히 보기 ── */
.side { display: flex; gap: 10px; }
.side > div { flex: 1; background: #151b23; border: 1px solid var(--line); border-radius: 8px; padding: 10px; font-size: 12px; }
.side .hd { font-size: 10.5px; color: var(--dim); margin-bottom: 6px; }
.pick { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0; }
.pick button { padding: 5px 10px; font-size: 11.5px; border-radius: 6px; }
.pick button.sel { background: var(--acc); }

/* ── 공통 ── */
button { background: #2f5f8c; color: #fff; border: 0; border-radius: 7px; padding: 8px 15px;
  font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: var(--sans); }
button:hover { filter: brightness(1.16); }
button:disabled { opacity: .35; cursor: default; }
button.g { background: transparent; border: 1px solid #3d5570; color: var(--acc); }
button.r { background: #8c3540; }
input[type=text], textarea { background: #0f141b; border: 1px solid #2f3a47; border-radius: 7px;
  color: var(--tx); padding: 8px 11px; font-size: 12.5px; font-family: var(--sans); width: 100%; }
input:focus, textarea:focus { outline: none; border-color: var(--acc); }
textarea { resize: vertical; min-height: 120px; line-height: 1.8; user-select: text; }

/* ── 알림 ── */
#toasts { position: absolute; top: 31px; right: 11px; z-index: 540; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.ts { background: var(--v-panel); backdrop-filter: blur(38px) saturate(185%);
  border-left: 3px solid var(--acc); border-radius: 15px; padding: 11px 15px; width: 320px;
  font-size: 12.5px; line-height: 1.65; animation: nin .42s cubic-bezier(.18,.9,.3,1.15);
  box-shadow: inset 0 0 0 .5px rgba(255,255,255,.16), 0 11px 36px rgba(0,0,0,.46); cursor: pointer; }
.ts.out { animation: nout .34s ease-in forwards; }
.ts.no { border-left-color: var(--no); } .ts.ok { border-left-color: var(--ok); }
.ts.warn { border-left-color: var(--warn); }
.ts b { display: block; font-size: 11px; color: var(--dim); margin-bottom: 3px; font-weight: 600; }
@keyframes nin { from { opacity: 0; transform: translateX(370px); } }
@keyframes nout { to { opacity: 0; transform: translateX(370px); } }

/* ── 캡처 버튼 — 작업표시줄 우측 트레이 안 ── */
#capBtn { width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; background: rgba(90,156,146,.22); border: 1px solid rgba(122,189,178,.5);
  display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; }
#capBtn.dis { opacity: .25; cursor: default; border-color: #39424f; background: rgba(255,255,255,.04); }

/* ── 오버레이 ── */
/* 로그인(800)보다 위여야 한다 — 아래에 두면 '책상을 본다'가 로그인 화면 뒤에서 열려 안 보인다. */
.ov { position: fixed; inset: 0; z-index: 850; background: rgba(4,7,11,.88); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px; }
.ov.on { display: flex; }
.bx { background: var(--win); border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px;
  width: min(620px, 94vw); max-height: 86vh; overflow: auto; user-select: text; }
.bx h1 { font-size: 22px; margin-bottom: 6px; }
.bx h2 { font-size: 16px; margin-bottom: 10px; }
.bx .tag { font-size: 12px; color: var(--dim); margin-bottom: 16px; }
.beat { font-size: 13px; line-height: 1.95; margin-bottom: 8px; }
.beat.dir { color: var(--dim); font-size: 12px; font-style: italic; }
.beat.card { color: var(--warn); font-weight: 700; text-align: center; margin: 16px 0; font-size: 15px; }
.beat.line { color: var(--tx); }

/* ── 시각 자산 ── */
.art { width: 100%; height: auto; border-radius: 8px; display: block; background: #131a22; }
.artbox { margin: 8px 0 12px; }
.artbox .cap { font-size: 11px; color: var(--dim); margin-top: 5px; }

.post { background: #151b23; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.post-hd { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.post-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(145deg, #4a6a8c, #28384a); }
.post-hd b { font-size: 12.5px; display: block; }
.post-hd span { font-size: 10.5px; color: var(--dim); }
.post-body { padding: 14px 14px 16px; font-size: 13.5px; line-height: 2.05; white-space: pre-wrap; }
.post-ft { padding: 8px 12px; border-top: 1px solid var(--line); font-size: 10.5px; color: var(--dim); }

.receipt { background: #141a21; border: 1px solid var(--line); border-radius: 9px; font-family: var(--mono); }
.receipt .r-hd { padding: 9px 12px; border-bottom: 1px dashed #2d3743; font-size: 11px; color: var(--dim); }
.receipt .r-row { display: flex; gap: 10px; padding: 8px 12px; font-size: 12px; border-bottom: 1px solid #1e2630; }
.receipt .r-row span:first-child { width: 46px; color: var(--dim); }
.receipt .r-row span:nth-child(2) { flex: 1; }
.receipt .r-row b.out { color: #e08b93; } .receipt .r-row b.in { color: #86c99a; }
.receipt .r-ft { padding: 8px 12px; font-size: 10.5px; color: var(--warn); }

/* 단서 수첩 */
.clue { display: flex; gap: 10px; align-items: flex-start; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.clue .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); margin-top: 6px; flex-shrink: 0; }
.clue .t { font-size: 12.5px; }
.clue .w { font-size: 11px; color: var(--dim); }

/* ── 목표 · 힌트 (스티커 메모/Stickies) ── */
.w.sticky { background: #fdf5a8; box-shadow: 0 0 0 .5px rgba(0,0,0,.3), 0 14px 34px rgba(0,0,0,.4); }
.w.sticky .wt { height: 20px; background: transparent; border-bottom: none; padding: 0 8px; }
.w.sticky .wc span { color: rgba(0,0,0,.4); background: rgba(0,0,0,.06); }
.w.sticky .wc span:hover { background: rgba(0,0,0,.14); color: rgba(0,0,0,.6); }
.w.sticky .ti { display: none; }
.sticky-body { padding: 6px 14px 14px; color: #3a3420; font-size: 12.5px; line-height: 1.6; user-select: text; }
.qGoal { font-size: 14px; font-weight: 700; }
.qWhy { font-size: 11.5px; color: #6b6340; line-height: 1.6; margin-top: 4px; }
.qHints { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.qHintLine { font-size: 11.5px; color: #4a4526; line-height: 1.55; }
.qMore { display: inline-block; margin-top: 8px; font-size: 11px; color: #7a5a1f; cursor: pointer; text-decoration: underline; }

/* ── 막 인트로 카드 ── */
#chapter { position: fixed; inset: 0; z-index: 880; background: #05080c;
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 14px; }
#chapter.on { display: flex; }
#chapter .no { font-size: 11px; letter-spacing: 4px; color: var(--dim); }
#chapter .ti { font-size: 30px; font-weight: 800; letter-spacing: -.5px; }
#chapter .pu { font-size: 14px; color: #9fb0c2; line-height: 1.9; text-align: center; }
#chapter .mt { font-family: var(--mono); font-size: 12px; color: var(--warn);
  border: 1px solid rgba(224,169,79,.35); border-radius: 20px; padding: 6px 16px; margin-top: 6px; }
#chapter > * { opacity: 0; transform: translateY(10px); animation: cin .7s forwards; }
#chapter .ti { animation-delay: .15s } #chapter .pu { animation-delay: .35s } #chapter .mt { animation-delay: .55s }
@keyframes cin { to { opacity: 1; transform: none } }

/* ── 난이도 ── */
#diff { display: flex; gap: 10px; margin-top: 18px; }
#diff button { padding: 10px 16px; font-size: 12.5px; }
#diff .d { font-size: 10.5px; color: var(--dim); margin-top: 3px; font-weight: 400; }

/* 종이·기사 */
.paper { background: #f0ece1; color: #23282f; border-radius: 8px; padding: 14px 16px; }
.paper .ph { font-size: 10px; color: #7d7565; letter-spacing: 1px; margin-bottom: 6px; }
.paper .pt { font-size: 16px; font-weight: 800; line-height: 1.5; margin-bottom: 9px; }
.paper .pb { font-size: 12.5px; line-height: 1.95; white-space: pre-line; }
.paper b { background: #ffe9a8; padding: 0 3px; border-radius: 2px; }

/* 증거 열람 */
#viewer .bx { width: min(560px, 94vw); }
#viewer .vname { font-size: 17px; font-weight: 800; margin-bottom: 3px; }
#viewer .vwhere { font-size: 11.5px; color: var(--dim); margin-bottom: 14px; }
.clue.click { cursor: pointer; } .clue.click:hover { background: rgba(120,170,220,.08); }

/* 막 완료 안내 */
#done { position: absolute; left: 50%; bottom: 84px; transform: translateX(-50%); z-index: 47;
  display: none; align-items: center; gap: 12px; padding: 11px 16px; border-radius: 12px;
  background: rgba(22,28,36,.96); border: 1px solid rgba(95,201,127,.45);
  box-shadow: 0 10px 30px rgba(0,0,0,.5); }
#done.on { display: flex; }
#done .t { font-size: 12.5px; line-height: 1.6; }
#done .t b { color: var(--ok); display: block; font-size: 13.5px; margin-bottom: 2px; }

/* 예전 대화 — 오늘 것과 구분한다 */
.bub.old { opacity: .48; }
.bub.old.me { background: #2a4763; }
.bub.old.you { background: #232a33; }

/* 이미 본 것 — 「서치」식으로 전부 보이므로, 무엇을 봤는지만 표시한다 */
.frow.seen .fn { color: #8b94a3; }
.frow.seen button.g { opacity: .7; }

/* 부계정 자물쇠 — 주소를 알아낸 것과 문을 여는 것은 다르다 */
.pwline { width: 120px; padding: 6px 9px; margin-right: 6px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(0,0,0,.28); color: #e8ecf3;
  font: inherit; letter-spacing: 2px; text-align: center; }
.pwline:disabled { opacity: .45; letter-spacing: 0; }

/* ═══════ 브라우저 — 예나의 계정으로 로그인된 채 열려 있던 창 ═══════ */
.br { display: flex; flex-direction: column; height: 100%; background: #14181f; }
.brtabs { display: flex; align-items: flex-end; gap: 2px; padding: 6px 8px 0; background: #0f1319; }
.brtab { display: flex; align-items: center; gap: 6px; max-width: 210px; padding: 6px 12px;
  font-size: 11.5px; color: var(--dim); border-radius: 7px 7px 0 0; background: #171c24;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brtab.on { background: #232a34; color: var(--tx); }
.brtab .fav { color: var(--acc); font-size: 9px; }
.brtab.add { padding: 6px 10px; cursor: pointer; background: transparent; }
.brtab.add:hover { background: #1b212a; }
.brbar { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: #232a34; }
.brnav { background: transparent; color: var(--dim); border: 0; font-size: 14px; padding: 2px 6px;
  border-radius: 5px; cursor: pointer; }
.brnav:hover { background: rgba(255,255,255,.07); color: var(--tx); }
.brurl { flex: 1; display: flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 14px;
  background: #12161c; font-family: var(--mono); font-size: 11px; color: #9fb0c2; }
.brurl .lock { font-size: 9px; opacity: .8; }
.bracct { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(160deg, #7b6cd9, #5b9dd9); font-size: 10px; font-weight: 600; color: #fff; }
.brbm { display: flex; align-items: center; gap: 3px; padding: 5px 10px; background: #1b212a;
  border-bottom: 1px solid var(--line); overflow-x: auto; }
.brbm::-webkit-scrollbar { height: 0; }
.bmstar { color: var(--warn); font-size: 10px; margin-right: 4px; }
.bm { flex: 0 0 auto; background: transparent; border: 0; color: #b9c4d1; font-size: 11px;
  padding: 4px 8px; border-radius: 5px; cursor: pointer; white-space: nowrap; }
.bm:hover { background: rgba(255,255,255,.08); color: var(--tx); }
.brbody { flex: 1; overflow-y: auto; padding: 16px 18px 20px; }

.brhome { max-width: 620px; margin: 0 auto; }
.brlogo { text-align: center; font-size: 27px; font-weight: 700; letter-spacing: 5px;
  color: #6f7f92; margin: 14px 0 16px; }
.brsearch { position: relative; display: flex; gap: 7px; }
.brsearch input { flex: 1; padding: 10px 14px; border-radius: 20px; background: #12161c;
  border: 1px solid var(--line); color: var(--tx); font-size: 12.5px; }
.brsearch button { padding: 0 18px; border-radius: 20px; }
.brsug { position: absolute; top: 42px; left: 0; right: 74px; z-index: 5; overflow: hidden;
  background: #1b212a; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.5); }
.brsug .sg { display: flex; align-items: center; gap: 9px; padding: 8px 14px; font-size: 12px; cursor: pointer; }
.brsug .sg:hover { background: rgba(120,170,220,.13); }
.brsug .sgi { color: var(--dim); font-size: 10px; }

.brsec { margin: 20px 0 8px; font-size: 11px; color: var(--dim); letter-spacing: .4px; }
.brnews { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ncard { padding: 10px 12px; border-radius: 8px; background: #191f27; border: 1px solid var(--line);
  cursor: pointer; }
.ncard:hover { background: #1e252f; }
.ncard .nsrc { font-size: 10px; color: var(--dim); margin-bottom: 4px; }
.ncard .ntit { font-size: 12px; line-height: 1.45; }

.serp { max-width: 620px; margin: 0 auto; }
.serp .sq { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.shit { padding: 12px 14px; border-radius: 8px; background: rgba(95,201,127,.08);
  border: 1px solid rgba(95,201,127,.25); }
.shit .su { font-size: 11px; color: var(--ok); font-family: var(--mono); margin-bottom: 5px; }
.shit .st { font-size: 12.5px; line-height: 1.6; }
.snone { padding: 16px 14px; border-radius: 8px; background: #191f27; font-size: 12.5px; line-height: 1.7; }
.hrow { display: flex; gap: 10px; padding: 5px 2px; font-size: 11.5px; color: #9aa6b4;
  border-bottom: 1px solid var(--line); }
.hrow .hw { min-width: 42px; color: var(--dim); font-family: var(--mono); font-size: 10.5px; }

.brdead { max-width: 460px; margin: 40px auto; text-align: center; }
.brdead .dt { font-size: 14px; margin-bottom: 10px; }
.brdead .dl { font-size: 12.5px; color: var(--dim); line-height: 1.9; margin-bottom: 18px; }

/* ═══════ 모먼트 — 사진 SNS. 표계정은 로그인된 채, 부계정은 계정 전환으로 ═══════ */
.ig { display: flex; flex-direction: column; height: 100%; position: relative; background: #14181f; }
.ighd { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px;
  background: #1b212a; border-bottom: 1px solid var(--line); }
.iglogo { font-size: 15px; font-weight: 700; letter-spacing: -.3px;
  background: linear-gradient(120deg, #e0a94f, #e05f6a, #7b6cd9);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.igacct { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: #c3cddb;
  padding: 3px 8px; border-radius: 14px; cursor: pointer; }
.igacct:hover { background: rgba(255,255,255,.07); }
.igcar { font-size: 8px; color: var(--dim); }
.igav { width: 20px; height: 20px; border-radius: 50%; display: inline-block;
  background: linear-gradient(150deg, #e0a94f, #e05f6a); }
.igav.sub { background: linear-gradient(150deg, #4a5568, #2d3748); }
.igbody { flex: 1; overflow-y: auto; padding: 14px 16px 20px; }

.igsheet { position: absolute; top: 44px; right: 12px; z-index: 8; width: 260px; padding: 10px;
  background: #232a34; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.55); }
.igsheet .ish { font-size: 11px; color: var(--dim); padding: 2px 4px 8px; }
.isrow { display: flex; align-items: center; gap: 9px; padding: 7px 6px; border-radius: 8px; }
.isrow.on { background: rgba(120,170,220,.12); }
.isrow .isn { flex: 1; font-size: 12px; }
.isrow .isn span { display: block; font-size: 10px; color: var(--dim); margin-top: 2px; }
.isrow .isck { color: var(--acc); font-size: 12px; }
.islock { padding: 8px 6px 2px; display: flex; flex-wrap: wrap; gap: 6px; }
.islock .pwline { flex: 1; min-width: 110px; }

.igprof { display: flex; align-items: center; gap: 18px; padding: 6px 4px 16px; }
.igpav { width: 68px; height: 68px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(150deg, #e0a94f, #e05f6a, #7b6cd9); }
.igpid { font-size: 15px; margin-bottom: 7px; }
.igpstat { display: flex; gap: 14px; font-size: 11.5px; color: var(--dim); }
.igpstat b { color: var(--tx); font-weight: 600; margin-right: 4px; }
.igpbio { font-size: 11.5px; color: #a9b4c2; margin-top: 7px; }
.igpin { margin-bottom: 10px; }
.igtabs { display: flex; gap: 22px; justify-content: center; padding: 9px 0;
  border-top: 1px solid var(--line); font-size: 11px; color: var(--dim); letter-spacing: 1px; }
.igtabs .on { color: var(--tx); border-top: 1px solid var(--tx); margin-top: -10px; padding-top: 9px; }

.iggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.igcell { position: relative; aspect-ratio: 1; padding: 8px; border-radius: 3px; overflow: hidden;
  background: linear-gradient(150deg, #222833, #1a1f27); display: flex; flex-direction: column; }
.igcell.fri { background: linear-gradient(150deg, #2a2433, #1f1a27); }
.igcell .igcd { font-size: 9.5px; color: var(--dim); font-family: var(--mono); }
.igcell .igct { flex: 1; display: flex; align-items: center; font-size: 11px; line-height: 1.5; color: #c9d3e0; }
.igcell .igcw { font-size: 9px; color: #5c6875; font-family: var(--mono); }

.igbody > * { max-width: 680px; margin-left: auto; margin-right: auto; }
.iglist { display: flex; flex-direction: column; gap: 5px; }
.igax { display: flex; gap: 12px; padding: 0 10px 4px; }
.igaxn { min-width: 52px; }
.igaxt { position: relative; flex: 1; height: 14px; }
.igaxt span { position: absolute; transform: translateX(-50%); font-size: 9.5px; color: #5c6875;
  font-family: var(--mono); }
.igday { display: flex; align-items: flex-start; gap: 12px; padding: 9px 10px; border-radius: 7px; background: #191f27; }
.igday.fri { background: rgba(224,95,106,.09); }
.igday .igdn { min-width: 52px; font-size: 11.5px; color: var(--dim); padding-top: 4px; }
.igtrack { position: relative; flex: 1; min-height: 22px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 25%); border-radius: 3px; }
.ighole { position: absolute; top: -3px; bottom: -3px; border-radius: 4px;
  background: repeating-linear-gradient(135deg, rgba(224,95,106,.16) 0 5px, transparent 5px 10px);
  border: 1px dashed rgba(224,95,106,.4); }
.igt { position: absolute; transform: translateX(-50%); font-family: var(--mono);
  font-size: 10px; padding: 2px 6px; border-radius: 10px; background: #2c3542; color: #cdd7e3;
  white-space: nowrap; }
.igday.fri .igt { background: #3a2b33; }
.igsub { font-size: 11px; color: var(--dim); padding: 2px 0 8px; }

/* ═══════ 사람의 노트북 — 목록은 목록처럼, 사진은 사진처럼 ═══════ */
.lhd { display: grid; grid-template-columns: 26px 1fr 92px; gap: 8px; padding: 5px 10px;
  font-size: 10px; color: #5c6875; border-bottom: 1px solid var(--line); }
.lrow { display: grid; grid-template-columns: 26px 1fr 92px; gap: 8px; align-items: center;
  padding: 8px 10px; border-radius: 5px; cursor: pointer; }
.lrow:hover { background: rgba(120,170,220,.09); }
.lrow .li { font-size: 14px; text-align: center; }
.lrow .ln { font-size: 12.5px; overflow: hidden; text-overflow: ellipsis; }
.lrow .ln em { display: block; font-style: normal; font-size: 10.5px; color: var(--dim); margin-top: 2px; }
.lrow .lm { font-size: 10.5px; color: #5c6875; font-family: var(--mono); text-align: right; }
.lrow.seen .ln { color: #93a0b0; }
.lrow.got { background: rgba(95,201,127,.09); cursor: default; }

.fm { display: flex; height: 100%; }
.fmside { width: 132px; flex: 0 0 auto; padding: 12px 8px; background: #171c24;
  border-right: 1px solid var(--line); }
.fmp { display: flex; align-items: center; gap: 8px; padding: 6px 9px; border-radius: 6px;
  font-size: 11.5px; color: #b9c4d1; cursor: pointer; }
.fmp span { font-size: 12px; }
.fmp:hover { background: rgba(255,255,255,.06); }
.fmp.on { background: rgba(120,170,220,.16); color: var(--tx); }
.fmp.dis { color: #4d5764; cursor: default; }
.fmp.dis:hover { background: transparent; }
.fmsep { height: 1px; background: var(--line); margin: 9px 6px; }
.fmmain { flex: 1; overflow-y: auto; padding: 12px 14px 18px; }
.fmhd { display: flex; align-items: baseline; gap: 10px; font-size: 13px; margin-bottom: 10px; }
.fmnote { font-size: 10.5px; color: var(--dim); }

.ph { display: flex; flex-direction: column; height: 100%; }
.phtabs { display: flex; gap: 4px; padding: 9px 12px; background: #1b212a;
  border-bottom: 1px solid var(--line); }
.phtabs span { padding: 4px 11px; border-radius: 13px; font-size: 11.5px; color: var(--dim); cursor: pointer; }
.phtabs span:hover { background: rgba(255,255,255,.06); }
.phtabs span.on { background: rgba(120,170,220,.18); color: var(--tx); }
.phbody { flex: 1; overflow-y: auto; padding: 14px 16px 20px; }
.phgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 6px; margin-bottom: 14px; }
.phcell { aspect-ratio: 1; border-radius: 6px; overflow: hidden; cursor: pointer;
  background: linear-gradient(150deg, #232a35, #191e26); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px; padding: 8px; }
.phcell:hover { background: linear-gradient(150deg, #2a3240, #1f2530); }
.phcell.seen { opacity: .72; }
.phcell .phimg { font-size: 22px; }
.phcell .phcap { font-size: 10.5px; color: #b9c4d1; text-align: center; line-height: 1.4; }
.phbig { max-width: 520px; margin: 0 auto; }
.phmeta { max-width: 520px; margin: 8px auto 0; font-size: 11.5px; color: var(--dim); text-align: center; }

.crow { display: grid; grid-template-columns: 74px 1fr 20px; gap: 10px; align-items: center;
  padding: 8px 10px; border-radius: 5px; cursor: pointer; font-size: 12px; }
.crow:hover { background: rgba(120,170,220,.09); }
.crow.on { background: rgba(120,170,220,.17); }
.crow .ct { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.crow .cx { color: var(--acc); }
.cbar { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.cbar button[disabled] { opacity: .38; cursor: default; }

/* 파일 미리보기 — 고른 것이 열린 채로 남는다 */
.fmprev { width: 236px; flex: 0 0 auto; padding: 18px 16px; background: #171c24;
  border-left: 1px solid var(--line); overflow-y: auto; }
.fpempty { font-size: 11px; color: #4d5764; text-align: center; margin-top: 46px; line-height: 1.8; }
.fpicon { font-size: 40px; text-align: center; margin-bottom: 10px; }
.fpname { font-size: 12.5px; text-align: center; word-break: break-all; margin-bottom: 14px; }
.fpkv { display: flex; gap: 8px; font-size: 11px; padding: 4px 0; border-bottom: 1px solid var(--line); }
.fpkv b { color: #5c6875; font-weight: 500; min-width: 44px; }
.fpbody { margin-top: 12px; padding: 10px 11px; border-radius: 6px; background: #12161c;
  font-size: 11.5px; line-height: 1.75; color: #c3cddb; white-space: pre-wrap; }
.lrow.sel { background: rgba(120,170,220,.2); }

/* 메일 목록 */
.mrw { display: grid; grid-template-columns: 128px 1fr; gap: 12px; align-items: center;
  padding: 9px 10px; border-radius: 5px; cursor: pointer; border-bottom: 1px solid var(--line); }
.mrw:hover { background: rgba(120,170,220,.09); }
.mrw.sel { background: rgba(120,170,220,.2); }
.mrw .mfrom { font-size: 11.5px; color: var(--dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mrw .msub { font-size: 12.5px; }
.mbody { margin-top: 12px; padding: 14px 16px; border-radius: 8px; background: #12161c;
  font-size: 12.5px; line-height: 1.85; white-space: pre-wrap; }
.mbody .mfrom { font-size: 11px; color: var(--dim); }
.phtabs span.dis { color: #4d5764; cursor: default; }
.phtabs span.dis:hover { background: transparent; }
.phday { font-size: 11px; color: var(--dim); margin-bottom: 8px; }
