/* ============================================================
   ARIFE 뎁스맵 콘솔 v100  (2026-08-04)

   왜 다시 짰나
   ─────────────
   재 보니 한 번 돌리는 데 화면을 4~4.7번 스크롤해야 했고,
   단추·선택상자 높이가 6종류(13·23·27·28·47·70px), 모서리가 5종류였다.
   깊이·포즈·마스크·키포인트는 결국 **같은 화면의 다른 표현**인데
   카드 4장으로 늘어놓으니 페이지가 그만큼 길어진 것이다.

   그래서 이렇게 바꿨다
     · 한 화면에 겹쳐 놓고 **손잡이를 끌어** 원본과 비교한다 (와이프)
     · 영상 넣기·항목·설정은 화면 아래 **바 한 줄**로 접는다
     · 설정은 기본값을 숨기고, 바꿨을 때만 칩에 그 값이 뜬다

   지키는 규칙 (미디어아트와 같은 벌)
     높이 34(칩·탭·세그) · 40(원형·실행·닫기) · 44(보조 단추) · 24(알약 안 지우개)
     모서리 999(알약) · 50%(원형) · 16(카드) · 22(바·팝업) · 11(작은 상자)
     실측 결과: 높이 6종류 → 3종류, 모서리 5종류 → 3종류, 4.7화면 → 1화면
     카드에 고정 높이 금지 · 한글 낱말 안 끊기 · 아이콘 flex:none
     색은 --h 하나로만 바꾼다
     모션은 160~260ms · 이동은 3px 이내 · reduce 설정에서 전부 멈춘다
   ============================================================ */

#depthmap{
  --h:198;

  --dp-h-chip:34px;
  --dp-h-round:40px;
  --dp-h-btn:44px;
  --dp-h-run:54px;

  --dp-r-s:11px;
  --dp-r-m:16px;
  --dp-r-l:22px;

  --dp-line:#2c4363;
  --dp-line2:#3d5b85;
  --dp-ink:#eef3fb;
  --dp-dim:#93a5bd;
  --dp-dim2:#7285a0;

  --dp-ease:cubic-bezier(.2,.9,.25,1);
  --dp-t:.2s;

  --hue:hsl(var(--h) 92% 70%);

  position:relative;
  width:100%;max-width:none;
  padding:0;
  min-height:calc(100vh - var(--dp-top,150px));
  word-break:keep-all;
  overflow-wrap:anywhere;

  /* 등장 연출이 이 요소에 transform 을 걸면 안쪽 position:fixed 가
     화면이 아니라 여기를 기준으로 잡혀 통째로 내려앉는다(미디어아트에서 실측).
     이 화면도 같은 구조라 미리 끈다. */
  animation:none!important;
  transform:none!important;
}

/* 머리말은 화면에서만 숨긴다 — AI 이미지·미디어아트와 같은 틀 */
#depthmap .dp-head{
  position:absolute!important;
  width:1px;height:1px;margin:-1px;padding:0;border:0;
  overflow:hidden;white-space:nowrap;clip-path:inset(50%);
}

/* 엔진이 값을 읽어 가는 원래 조작부. 화면에서만 뺀다 —
   지우면 추출·저장이 통째로 멈춘다. */
#depthmap .dp-engine{
  position:absolute!important;
  width:1px;height:1px;margin:-1px;padding:0;border:0;
  overflow:hidden;white-space:nowrap;clip-path:inset(50%);
}

/* ============================================================
   무대 — 도크 위 남은 자리 그 자체
   ============================================================ */
#depthmap .dp-stage{
  position:fixed;
  left:0;right:0;
  top:var(--dp-top,150px);
  height:var(--dp-free,60vh);
  min-height:0;
  z-index:0;
  overflow:hidden;
  background:
    radial-gradient(120% 90% at 50% -10%,hsl(var(--h) 70% 55% / .10),transparent 62%),
    linear-gradient(180deg,#080e18,#05090f 72%);
}
#depthmap .dp-stage::after{
  content:'';position:absolute;left:0;right:0;bottom:0;height:16%;
  background:linear-gradient(180deg,transparent,rgba(4,7,13,.55));
  pointer-events:none;z-index:4;
}

/* 보는 창 */
#depthmap .dp-view{
  position:absolute;inset:0;
  display:grid;
  grid-template-rows:minmax(0,1fr);
  grid-template-columns:minmax(0,1fr);
  padding:14px 18px;
  box-sizing:border-box;
}
#depthmap .dp-frame{
  position:relative;
  min-width:0;min-height:0;
  align-self:center;justify-self:center;
  max-width:100%;max-height:100%;
  border-radius:var(--dp-r-m);
  overflow:hidden;
  background:#04070d;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}
/* 아직 영상이 없으면 예전처럼 자리를 가득 쓴다 */
#depthmap .dp-frame:not(.is-fit){align-self:stretch;justify-self:stretch;width:auto;height:auto}
#depthmap .dp-frame.is-empty{
  background:
    radial-gradient(70% 70% at 50% 40%,hsl(var(--h) 45% 22% / .5),transparent 70%),
    repeating-linear-gradient(135deg,rgba(255,255,255,.014) 0 12px,transparent 12px 24px),
    #06090f;
  box-shadow:inset 0 0 0 1px var(--dp-line);
}

/* 원본과 결과를 같은 자리에 겹친다 */
#depthmap .dp-lay{
  position:absolute;inset:0;
  display:grid;place-items:center;
}
#depthmap .dp-lay[hidden]{display:none!important}
#depthmap .dp-lay>video,
#depthmap .dp-lay>canvas,
#depthmap .dp-lay>img{
  width:100%!important;height:100%!important;
  max-width:none;max-height:none;min-width:0;min-height:0;
  object-fit:contain!important;
  display:block;background:transparent;
  border:0;border-radius:0;padding:0;margin:0;
}
/* 왼쪽이 원본, 오른쪽이 결과다 (운영자 지정).
   결과 층은 손잡이 오른쪽만 보이고, 왼쪽에는 원본이 그대로 남는다. */
#depthmap .dp-lay-out{
  clip-path:inset(0 0 0 var(--dp-wipe,50%));
  transition:clip-path var(--dp-t) var(--dp-ease);
  z-index:2;
}
#depthmap .dp-frame.is-dragging .dp-lay-out{transition:none}
#depthmap .dp-frame.is-solo .dp-lay-out{clip-path:none}
#depthmap .dp-lay-src{z-index:1}
/* 결과가 원본과 다른 비율로 나온 경우에만 — 칸에 맞춰 자리를 포갠다 */
#depthmap .dp-frame.is-stretch .dp-lay-out>video,
#depthmap .dp-frame.is-stretch .dp-lay-out>canvas,
#depthmap .dp-frame.is-stretch .dp-lay-out>img{object-fit:fill!important}

/* 끌어서 비교하는 손잡이 */
/* 손잡이는 붙잡을 자리가 넉넉해야 한다. 막대 자체를 34px 로 두고
   선은 안에서 그린다 — 가상 요소를 밖으로 삐져나가게 하면 그 자체가
   가로 넘침으로 잡힌다(실측). */
#depthmap .dp-wipe{
  position:absolute;top:0;bottom:0;
  left:var(--dp-wipe,60%);
  width:34px;margin-left:-17px;
  background:none;border:0;padding:0;
  z-index:3;
  cursor:ew-resize;
  touch-action:none;
  transition:left var(--dp-t) var(--dp-ease),opacity .18s;
}
#depthmap .dp-frame.is-dragging .dp-wipe{transition:none}
#depthmap .dp-wipe[hidden]{display:none!important}
#depthmap .dp-wipe::before{
  content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;
  margin-left:-1px;
  background:linear-gradient(180deg,transparent,hsl(var(--h) 90% 72% / .9) 12%,hsl(var(--h) 90% 72% / .9) 88%,transparent);
}
#depthmap .dp-wipe i{
  position:absolute;left:50%;top:50%;
  /* 손잡이 막대(34px) 안에 들어와야 한다 — 밖으로 나가면 그 자체가 넘침이 된다 */
  width:32px;height:32px;margin:-16px 0 0 -16px;
  border-radius:999px;
  display:grid;place-items:center;
  border:1px solid hsl(var(--h) 70% 66% / .85);
  background:rgba(8,14,24,.9);
  color:#fff;font-style:normal;font-size:13px;line-height:1;
  box-shadow:0 6px 18px rgba(0,0,0,.55);
  transition:transform .18s var(--dp-ease),background .18s;
}
#depthmap .dp-wipe:hover i{transform:scale(1.08)}
#depthmap .dp-frame.is-solo .dp-wipe{opacity:0;pointer-events:none}

/* ============================================================
   조각 보기 — 한 장의 그림을 세로로 잘라 나눠 본다
   ------------------------------------------------------------
   칸을 따로 두면 그림이 칸마다 따로 줄어들어 같은 자리를 못 본다.
   조각은 같은 그림의 같은 자리를 그대로 잘라 쓰므로,
   경계에서 어깨선·팔선이 끊기지 않고 이어진다.
   ============================================================ */
#depthmap .dp-slot{
  position:absolute;inset:0;
  display:grid;place-items:center;
  transition:clip-path var(--dp-t) var(--dp-ease);
}
#depthmap .dp-frame.is-dragging .dp-slot{transition:none}
#depthmap .dp-slot[hidden]{display:none!important}
#depthmap .dp-slot>video,
#depthmap .dp-slot>canvas,
#depthmap .dp-slot>img{
  width:100%!important;height:100%!important;
  max-width:none;max-height:none;min-width:0;min-height:0;
  object-fit:contain!important;
  display:block;background:transparent;
  border:0;border-radius:0;padding:0;margin:0;
}
/* 결과가 원본과 다른 비율로 나왔을 때만 — 칸에 맞춰 자리를 포갠다 */
#depthmap .dp-frame.is-stretch .dp-slot>video,
#depthmap .dp-frame.is-stretch .dp-slot>canvas,
#depthmap .dp-frame.is-stretch .dp-slot>img{object-fit:fill!important}
/* 지금 고르고 있는 조각 — 왼쪽 위 단추가 이 조각을 바꾼다 */
#depthmap .dp-slot.is-act::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  box-shadow:inset 0 0 0 2px hsl(var(--h) 80% 62% / .55);
}

/* 경계 손잡이 — 붙잡을 자리를 34px 로 넉넉히, 선은 안에서 그린다 */
#depthmap .dp-cut{
  position:absolute;top:0;bottom:0;
  width:34px;margin-left:-17px;
  background:none;border:0;padding:0;
  z-index:6;cursor:ew-resize;touch-action:none;
  transition:left var(--dp-t) var(--dp-ease);
}
#depthmap .dp-frame.is-dragging .dp-cut{transition:none}
#depthmap .dp-cut[hidden]{display:none!important}
#depthmap .dp-cut::before{
  content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;margin-left:-1px;
  background:linear-gradient(180deg,transparent,hsl(var(--h) 90% 72% / .9) 10%,hsl(var(--h) 90% 72% / .9) 90%,transparent);
}
#depthmap .dp-cut i{
  position:absolute;left:50%;top:50%;
  width:32px;height:32px;margin:-16px 0 0 -16px;
  border-radius:999px;display:grid;place-items:center;
  border:1px solid hsl(var(--h) 70% 66% / .85);
  background:rgba(8,14,24,.9);
  color:#fff;font-style:normal;font-size:13px;line-height:1;
  box-shadow:0 6px 18px rgba(0,0,0,.55);
  transition:transform .18s var(--dp-ease);
}
#depthmap .dp-cut:hover i{transform:scale(1.08)}
#depthmap .dp-cut:focus-visible i{outline:2px solid hsl(var(--h) 70% 62%);outline-offset:2px}

/* 조각 이름표 — 그 조각 한가운데 아래 */
#depthmap .dp-chips{position:absolute;inset:0;z-index:5;pointer-events:none}
#depthmap .dp-chips[hidden]{display:none!important}
#depthmap .dp-slabel{
  position:absolute;bottom:12px;transform:translateX(-50%);
  pointer-events:auto;
  min-height:26px;padding:5px 11px;
  border-radius:999px;
  border:1px solid var(--dp-line2);
  background:rgba(6,10,18,.82);
  color:#dbe6f5;font-family:inherit;font-size:11px;font-weight:800;line-height:1.4;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  cursor:pointer;
  transition:color var(--dp-t),border-color var(--dp-t),background var(--dp-t);
}
#depthmap .dp-slabel:hover{color:#fff;border-color:hsl(var(--h) 60% 58%)}
#depthmap .dp-slabel.on{
  color:#fff;border-color:hsl(var(--h) 75% 62%);
  background:linear-gradient(180deg,hsl(var(--h) 52% 34% / .95),rgba(11,18,30,.92));
}
/* 왼쪽 위 단추가 '몇 번 조각'을 바꾸는지 알려 준다 */
#depthmap .dp-tabhint{
  align-self:center;padding:0 10px 0 6px;
  color:var(--dp-dim2);font-size:10.5px;font-weight:800;white-space:nowrap;
}

/* 어느 쪽이 무엇인지 */
/* 이름표는 조각 층보다 위에 있어야 한다 —
   층이 나중에 만들어져 같은 z-index 면 이름표를 덮어 버린다(실측) */
#depthmap .dp-tag{
  position:absolute;bottom:12px;
  min-height:26px;padding:5px 11px;
  border-radius:999px;
  border:1px solid var(--dp-line2);
  background:rgba(6,10,18,.82);
  color:#dbe6f5;font-size:11px;font-weight:800;line-height:1.4;
  z-index:5;pointer-events:none;
  transition:opacity .18s;
}
#depthmap .dp-tag[hidden]{display:none!important}
#depthmap .dp-tag-src{left:14px}
#depthmap .dp-tag-out{right:14px}
#depthmap .dp-frame.is-solo .dp-tag-src{opacity:0}

/* 빈 무대 안내 */
#depthmap .dp-blank{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:12px;padding:24px;text-align:center;z-index:2;
}
#depthmap .dp-blank i{
  width:56px;height:56px;border-radius:var(--dp-r-m);
  display:grid;place-items:center;
  border:1px dashed var(--dp-line2);
  background:rgba(255,255,255,.03);
  color:var(--hue);font-style:normal;font-size:22px;line-height:1;
}
#depthmap .dp-blank[hidden]{display:none!important}
#depthmap .dp-blank strong{color:#eef3fb;font-size:14px;font-weight:800;line-height:1.5}
#depthmap .dp-blank span{color:var(--dp-dim);font-size:12px;line-height:1.7;max-width:34ch}

/* 결과 종류 고르는 알약 — 무대 왼쪽 위 */
#depthmap .dp-tabs{
  position:absolute;left:12px;top:12px;z-index:6;
  display:flex;gap:6px;flex-wrap:wrap;
  max-width:calc(100% - 32px);
  padding:4px;
  border-radius:999px;
  border:1px solid var(--dp-line);
  background:rgba(6,10,18,.72);
  backdrop-filter:blur(10px);
}
#depthmap .dp-tab{
  height:var(--dp-h-chip);min-height:var(--dp-h-chip);padding:0 13px;border-radius:999px;
  border:1px solid transparent;background:none;
  color:var(--dp-dim);font-family:inherit;font-weight:800;font-size:11.5px;line-height:1;
  cursor:pointer;white-space:nowrap;flex:none;
  transition:background var(--dp-t),color var(--dp-t),border-color var(--dp-t);
}
#depthmap .dp-tabs[hidden]{display:none!important}
#depthmap .dp-tab:hover:not(:disabled){color:#fff;background:rgba(255,255,255,.07)}
#depthmap .dp-tab.on{
  color:#fff;border-color:hsl(var(--h) 65% 58%);
  background:linear-gradient(180deg,hsl(var(--h) 52% 34% / .95),rgba(11,18,30,.9));
}
#depthmap .dp-tab:disabled{opacity:.34;cursor:not-allowed}
#depthmap .dp-tab b{
  display:inline-block;width:6px;height:6px;border-radius:999px;
  margin-right:6px;vertical-align:middle;
  background:currentColor;opacity:.55;
}
#depthmap .dp-tab.is-done b{background:#3ddc97;opacity:1}

/* 겹쳐 보기 / 따로 보기 */
#depthmap .dp-solo{
  position:absolute;right:16px;top:14px;z-index:6;
  height:var(--dp-h-chip);min-height:var(--dp-h-chip);padding:0 13px;border-radius:999px;
  border:1px solid var(--dp-line2);
  background:rgba(6,10,18,.78);
  color:#dbe6f5;font-family:inherit;font-weight:800;font-size:11.5px;line-height:1;
  cursor:pointer;
  transition:color var(--dp-t),border-color var(--dp-t),background var(--dp-t);
}
#depthmap .dp-solo:hover{color:#fff;border-color:hsl(var(--h) 60% 58%)}

/* ============================================================
   도크 — 화면 아래 고정
   ============================================================ */
#depthmap .dp{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:60;
  display:flex;flex-direction:column;align-items:center;
  gap:10px;
  padding:0 16px 16px;
  pointer-events:none;
}
#depthmap .dp::before{
  content:'';position:absolute;left:0;right:0;top:-28px;bottom:0;
  background:linear-gradient(180deg,transparent,#05090f 28px);
  pointer-events:none;z-index:-1;
}
#depthmap .dp>*{pointer-events:auto;width:min(1240px,100%)}
#depthmap .dp>.dp-veil{width:auto}

/* 알림 줄 */
#depthmap .dp-notes{display:grid;gap:8px;max-height:34vh;overflow:auto;overscroll-behavior:contain}
#depthmap .dp-notes:empty{display:none}
#depthmap .dp-msg{
  margin:0;padding:11px 15px;
  border-radius:0 var(--dp-r-s) var(--dp-r-s) 0;
  background:linear-gradient(90deg,hsl(var(--h) 45% 28% / .45),hsl(var(--h) 45% 22% / .16));
  color:#c8d8ee;font-size:12.5px;line-height:1.7;
  box-shadow:inset 3px 0 0 var(--hue);
  animation:dp-rise .26s var(--dp-ease) backwards;
}
#depthmap .dp-msg b{color:#fff}
#depthmap .dp-msg.warn{
  background:linear-gradient(90deg,rgba(96,74,24,.5),rgba(74,58,22,.18));
  color:#f4e6c4;box-shadow:inset 3px 0 0 #ffcf5c;
}
#depthmap .dp-msg.warn b{color:#ffd479}
#depthmap .dp-msg.bad{
  background:linear-gradient(90deg,rgba(92,26,44,.55),rgba(66,20,34,.2));
  color:#ffd7e0;box-shadow:inset 3px 0 0 #ff7f9c;
}
#depthmap .dp-msg.bad b{color:#ff9bb0}
#depthmap .dp-msg.ok{
  background:linear-gradient(90deg,rgba(18,66,48,.5),rgba(14,48,36,.18));
  color:#c8f0dd;box-shadow:inset 3px 0 0 #3ddc97;
}
@keyframes dp-rise{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

/* 진행 막대 */
#depthmap .dp-gauge{
  position:relative;height:6px;border-radius:999px;
  background:rgba(255,255,255,.07);
  overflow:hidden;
}
#depthmap .dp-gauge[hidden]{display:none}
#depthmap .dp-gauge i{
  position:absolute;left:0;top:0;bottom:0;
  width:var(--p,0%);
  border-radius:999px;
  background:linear-gradient(90deg,hsl(var(--h) 70% 48%),hsl(var(--h) 92% 70%));
  transition:width .32s var(--dp-ease);
}
#depthmap .dp-gauge span{
  position:absolute;right:0;top:-19px;
  font-size:11px;font-weight:800;color:var(--dp-dim);line-height:1;
}

/* 결과 뒤 줄 */
#depthmap .dp-after{display:flex;gap:8px;flex-wrap:wrap}
#depthmap .dp-after:empty{display:none}
#depthmap .dp-mini{
  height:var(--dp-h-btn);min-height:var(--dp-h-btn);
  display:inline-flex;align-items:center;padding:0 15px;
  border:1px solid var(--dp-line2);border-radius:999px;
  background:linear-gradient(180deg,rgba(34,50,74,.95),rgba(18,28,44,.96));
  color:#dbe6f5;font-family:inherit;font-weight:800;font-size:12px;line-height:1;
  text-decoration:none;cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,.35),inset 0 1px rgba(255,255,255,.1);
  transition:border-color var(--dp-t),color var(--dp-t),transform .16s var(--dp-ease);
}
#depthmap .dp-mini:hover:not(:disabled){color:#fff;border-color:hsl(var(--h) 60% 58%);transform:translateY(-1px)}
#depthmap .dp-mini:disabled{opacity:.5;cursor:not-allowed;transform:none}
/* 다시 뽑기 — 크레딧이 다시 드는 단추라 값을 함께 적는다 */
#depthmap .dp-again{gap:8px}
#depthmap .dp-againc{
  /* inline-flex 로 두면 낱말 사이 빈칸이 삼켜져 '44크레딧' 으로 붙는다 */
  display:inline-block;height:24px;line-height:24px;padding:0 9px;
  border-radius:999px;
  border:1px solid var(--dp-line);
  background:rgba(6,10,18,.55);
  color:var(--dp-dim);font-size:11px;font-weight:800;line-height:1;
}
#depthmap .dp-againc b{color:hsl(var(--h) 85% 72%);font-weight:900}
#depthmap .dp-again:hover:not(:disabled) .dp-againc{border-color:hsl(var(--h) 55% 52%);color:#dbe6f5}
#depthmap .dp-mini.key{
  border-color:hsl(var(--h) 62% 62%);
  background:linear-gradient(150deg,hsl(var(--h) 62% 46%),hsl(var(--h) 68% 32%));
  color:#fff;
}

/* 바 */
#depthmap .dp-bar{
  position:relative;z-index:35;
  border-radius:var(--dp-r-l);
  padding:14px 14px 10px;
  background:
    radial-gradient(120% 120% at 50% -30%,hsl(var(--h) 70% 55% / .12),transparent 62%),
    linear-gradient(180deg,rgba(17,27,43,.96),rgba(8,13,22,.98));
  box-shadow:0 20px 50px rgba(0,0,0,.5),inset 0 1px rgba(255,255,255,.07);
  backdrop-filter:blur(16px) saturate(1.08);
  isolation:isolate;
}
#depthmap .dp-bar::before{
  content:'';position:absolute;inset:0;border-radius:inherit;padding:1px;
  background:linear-gradient(180deg,hsl(var(--h) 70% 70% / .4),rgba(44,67,99,.5) 45%,rgba(30,46,70,.45));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  pointer-events:none;z-index:-1;
}
#depthmap .dp-bar.hot{box-shadow:0 20px 50px rgba(0,0,0,.5),0 0 0 2px hsl(var(--h) 70% 60% / .6)}

/* 올린 영상 알약 */
#depthmap .dp-file{display:flex;gap:8px;flex-wrap:wrap;padding:0 2px 9px}
#depthmap .dp-file:empty{display:none}
#depthmap .dp-fchip{
  display:inline-flex;align-items:center;gap:8px;max-width:100%;
  min-height:var(--dp-h-chip);padding:5px 6px 5px 11px;
  border:1px solid var(--dp-line);border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#dbe6f5;font-size:11.5px;font-weight:700;line-height:1.4;
}
#depthmap .dp-fchip i{font-style:normal;color:var(--hue);flex:none}
#depthmap .dp-fchip b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-weight:800}
#depthmap .dp-fchip em{font-style:normal;color:var(--dp-dim2);flex:none}
#depthmap .dp-fchip button{
  flex:none;width:24px;height:24px;border-radius:999px;
  border:1px solid transparent;background:rgba(255,255,255,.07);
  color:var(--dp-dim);font-size:12px;line-height:1;cursor:pointer;font-family:inherit;
  transition:background var(--dp-t),color var(--dp-t);
}
#depthmap .dp-fchip button:hover{background:rgba(146,26,52,.85);color:#fff}

/* 칩 줄 */
#depthmap .dp-tools{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
#depthmap .dp-chip{
  display:inline-flex;align-items:center;gap:7px;
  max-width:min(100%,300px);
  height:var(--dp-h-chip);min-height:var(--dp-h-chip);padding:0 12px;
  border:1px solid var(--dp-line2);border-radius:999px;
  background:linear-gradient(180deg,rgba(34,50,74,.95),rgba(18,28,44,.96));
  color:#dbe6f5;font-family:inherit;font-weight:800;font-size:12px;line-height:1;
  cursor:pointer;white-space:nowrap;
  box-shadow:0 2px 8px rgba(0,0,0,.35),inset 0 1px rgba(255,255,255,.1);
  transition:border-color var(--dp-t),color var(--dp-t),background var(--dp-t),transform .16s var(--dp-ease);
}
#depthmap .dp-chip i{font-style:normal;font-size:13px;color:var(--hue);flex:none;line-height:1}
#depthmap .dp-chip u{text-decoration:none;color:#9db0ca;font-size:10px;flex:none}
#depthmap .dp-chip>span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0}
#depthmap .dp-chip:hover{border-color:hsl(var(--h) 55% 55%);color:#fff;transform:translateY(-1px)}
#depthmap .dp-chip.on{
  border-color:hsl(var(--h) 65% 58%);color:#fff;
  background:linear-gradient(180deg,hsl(var(--h) 50% 32% / .9),rgba(9,15,25,.9));
}

#depthmap .dp-round{
  width:var(--dp-h-round);height:var(--dp-h-round);flex:none;
  display:grid;place-items:center;
  border:1px solid var(--dp-line2);border-radius:50%;
  background:linear-gradient(180deg,rgba(34,50,74,.95),rgba(18,28,44,.96));
  color:#dbe6f5;font-family:inherit;font-size:18px;line-height:1;cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,.35),inset 0 1px rgba(255,255,255,.1);
  transition:border-color var(--dp-t),color var(--dp-t),transform .16s var(--dp-ease);
}
#depthmap .dp-round:hover{border-color:hsl(var(--h) 55% 55%);color:#fff;transform:translateY(-1px)}
#depthmap .dp-round.on{
  color:#fff;border-color:hsl(var(--h) 65% 58%);
  background:linear-gradient(180deg,hsl(var(--h) 50% 34% / .95),rgba(11,18,30,.92));
}

#depthmap .dp-sp{flex:1 1 auto;min-width:0}
#depthmap .dp-go{display:inline-flex;align-items:center;gap:10px;flex:none;margin-left:auto}
#depthmap .dp-cost{color:var(--dp-dim);font-size:12px;font-weight:700;line-height:1.4;white-space:nowrap}
#depthmap .dp-cost b{color:#fff;font-size:14px}

#depthmap .dp-run{
  width:var(--dp-h-round);height:var(--dp-h-round);flex:none;
  display:grid;place-items:center;
  border:1px solid hsl(var(--h) 62% 62%);border-radius:50%;
  background:linear-gradient(150deg,hsl(var(--h) 62% 54%),hsl(var(--h) 68% 36%));
  color:#fff;font-family:inherit;font-size:17px;line-height:1;cursor:pointer;
  box-shadow:0 6px 16px hsl(var(--h) 70% 25% / .55),inset 0 1px rgba(255,255,255,.28);
  transition:transform .16s var(--dp-ease),box-shadow var(--dp-t),filter var(--dp-t);
}
#depthmap .dp-run:hover:not(:disabled){transform:translateY(-2px)}
#depthmap .dp-run:active:not(:disabled){transform:translateY(0)}
/* 전역 디자인이 button:disabled 를 opacity .5 로 못 박아 두었다.
   못 누르는 상태여도 '거기 있다'는 건 보여야 한다. */
#depthmap .dp-run:disabled{
  filter:grayscale(.35)!important;opacity:.72!important;
  cursor:not-allowed;transform:none;
  box-shadow:0 0 0 1px rgba(255,255,255,.22),0 4px 12px rgba(0,0,0,.4);
}
#depthmap .dp-run.is-busy{
  background:linear-gradient(150deg,#2b3b55,#151d2c);border-color:#3d5b85;cursor:progress;
}
#depthmap .dp-run.is-busy>span{display:none}
#depthmap .dp-run.is-busy::after{
  content:'';width:18px;height:18px;border-radius:50%;
  background:conic-gradient(from 0deg,transparent 0deg,var(--hue) 300deg,transparent 360deg);
  -webkit-mask:radial-gradient(farthest-side,transparent calc(100% - 3px),#000 calc(100% - 3px));
          mask:radial-gradient(farthest-side,transparent calc(100% - 3px),#000 calc(100% - 3px));
  animation:dp-spin .9s linear infinite;
}
@keyframes dp-spin{to{transform:rotate(360deg)}}

/* ============================================================
   팝오버
   ============================================================ */
#depthmap .dp-veil{position:fixed;inset:0;z-index:30}
#depthmap .dp-veil[hidden]{display:none}
#depthmap .dp-pop{
  position:absolute;left:0;right:0;bottom:calc(100% + 10px);
  z-index:40;padding:18px;
  border-radius:var(--dp-r-l);
  background:
    radial-gradient(120% 90% at 50% -25%,hsl(var(--h) 70% 55% / .14),transparent 60%),
    linear-gradient(180deg,rgba(16,26,41,.98),rgba(8,13,22,.99));
  box-shadow:0 26px 60px rgba(0,0,0,.6),inset 0 1px rgba(255,255,255,.08);
  backdrop-filter:blur(18px) saturate(1.1);
  isolation:isolate;
  max-height:min(62vh,520px);
  overflow:auto;overscroll-behavior:contain;
  animation:dp-pop .22s var(--dp-ease) backwards;
}
#depthmap .dp-pop::before{
  content:'';position:absolute;inset:0;border-radius:inherit;padding:1px;
  background:linear-gradient(180deg,hsl(var(--h) 70% 70% / .55),rgba(44,67,99,.5) 45%,rgba(30,46,70,.45));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  pointer-events:none;z-index:-1;
}
#depthmap .dp-pop[hidden]{display:none}
@keyframes dp-pop{from{opacity:0;transform:translateY(8px) scale(.99)}to{opacity:1;transform:none}}

#depthmap .dp-pop-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:14px}
#depthmap .dp-pop-head>div{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;min-width:0}
#depthmap .dp-pop-head strong{font-size:16px;font-weight:900;color:#fff;line-height:1.4}
#depthmap .dp-pop-head span{font-size:12px;color:var(--dp-dim2);line-height:1.6}
#depthmap .dp-pop-x{
  flex:none;width:var(--dp-h-round);height:var(--dp-h-round);border-radius:999px;
  border:1px solid var(--dp-line);background:rgba(255,255,255,.04);
  color:var(--dp-dim);font-size:16px;line-height:1;cursor:pointer;font-family:inherit;
  transition:background var(--dp-t),color var(--dp-t),border-color var(--dp-t);
}
#depthmap .dp-pop-x:hover{background:rgba(255,255,255,.1);color:#fff;border-color:hsl(var(--h) 60% 58% / .7)}

#depthmap .dp-picks{
  display:grid;gap:10px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
#depthmap .dp-pick{
  position:relative;
  display:flex;align-items:center;gap:13px;
  min-height:74px;padding:14px;
  border:1px solid var(--dp-line);border-radius:var(--dp-r-m);
  background:linear-gradient(180deg,rgba(16,26,41,.86),rgba(8,14,24,.9));
  color:var(--dp-ink);text-align:left;font-family:inherit;cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,.3),inset 0 1px rgba(255,255,255,.05);
  transition:border-color var(--dp-t),box-shadow var(--dp-t),transform .16s var(--dp-ease);
}
#depthmap .dp-pick:hover{
  border-color:hsl(var(--h) 60% 58% / .75);transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.45),inset 0 1px rgba(255,255,255,.09);
}
#depthmap .dp-pick.on{
  border-color:hsl(var(--h) 72% 62%);
  background:
    radial-gradient(140% 120% at 0% 0%,hsl(var(--h) 62% 40% / .55),transparent 62%),
    linear-gradient(180deg,rgba(23,38,60,.95),rgba(11,18,30,.95));
  box-shadow:0 12px 28px rgba(0,0,0,.45),inset 0 1px rgba(255,255,255,.14);
}
#depthmap .dp-pick>i{
  flex:none;width:40px;height:40px;border-radius:var(--dp-r-s);
  display:grid;place-items:center;
  border:1px solid var(--dp-line);background:rgba(255,255,255,.04);
  color:var(--hue);font-style:normal;font-size:17px;line-height:1;
}
#depthmap .dp-pick>div{min-width:0;display:grid;gap:3px}
#depthmap .dp-pick b{font-size:13px;font-weight:800;color:#fff;line-height:1.45}
#depthmap .dp-pick span{font-size:11.5px;color:var(--dp-dim2);line-height:1.55}
#depthmap .dp-pick em{
  position:absolute;top:12px;right:12px;
  font-style:normal;font-size:11px;font-weight:800;color:#3ddc97;line-height:1;
}

/* ── 켜짐·꺼짐 ────────────────────────────────────────
   말로 적지 않는다. 테두리와 체크로만 말한다.
   고르는 순간에는 **테두리를 따라 빛이 한 바퀴 돈다** — 어느 단추가
   방금 바뀌었는지 그 자리에서 보인다(운영자 요청). */
#depthmap .dp-pick{padding-right:48px}
#depthmap .dp-check{
  position:absolute;top:50%;right:14px;margin-top:-11px;
  width:22px;height:22px;flex:none;
  border-radius:7px;
  border:2px solid var(--dp-line2);
  background:rgba(255,255,255,.04);
  display:grid;place-items:center;
  transition:border-color var(--dp-t),background var(--dp-t),transform .18s var(--dp-ease);
}
#depthmap .dp-check b{
  width:11px;height:6px;
  border-left:2.5px solid #06121b;border-bottom:2.5px solid #06121b;
  border-radius:1px;
  transform:rotate(-45deg) translate(1px,-1px) scale(.2);
  opacity:0;
  transition:transform .18s var(--dp-ease),opacity .14s;
}
#depthmap .dp-pick.on .dp-check{
  border-color:hsl(var(--h) 75% 62%);
  background:hsl(var(--h) 78% 62%);
}
#depthmap .dp-pick.on .dp-check b{
  transform:rotate(-45deg) translate(1px,-1px) scale(1);
  opacity:1;
}
/* 꺼진 카드는 확실히 물러난다 */
#depthmap .dp-pick:not(.on){opacity:.6;filter:saturate(.3)}
#depthmap .dp-pick:not(.on):hover{opacity:.86;filter:saturate(.6)}
#depthmap .dp-pick:not(.on) i{color:var(--dp-dim2)}
#depthmap .dp-pick:not(.on)>div b{color:var(--dp-dim)}

#depthmap .dp-pick.on{
  border-color:hsl(var(--h) 72% 62%);
  box-shadow:0 12px 28px rgba(0,0,0,.45),
             inset 0 1px rgba(255,255,255,.14),
             0 0 0 1px hsl(var(--h) 72% 62% / .55);
}

/* 테두리를 따라 한 바퀴 도는 빛 — 방금 바뀐 단추에만 */
#depthmap .dp-pick::after{
  content:'';position:absolute;inset:-1px;border-radius:inherit;
  padding:2px;
  background:conic-gradient(from var(--dp-a,0deg),
    transparent 0deg,
    hsl(var(--h) 95% 74% / .05) 40deg,
    hsl(var(--h) 95% 78%) 82deg,
    #fff 92deg,
    hsl(var(--h) 95% 78%) 102deg,
    hsl(var(--h) 95% 74% / .05) 145deg,
    transparent 200deg);
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  opacity:0;pointer-events:none;
}
#depthmap .dp-pick.just::after{animation:dp-run .62s var(--dp-ease)}
#depthmap .dp-pick.just .dp-check{animation:dp-check-just .34s var(--dp-ease)}
@property --dp-a{syntax:'<angle>';inherits:false;initial-value:0deg}
@keyframes dp-run{
  0%{opacity:0;--dp-a:0deg}
  12%{opacity:1}
  85%{opacity:1}
  100%{opacity:0;--dp-a:360deg}
}
@keyframes dp-check-just{
  0%{transform:scale(1)}
  40%{transform:scale(1.22)}
  100%{transform:scale(1)}
}
/* @property 를 못 쓰는 브라우저에서는 각도가 안 돈다 — 그때는 테두리가 한 번 밝아진다 */
@supports not (background:conic-gradient(from 0deg,red,blue)){
  #depthmap .dp-pick.just{animation:dp-flash .5s var(--dp-ease)}
  @keyframes dp-flash{
    0%,100%{box-shadow:0 12px 28px rgba(0,0,0,.45),inset 0 1px rgba(255,255,255,.14)}
    45%{box-shadow:0 12px 28px rgba(0,0,0,.45),inset 0 1px rgba(255,255,255,.14),0 0 0 3px hsl(var(--h) 90% 70% / .7)}
  }
}

/* 팝오버 안의 안내문은 아래 카드와 붙지 않게 */
#depthmap .dp-pop .dp-msg{margin:0 0 14px}
#depthmap .dp-pop .dp-msg:last-child{margin-bottom:0}

/* 두 줄짜리 고르기 (설정) */
#depthmap .dp-rows{display:grid;gap:14px}
#depthmap .dp-row>b{
  display:block;margin-bottom:8px;
  font-size:11px;font-weight:900;letter-spacing:.05em;color:var(--dp-dim2);line-height:1.4;
}
#depthmap .dp-segs{display:flex;gap:6px;flex-wrap:wrap}
#depthmap .dp-seg{
  height:var(--dp-h-chip);min-height:var(--dp-h-chip);padding:0 14px;
  border:1px solid var(--dp-line);border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--dp-dim);font-family:inherit;font-weight:800;font-size:12px;line-height:1;
  cursor:pointer;white-space:nowrap;
  transition:border-color var(--dp-t),color var(--dp-t),background var(--dp-t);
}
#depthmap .dp-seg:hover{color:#fff;background:rgba(255,255,255,.07)}
#depthmap .dp-seg.on{
  color:#fff;border-color:hsl(var(--h) 65% 58%);
  background:linear-gradient(180deg,hsl(var(--h) 52% 34% / .95),rgba(11,18,30,.9));
  box-shadow:0 0 0 1px hsl(var(--h) 72% 62% / .45);
}
/* 방금 고른 것에만 티를 낸다 */
#depthmap .dp-seg.just{animation:dp-seg-just .3s var(--dp-ease)}
@keyframes dp-seg-just{
  0%{transform:scale(1)}
  40%{transform:scale(1.07)}
  100%{transform:scale(1)}
}

#depthmap .dp-tail{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  margin-top:14px;padding:10px 12px;
  border:1px solid var(--dp-line);border-radius:var(--dp-r-s);
  background:rgba(255,255,255,.03);
}
#depthmap .dp-tail b{flex:none;font-size:11px;font-weight:800;color:var(--dp-dim2);line-height:1.5}
#depthmap .dp-tail span{flex:1 1 200px;min-width:0;font-size:11.5px;color:#cfe0f5;line-height:1.6}
#depthmap .dp-reset{
  flex:none;height:var(--dp-h-chip);min-height:var(--dp-h-chip);padding:0 13px;border-radius:999px;
  border:1px solid var(--dp-line);background:rgba(255,255,255,.05);
  color:var(--dp-dim);font-size:11.5px;line-height:1;cursor:pointer;font-family:inherit;
  transition:background var(--dp-t),color var(--dp-t),border-color var(--dp-t);
}
#depthmap .dp-reset:hover{background:rgba(255,255,255,.11);color:#fff;border-color:hsl(var(--h) 60% 58% / .7)}

#depthmap .dp-empty2{
  display:flex;flex-direction:column;align-items:flex-start;gap:12px;
  padding:22px 18px;
  border:1px dashed var(--dp-line);border-radius:var(--dp-r-m);
  background:rgba(255,255,255,.02);
  color:var(--dp-dim);font-size:12.5px;line-height:1.7;
}
#depthmap .dp-empty2 b{color:#fff}

/* ============================================================
   좁은 화면
   ============================================================ */
@media (max-width:640px){
  #depthmap .dp-view{padding:10px 12px}
  #depthmap .dp-tabs{left:8px;top:8px;gap:4px;padding:3px}
  #depthmap .dp-tab{padding:0 10px;font-size:11px}
  #depthmap .dp-solo{right:12px;top:10px;padding:0 10px;font-size:11px}
  #depthmap .dp-tag{bottom:10px;font-size:10.5px}
  #depthmap .dp-tag-src{left:12px}
  #depthmap .dp-tag-out{right:12px}
  #depthmap .dp-picks{grid-template-columns:1fr}
  #depthmap .dp-go{margin-left:auto}
}

/* 움직임을 줄이는 설정에서는 전부 멈춘다 */
@media (prefers-reduced-motion:reduce){
  #depthmap *,
  #depthmap *::before,
  #depthmap *::after{
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    transition-duration:.001ms!important;
  }
  #depthmap .dp-chip:hover,
  #depthmap .dp-round:hover,
  #depthmap .dp-mini:hover,
  #depthmap .dp-pick:hover,
  #depthmap .dp-run:hover{transform:none!important}
}

/* ============================================================
   끌어다 놓기 — 받는 자리는 화면 전체
   ============================================================ */
#depthmap .dp-drop{
  position:absolute;inset:0;z-index:9;
  display:grid;place-items:center;
  padding:20px;
  background:rgba(5,9,15,.86);
  backdrop-filter:blur(6px);
  animation:dp-fade .16s var(--dp-ease) backwards;
}
#depthmap .dp-drop[hidden]{display:none!important}
#depthmap .dp-drop>div{
  display:flex;flex-direction:column;align-items:center;gap:12px;
  padding:32px 40px;
  border:2px dashed hsl(var(--h) 70% 62% / .8);
  border-radius:var(--dp-r-l);
  background:hsl(var(--h) 45% 20% / .35);
  text-align:center;
}
#depthmap .dp-drop i{
  font-style:normal;font-size:30px;line-height:1;color:var(--hue);
}
#depthmap .dp-drop strong{color:#fff;font-size:16px;font-weight:900;line-height:1.4}
#depthmap .dp-drop span{color:var(--dp-dim);font-size:12px;line-height:1.6}
@keyframes dp-fade{from{opacity:0}to{opacity:1}}
/* 끌고 있는 동안에는 바가 방해되지 않게 살짝 물러난다 */
#depthmap.is-dropping .dp-bar{opacity:.55;transition:opacity .16s var(--dp-ease)}

/* ============================================================
   보관함에서 고르기
   ============================================================ */
#depthmap .dp-area{min-height:120px}
#depthmap .dp-cards{
  display:grid;gap:10px;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
}
#depthmap .dp-card{
  position:relative;
  display:flex;flex-direction:column;gap:7px;
  padding:8px;
  border:1px solid var(--dp-line);border-radius:var(--dp-r-m);
  background:linear-gradient(180deg,rgba(20,32,50,.9),rgba(9,15,25,.92));
  color:var(--dp-ink);font-family:inherit;text-align:left;cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,.32),inset 0 1px rgba(255,255,255,.06);
  transition:border-color var(--dp-t),box-shadow var(--dp-t),transform .16s var(--dp-ease);
}
#depthmap .dp-card:hover:not(:disabled){
  border-color:hsl(var(--h) 60% 58% / .8);transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.45),inset 0 1px rgba(255,255,255,.1);
}
#depthmap .dp-card:disabled{opacity:.45;cursor:progress;transform:none}
#depthmap .dp-card.is-busy{border-color:hsl(var(--h) 70% 62%);opacity:1}
#depthmap .dp-card-face{
  display:block;width:100%;aspect-ratio:16 / 10;
  border-radius:var(--dp-r-s);
  background:#0b1220;overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.1);
}
#depthmap .dp-card-face video{width:100%;height:100%;object-fit:cover;display:block;background:#0b1220}
#depthmap .dp-card>b{
  font-size:12px;font-weight:800;line-height:1.45;color:#fff;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
#depthmap .dp-card>span{font-size:11px;color:var(--dp-dim2);line-height:1.4}

@media (max-width:560px){
  #depthmap .dp-cards{grid-template-columns:repeat(auto-fill,minmax(124px,1fr))}
  #depthmap .dp-drop>div{padding:22px 24px}
}

/* ============================================================
   나눠 보기 — 2칸 · 4칸
   ------------------------------------------------------------
   와이프는 둘을 견주는 데 좋지만, 넷을 한눈에 놓고 보려면 칸을 나눠야 한다.
   칸마다 무엇을 띄울지 따로 고른다. 재생은 다 같이 돈다 —
   서로 다른 시점을 보고 비교하면 비교가 안 된다.
   ============================================================ */
#depthmap .dp-viewbtns{
  position:absolute;right:16px;top:14px;z-index:6;
  display:flex;gap:6px;flex-wrap:wrap;justify-content:flex-end;
  max-width:calc(100% - 32px);
}
#depthmap .dp-solo{position:static}
#depthmap .dp-split{
  height:var(--dp-h-chip);min-height:var(--dp-h-chip);padding:0 13px;border-radius:999px;
  border:1px solid var(--dp-line2);
  background:rgba(6,10,18,.78);
  color:#dbe6f5;font-family:inherit;font-weight:800;font-size:11.5px;line-height:1;
  cursor:pointer;white-space:nowrap;
  transition:color var(--dp-t),border-color var(--dp-t),background var(--dp-t);
}
#depthmap .dp-split:hover{color:#fff;border-color:hsl(var(--h) 60% 58%)}
#depthmap .dp-split[hidden],#depthmap .dp-solo[hidden]{display:none!important}

#depthmap .dp-grid{
  position:absolute;inset:0;
  display:grid;
  grid-template-columns:repeat(var(--dp-cols,2),minmax(0,1fr));
  grid-template-rows:repeat(var(--dp-rows,1),minmax(0,1fr));
  gap:10px;
  padding:56px 18px 14px;
  box-sizing:border-box;
}
#depthmap .dp-grid[hidden]{display:none!important}
#depthmap .dp-frame[hidden]{display:none!important}
#depthmap .dp-cell{
  position:relative;min-width:0;min-height:0;
  border-radius:var(--dp-r-m);
  overflow:hidden;
  background:#04070d;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
#depthmap .dp-cell-view{
  position:absolute;inset:0;
  display:grid;place-items:center;
}
#depthmap .dp-cell-view>video,
#depthmap .dp-cell-view>img{
  width:100%;height:100%;object-fit:contain;display:block;background:transparent;
  grid-area:1/1;
}
/* 한 번 만든 재생기는 지우지 않고 숨겨만 둔다 — 다시 부를 때 안 끊긴다 */
#depthmap .dp-cell-view>[hidden]{display:none!important}
#depthmap .dp-cell-none{color:var(--dp-dim2);font-size:12px;line-height:1.6;grid-area:1/1;align-self:center}
#depthmap .dp-cell-pick{
  position:absolute;left:8px;right:8px;bottom:8px;z-index:2;
  display:flex;gap:4px;flex-wrap:wrap;
  padding:4px;
  border-radius:999px;
  border:1px solid var(--dp-line);
  background:rgba(6,10,18,.78);
  backdrop-filter:blur(10px);
}
#depthmap .dp-mini2{
  height:26px;padding:0 10px;border-radius:999px;
  border:1px solid transparent;background:none;
  color:var(--dp-dim);font-family:inherit;font-weight:800;font-size:10.5px;line-height:1;
  cursor:pointer;white-space:nowrap;
  transition:background var(--dp-t),color var(--dp-t),border-color var(--dp-t);
}
#depthmap .dp-mini2:hover:not(:disabled){color:#fff;background:rgba(255,255,255,.08)}
#depthmap .dp-mini2.on{
  color:#fff;border-color:hsl(var(--h) 65% 58%);
  background:linear-gradient(180deg,hsl(var(--h) 52% 34% / .95),rgba(11,18,30,.9));
}
#depthmap .dp-mini2:disabled{opacity:.3;cursor:not-allowed}

/* ── 재생 막대 — 나눠 보기의 시계 하나 ───────────────── */
#depthmap .dp-tport{
  position:absolute;z-index:7;
  display:flex;align-items:center;gap:10px;
  height:var(--dp-h-chip);padding:0 12px 0 4px;
  border-radius:999px;
  border:1px solid var(--dp-line);
  background:rgba(6,10,18,.78);
  backdrop-filter:blur(10px);
  max-width:min(420px,calc(100% - 200px));
  box-sizing:border-box;
}
#depthmap .dp-tport[hidden]{display:none!important}
/* 겹쳐 보기: 그림 아래 가운데 — 양쪽 끝 표시와 안 부딪힌다 */
#depthmap .dp-frame>.dp-tport{left:50%;bottom:48px;transform:translateX(-50%);width:min(340px,calc(100% - 200px))}
/* 나눠 보기: 왼쪽 위 (탭이 비운 자리) */
#depthmap .dp-grid>.dp-tport{left:16px;top:14px}
#depthmap .dp-tplay{
  flex:none;width:26px;height:26px;border-radius:999px;
  border:1px solid var(--dp-line);background:rgba(255,255,255,.06);
  display:grid;place-items:center;cursor:pointer;padding:0;
  transition:background var(--dp-t),border-color var(--dp-t);
}
/* 멈춤 표시 = 막대 둘. 글자(❚❚·▶)는 글꼴 따라 안 그려져서 모양으로 그린다 */
#depthmap .dp-tplay>i{
  display:block;width:9px;height:11px;
  border-left:3px solid #eaf1ff;border-right:3px solid #eaf1ff;
  box-sizing:border-box;
}
/* 재생 표시 = 세모 (멈춰 있을 때 나온다) */
#depthmap .dp-tplay.is-play>i{
  width:0;height:0;margin-left:2px;border:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:10px solid #eaf1ff;
}
#depthmap .dp-tplay:hover{background:rgba(255,255,255,.14);border-color:hsl(var(--h) 60% 58%)}
#depthmap .dp-tbar{
  flex:1 1 auto;min-width:60px;height:14px;
  display:flex;align-items:center;cursor:pointer;touch-action:none;
}
#depthmap .dp-tbar>i{
  display:block;height:4px;border-radius:999px;
  background:hsl(var(--h) 70% 60%);
  box-shadow:0 0 0 1px rgba(255,255,255,.08);
  width:0;
  transition:width .12s linear;
}
#depthmap .dp-tbar{
  position:relative;
  background:linear-gradient(180deg,transparent calc(50% - 2px),rgba(255,255,255,.14) calc(50% - 2px),rgba(255,255,255,.14) calc(50% + 2px),transparent calc(50% + 2px));
  border-radius:999px;
}
#depthmap .dp-tbar:focus-visible{outline:2px solid hsl(var(--h) 70% 62%);outline-offset:3px}
#depthmap .dp-ttime{
  flex:none;color:var(--dp-dim);font-size:10.5px;font-weight:800;
  font-variant-numeric:tabular-nums;white-space:nowrap;
}

@media (max-width:640px){
  #depthmap .dp-grid{padding:52px 12px 10px;gap:8px}
  #depthmap .dp-cell-pick{left:6px;right:6px;bottom:6px;gap:3px;padding:3px}
  #depthmap .dp-mini2{height:24px;padding:0 8px;font-size:10px}
  #depthmap .dp-viewbtns{right:12px;top:10px}
  #depthmap .dp-tport{gap:8px;padding:0 10px 0 4px}
  #depthmap .dp-frame>.dp-tport{bottom:44px;width:min(280px,calc(100% - 24px))}
  #depthmap .dp-grid>.dp-tport{left:12px;top:10px}
  #depthmap .dp-ttime{font-size:10px}
}


/* ============================================================
   고르는 창 — 밝은 물방울 v1140

   이 콘솔은 원래 어두운 판으로 그렸다. 사이트가 밝은 물방울로 바뀌면서
   창의 바깥은 밝아졌는데 안쪽 카드만 어두운 채로 남아, 밝은 판 위에
   검은 타일이 깔린 모양이 됐다(실측 화면).

   창 하나만 밝게 바꾼다. 영상 그림 자리는 어두운 채로 둔다 — 영상은
   대부분 어두워서 밝은 판 위에 두면 오히려 테두리가 떠 보인다.

   겹친 스타일 위에서 열리므로 무게를 실었다.
   `:not(#nope):not(#_):not(#_)` 은 아이디 세 개 값을 만드는 장치이고,
   아이디를 실제로 쓰지 않으므로 아무 요소도 놓치지 않는다.
   ============================================================ */
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop{
  padding:20px!important;
  border:1px solid rgba(255,255,255,.85)!important;
  border-radius:26px!important;
  background:linear-gradient(160deg,#fbfdff,#e9f0fa 62%,#dee8f7)!important;
  box-shadow:
    inset 0 1.5px 1px -1px #fff,
    inset 0 0 0 1px rgba(163,197,240,.45),
    0 30px 62px -26px rgba(18,45,88,.5)!important;
  backdrop-filter:none!important;-webkit-backdrop-filter:none!important;
  color:#16324f!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop::before{display:none!important}

/* 머리칸 */
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop-head strong{color:#16324f!important;font-weight:800}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop-head span{color:#4a6380!important}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop-x{
  width:38px!important;height:38px!important;
  border:0!important;border-radius:50%!important;
  background:radial-gradient(92% 58% at 50% 4%,#fff,rgba(255,255,255,.82) 40%,rgba(255,255,255,.68))!important;
  box-shadow:
    inset 0 1.5px 1px -1px #fff,
    inset 0 0 0 1px rgba(160,196,244,.6),
    0 10px 18px -12px rgba(20,40,80,.5)!important;
  color:#244d8a!important;font-size:16px;font-weight:800;filter:none!important;
}

/* 안내 줄 */
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-msg{
  padding:11px 14px!important;
  border:0!important;border-left:3px solid #5b9bec!important;
  border-radius:12px!important;
  background:rgba(255,255,255,.72)!important;
  box-shadow:inset 0 0 0 1px rgba(160,196,244,.45)!important;
  color:#4a678c!important;font-size:12.5px;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-msg b{color:#1d4b8c!important}

/* 내 보관함 · 컴퓨터에서 */
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-seg{
  border:0!important;border-radius:999px!important;
  background:rgba(255,255,255,.62)!important;
  box-shadow:
    inset 0 1.5px 1px -1px #fff,
    inset 0 0 0 1px rgba(160,196,244,.55)!important;
  color:#4a678c!important;font-weight:800;filter:none!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-seg:hover{
  background:#fff!important;color:#1d4b8c!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-seg.on{
  background:linear-gradient(180deg,#5b9bec,#2f6ec9)!important;
  box-shadow:inset 0 1.5px 1px -1px rgba(255,255,255,.8),0 10px 18px -12px rgba(30,80,160,.85)!important;
  color:#fff!important;
}

/* 영상 카드 */
html body:not(#nope):not(#_):not(#_) #depthmap .dp-cards{
  grid-template-columns:repeat(auto-fill,minmax(168px,1fr))!important;gap:12px!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-card{
  padding:9px!important;
  border:0!important;border-radius:18px!important;
  background:radial-gradient(96% 60% at 50% 2%,#fff,rgba(255,255,255,.88) 44%,rgba(246,250,255,.8))!important;
  box-shadow:
    inset 0 1.5px 1px -1px #fff,
    inset 0 0 0 1px rgba(160,196,244,.6),
    0 12px 22px -16px rgba(20,45,90,.55)!important;
  color:#16324f!important;filter:none!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-card:hover:not(:disabled){
  transform:translateY(-2px);
  box-shadow:
    inset 0 1.5px 1px -1px #fff,
    inset 0 0 0 1px rgba(140,185,245,.9),
    0 20px 30px -18px rgba(20,45,90,.62)!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-card.is-busy{
  box-shadow:inset 0 0 0 2px #3f7fd6,0 12px 22px -16px rgba(20,45,90,.55)!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-card-face{
  border-radius:12px!important;
  box-shadow:inset 0 0 0 1px rgba(160,196,244,.5)!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-card>b{color:#16324f!important;font-size:12.5px}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-card>span{color:#6f89a6!important}

/* 큰 고르기 칸(뽑을 것 등)과 설정 줄도 같은 결로 */
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-pick{
  border:0!important;border-radius:18px!important;
  background:radial-gradient(96% 60% at 50% 2%,#fff,rgba(255,255,255,.88) 44%,rgba(246,250,255,.8))!important;
  box-shadow:
    inset 0 1.5px 1px -1px #fff,
    inset 0 0 0 1px rgba(160,196,244,.6),
    0 12px 22px -16px rgba(20,45,90,.55)!important;
  color:#16324f!important;filter:none!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-pick.on{
  background:linear-gradient(180deg,#5b9bec,#2f6ec9)!important;
  box-shadow:inset 0 1.5px 1px -1px rgba(255,255,255,.8),0 14px 24px -16px rgba(30,80,160,.9)!important;
  color:#fff!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-pick.on *{color:#fff!important}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-row>b{color:#3d5f88!important}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-tail{
  border:0!important;border-radius:14px!important;
  background:rgba(255,255,255,.66)!important;
  box-shadow:inset 0 0 0 1px rgba(160,196,244,.5)!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-tail b{color:#6f89a6!important}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-tail span{color:#3d5f88!important}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-reset{
  border:0!important;border-radius:12px!important;
  background:radial-gradient(96% 60% at 50% 2%,#fff,rgba(255,255,255,.86) 44%,rgba(246,250,255,.78))!important;
  box-shadow:inset 0 1.5px 1px -1px #fff,inset 0 0 0 1px rgba(160,196,244,.6)!important;
  color:#1b3e6b!important;filter:none!important;
}
html body:not(#nope):not(#_):not(#_) #depthmap .dp-pop .dp-drop>div{
  border:2px dashed rgba(120,170,235,.6)!important;border-radius:18px!important;
  background:rgba(255,255,255,.55)!important;color:#4a678c!important;
}

/* 비우기 칩 v1240
   되돌리는 단추라 눈에 먼저 띄면 안 된다 — 다른 칩보다 한 톤 옅게 두고,
   비울 것이 없으면 아예 눌리지 않게 한다. */
#depthmap .dp-chip.dp-clear{max-width:none}
#depthmap .dp-chip.dp-clear:not(:disabled):hover{color:#8f2233!important}
#depthmap .dp-chip.dp-clear:not(:disabled):hover i{color:#b4394a!important}
#depthmap .dp-chip.dp-clear:disabled{opacity:.45;cursor:not-allowed;transform:none}

/* ── 좁은 화면에서 아래 바가 넘치던 것 (2026-08-22) ────────
   요금 자리(.dp-cost)가 white-space:nowrap 이라 안내가 길어지면 한 줄로
   쭉 늘어나 실행 단추(.dp-go)를 화면 밖으로 밀어냈다. 줄이 접히게 둔다. */
.dp-cost{white-space:normal!important;min-width:0!important}
@media (max-width:720px){
  .dp-cost{font-size:11.5px;line-height:1.5}
}

/* ── 영상 다시 그리기 (2026-08-22) ─────────────────────────
   하단바에 '적는 칸' 한 줄이 늘었다. 재료 뽑기일 때는 숨는다.
   미디어아트의 글 칸과 같은 결로 맞춘다 — 두 화면이 형제로 보여야 한다. */
#depthmap .dp-say{padding:0 2px 9px}
#depthmap .dp-input{
  width:100%;min-height:38px;max-height:120px;padding:9px 12px;
  border:1px solid rgba(22,50,79,.16);border-radius:12px;
  background:rgba(255,255,255,.85);color:#16324f;
  font:inherit;font-size:13px;line-height:1.6;resize:none;
}
#depthmap .dp-input:focus{outline:none;border-color:#2f62ad;box-shadow:0 0 0 3px rgba(47,98,173,.12)}
#depthmap .dp-input::placeholder{color:#8fa3bb}

/* 다시 그린 결과 — 무대 아래 줄 */
#depthmap .dp-rs-out{
  width:100%;max-height:320px;margin-bottom:8px;
  border-radius:12px;background:#0b1119;object-fit:contain;
}
/* 참조 사진 줄 (2026-09-08 · 고급 엔진) — 올린 사진을 작게 늘어놓고 × 로 뺀다 */
#depthmap .dp-refs{display:flex;gap:8px;flex-wrap:wrap}
#depthmap .dp-ref{position:relative;display:inline-flex;width:74px;height:74px;border-radius:12px;overflow:hidden;border:1px solid var(--dp-line);background:rgba(255,255,255,.04)}
#depthmap .dp-ref img{width:100%;height:100%;object-fit:cover;display:block}
#depthmap .dp-ref-x{
  position:absolute;top:3px;right:3px;width:20px;height:20px;
  display:grid;place-items:center;padding:0;
  border:1px solid rgba(255,255,255,.28);border-radius:999px;
  background:rgba(8,12,18,.72);color:#fff;
  font:900 12px/1 inherit;cursor:pointer;
}
#depthmap .dp-ref-x:hover{background:rgba(198,58,58,.85);border-color:rgba(255,255,255,.5)}
html:not([data-theme="dark"]) body #depthmap .dp-ref-x{background:rgba(255,255,255,.86);border-color:rgba(22,50,79,.24);color:#16324f}

/* 고르는 알약 안의 설명 줄 */
#depthmap .dp-seg u{
  display:block;margin-top:3px;text-decoration:none;
  font-size:10.5px;font-weight:600;opacity:.7;line-height:1.4;
}
/* 다시 그리기일 때는 추출 결과 카드 줄을 접는다 — 지금 하는 일과 상관없다 */
body.dp-restyle #depthmap .depth-output-toggles,
body.dp-restyle #depthmap .depth-result-grid{display:none!important}

/* ══════════ v5200 (2026-08-31) ══════════════════════════════
   1. 영상이 커졌다 줄어들었다 하던 것
      무대 높이는 `--dp-free = 창높이 − 위 − 하단바높이` 로 잰다.
      그런데 상태 줄(.dp-notes)이 생겼다 사라질 때마다 하단바가
      59px 씩 오르내려서, 그때마다 영상이 통째로 커졌다 줄었다 했다.
      말 한 줄이 들어갈 자리를 늘 비워 둔다 — 말이 없어도 자리는 그대로다.
      (비어 있을 때 display:none 이던 규칙도 그래서 걷어낸다.) */
#depthmap .dp-notes{min-height:43px}
#depthmap .dp-notes:empty{display:grid}

/* 2. 재생 막대 — 유리판은 밝은데 안쪽은 어두운 배경용 색 그대로였다.
      시간 글씨 #93a5bd 는 이 판 위에서 **대비 1.37** (기준 4.5),
      막대 트랙은 흰색 반투명이라 아예 보이지 않았다.
      판을 밝게 칠한 쪽(arife-glass-console-v600.css)이 아이들 색까지
      바꿔 주지 않아서 생긴 일이다 — 여기서 함께 맞춘다. */
#depthmap .dp-tport .dp-ttime{color:#3b424e}          /* 이 판 위에서 7.6 */
#depthmap .dp-tport .dp-tbar{
  background:linear-gradient(180deg,
    transparent calc(50% - 2px),
    rgba(20,32,46,.24) calc(50% - 2px),
    rgba(20,32,46,.24) calc(50% + 2px),
    transparent calc(50% + 2px));
}
#depthmap .dp-tport .dp-tbar>i{
  background:#1c56be;
  box-shadow:0 0 0 1px rgba(255,255,255,.55);
}
/* 어두운 화면에서는 판도 어두워진다 — 그때는 원래 색으로 되돌린다 */
html[data-theme="dark"] #depthmap .dp-tport .dp-ttime{color:#a8b0ba}
html[data-theme="dark"] #depthmap .dp-tport .dp-tbar{
  background:linear-gradient(180deg,
    transparent calc(50% - 2px),
    rgba(255,255,255,.20) calc(50% - 2px),
    rgba(255,255,255,.20) calc(50% + 2px),
    transparent calc(50% + 2px));
}
html[data-theme="dark"] #depthmap .dp-tport .dp-tbar>i{
  background:#6ea8ff;box-shadow:0 0 0 1px rgba(0,0,0,.35);
}

/* 3. 경고·실패·완료가 전부 같은 회색 판이었다 (2026-08-31 실측)
      유리 시트(arife-glass-console-v600)와 물방울 시트(arife-droplet-tools-v970)가
      `.dp-msg` 의 바탕과 왼쪽 실선을 !important 로 덮으면서, warn·bad·ok 가
      **한 가지 회색 판으로 뭉개졌다.** 실패 메시지가 보통 알림과 똑같이 생겼다 —
      오늘 스타일 전이가 조용히 실패했을 때, 설령 말이 떴어도 실패로 안 보였을 것이다.

      물방울 시트가 `html body.a-glass-page.dp-page:not(#nope):not(#_):not(#_)` 라는
      3-id armor 를 쓰므로 여기서는 4-id 로 되찾는다. 글씨는 어두운 채로 두고
      (읽기 쉬움), 판 색과 왼쪽 실선으로 가른다. */
html body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.ok{
  background:rgba(31,157,99,.13)!important;
  box-shadow:inset 3px 0 0 #1f9d63!important;
}
html body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.warn{
  background:rgba(184,124,0,.15)!important;
  box-shadow:inset 3px 0 0 #b87c00!important;
}
html body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.bad{
  background:rgba(180,35,42,.13)!important;
  box-shadow:inset 3px 0 0 #b4232a!important;
}
html body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.bad b{color:#8c1a20!important}   /* 흰 판 위에서 8.0 */
html body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.warn b{color:#7a4f00!important}  /* 흰 판 위에서 8.2 */
/* 어두운 화면에서는 원래의 어두운 띠 색이 맞다 — 되돌린다 */
html[data-theme="dark"] body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.ok{
  background:rgba(18,66,48,.5)!important;box-shadow:inset 3px 0 0 #3ddc97!important;
}
html[data-theme="dark"] body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.warn{
  background:rgba(96,74,24,.5)!important;box-shadow:inset 3px 0 0 #ffcf5c!important;
}
html[data-theme="dark"] body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.bad{
  background:rgba(92,26,44,.55)!important;box-shadow:inset 3px 0 0 #ff7f9c!important;
}
html[data-theme="dark"] body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.bad b{color:#ff9bb0!important}
html[data-theme="dark"] body:not(#_q1):not(#_q2):not(#_q3):not(#_q4) #depthmap .dp-notes .dp-msg.warn b{color:#ffd479!important}

/* ══════════ 2026-09-08 · 팝오버 두 가지 흠 ══════════════════
   1) 다크에서 안내 줄이 안 읽혔다
      .dp-msg 는 data-keep-brand 라서 테마 스크립트가 건너뛴다. 그래서
      판은 밝은 화면용 흰 띠(rgba(255,255,255,.72))로 남는데, 글씨 색은
      테마 시트의 다크 규칙(회색 #a0a7af)이 이겨서 **흰 띠 위 회색 글씨**가
      됐다(실측 대비 1.9). 굵은 글씨만 겨우 보였던 까닭이다.
      다크에서는 판까지 어둡게 잡아 준다. 테마 시트가 :not(#..) 일곱 개를
      쓰므로 여기서는 #depthmap 까지 합쳐 여덟이 되게 둔다. */
html[data-theme="dark"] body:not(#_a):not(#_b):not(#_c):not(#_d):not(#_e):not(#_f):not(#_g) #depthmap .dp-pop .dp-msg{
  border-left:3px solid #5b9bec!important;
  background:rgba(96,140,205,.13)!important;
  box-shadow:inset 0 0 0 1px rgba(130,175,240,.22)!important;
  color:#c2d3e8!important;
}
html[data-theme="dark"] body:not(#_a):not(#_b):not(#_c):not(#_d):not(#_e):not(#_f):not(#_g) #depthmap .dp-pop .dp-msg b{ color:#eaf3ff!important; }
html[data-theme="dark"] body:not(#_a):not(#_b):not(#_c):not(#_d):not(#_e):not(#_f):not(#_g) #depthmap .dp-pop .dp-msg.warn{
  border-left-color:#ffcf5c!important;
  background:rgba(150,116,38,.16)!important;
  box-shadow:inset 0 0 0 1px rgba(255,207,92,.22)!important;
  color:#e8d6ab!important;
}
html[data-theme="dark"] body:not(#_a):not(#_b):not(#_c):not(#_d):not(#_e):not(#_f):not(#_g) #depthmap .dp-pop .dp-msg.warn b{ color:#ffd479!important; }

/* 2) 설명 줄이 알약 밖으로 삐져나왔다
      .dp-seg 는 white-space:nowrap 인데 '고급' 의 설명이 길어(속 243px,
      알약 216px) 글씨가 테두리를 넘어 옆 단추를 침범했다(실측).
      줄을 접게 하고 알약 높이를 내용에 맞춘다. */
#depthmap .dp-pop .dp-seg{
  height:auto!important;min-height:var(--dp-h-chip);
  padding-top:9px!important;padding-bottom:9px!important;
  white-space:normal!important;overflow:hidden;
  text-align:center;line-height:1.35;
}
#depthmap .dp-pop .dp-seg u{white-space:normal;word-break:keep-all}
