/* ═══ XP ERROR POPUP SYSTEM ═══ */
.xp-error-win{
  position:fixed;
  width:380px;
  background:#d4d0c8;
  border:2px solid #fff;
  border-right-color:#404040;
  border-bottom-color:#404040;
  box-shadow:inset 1px 1px 0 #fff, 2px 2px 0 #000;
  font-family:'Share Tech Mono',monospace;
  z-index:8000;
  cursor:default;
  image-rendering:pixelated;
}
.xp-tb{
  background:linear-gradient(180deg,#a81010 0%,#cc0000 40%,#880000 100%);
  padding:3px 4px 3px 6px;
  display:flex;align-items:center;gap:6px;
  cursor:move;user-select:none;
  border-bottom:1px solid #600000;
}
.xp-tb-icon{
  width:14px;height:14px;flex-shrink:0;
  image-rendering:pixelated;
}
.xp-tb-title{
  flex:1;color:#fff;font-size:11px;font-weight:700;
  text-shadow:1px 1px 0 #000;
  letter-spacing:0.3px;
}
.xp-tb-btn{
  width:21px;height:17px;
  background:linear-gradient(180deg,#e8e0d0,#b8b0a0);
  border:1px solid #fff;
  border-right-color:#404040;
  border-bottom-color:#404040;
  box-shadow:inset 1px 1px 0 #fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:10px;font-weight:900;color:#000;
  flex-shrink:0;
}
.xp-tb-btn:active{
  border-color:#404040;
  border-right-color:#fff;
  border-bottom-color:#fff;
  box-shadow:none;
}
.xp-body{
  padding:16px 14px 14px;
  display:flex;gap:14px;align-items:flex-start;
  background:#d4d0c8;
}
.xp-body-msg{
  flex:1;font-size:11px;color:#000;line-height:1.6;
}
.xp-body-msg b{ font-size:12px; }
.xp-btns{
  display:flex;justify-content:center;gap:8px;
  padding:0 14px 14px;background:#d4d0c8;
}
.xp-btn{
  min-width:80px;height:23px;
  background:linear-gradient(180deg,#e8e0d0,#b8b0a0);
  border:1px solid #fff;
  border-right-color:#404040;
  border-bottom-color:#404040;
  box-shadow:inset 1px 1px 0 #fff;
  font-family:'Share Tech Mono',monospace;
  font-size:11px;cursor:pointer;color:#000;
  display:flex;align-items:center;justify-content:center;
  padding:0 12px;
}
.xp-btn:active{
  border-color:#404040;border-right-color:#fff;border-bottom-color:#fff;
  box-shadow:none;padding-top:1px;padding-left:13px;
}
.xp-btn:focus{ outline:1px dotted #000; outline-offset:-3px; }
