/* ===== Guides Category – Clean + Fantasy (scoped) ===== */
.mu-guide-cat{
  list-style:none;
  margin: 0;
  padding: 8px 0 10px;
}

.mu-cat-item{ margin: 0; padding: 0; }

.mu-cat-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:100%;
  padding: 10px 14px;
  margin: 6px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration:none;
  transition: .15s ease;
}
.mu-cat-toggle:hover{
  background: rgba(255,255,255,.04);
  border-color: rgba(0,255,220,.18);
  transform: translateY(-1px);
}

.mu-cat-name{ font-weight: 600; letter-spacing: .2px; }

/* chevron */
.mu-cat-chevron{
  width:10px; height:10px;
  border-right:2px solid rgba(0,255,220,.65);
  border-bottom:2px solid rgba(0,255,220,.65);
  transform: rotate(45deg);
  transition: .18s ease;
}

/* panel con */
.mu-cat-panel{
  margin: 0 10px 10px;
  padding: 8px 10px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.22);
}

/* link guide */
.mu-guide-link{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding: 8px 10px;
  border-radius: 9px;
  text-decoration:none;
  color: rgba(255,255,255,.80);
  transition: .12s ease;
}
.mu-guide-link:hover{
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.92);
}
.mu-guide-dot{
  width: 6px; height: 6px;
  margin-top: 7px;
  border-radius: 2px;
  background: rgba(0,255,220,.65);
  box-shadow: 0 0 12px rgba(0,255,220,.25);
  flex: 0 0 auto;
}
.mu-guide-title{
  line-height: 1.35;
  font-size: 13.5px;
  opacity: .95;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* OPEN state */
.mu-cat-item.is-open > .mu-cat-toggle{
  background: rgba(0,255,220,.06);
  border-color: rgba(0,255,220,.22);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.mu-cat-item.is-open > .mu-cat-toggle .mu-cat-chevron{
  transform: rotate(-135deg);
}

/* ACTIVE guide item (đang đọc) */
.mu-guide-link.is-active{
  background: rgba(0,255,220,.08);
  border: 1px solid rgba(0,255,220,.18);
}
.mu-guide-link.is-active .mu-guide-title{
  color: rgba(255,255,255,.95);
}

/* Sidebox title gọn */
.vs-sidebox .sidebox-title{
  padding: 14px 14px 6px;
  margin: 0 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* ===== Guides Left Nav – Compact MU list ===== */
.mu-guide-nav{
  padding: 6px 8px 10px;
}

/* mỗi group */
.mu-guide-group{
  margin: 0 0 10px;
}

/* tiêu đề category */
.mu-guide-group-title{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 8px 10px;
  margin: 0 6px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 13.5px;
}

/* rune/diamond nhỏ */
.mu-guide-group-title .mu-rune{
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: rgba(0,255,220,.60);
  box-shadow: 0 0 14px rgba(0,255,220,.22);
  border-radius: 2px;
  flex: 0 0 auto;
}

/* list link */
.mu-guide-links{
  margin: 0 6px;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}

/* item gọn */
.mu-guide-item{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 7px 8px;              /* gọn chiều dọc */
  border-radius: 8px;
  text-decoration:none;
  color: rgba(255,255,255,.78);
  transition: .12s ease;
}

.mu-guide-item:hover{
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.92);
}

/* bullet nhỏ */
.mu-guide-item .mu-bullet{
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 2px;
  background: rgba(0,255,220,.55);
  box-shadow: 0 0 12px rgba(0,255,220,.18);
  flex: 0 0 auto;
}

.mu-guide-item .mu-text{
  font-size: 13.2px;
  line-height: 1.25;             /* tránh “tản” */
  opacity: .96;

  /* title dài không làm menu cao quá */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* active item (đang đọc) */
.mu-guide-item.is-active{
  background: rgba(0,255,220,.08);
  border: 1px solid rgba(0,255,220,.18);
}
.mu-guide-item.is-active .mu-text{
  color: rgba(255,255,255,.96);
}

/* cuộn gọn nếu quá dài */
.mu-guide-nav{
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding-right: 6px;
}
.mu-guide-nav::-webkit-scrollbar{ width: 6px; }
.mu-guide-nav::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.10);
  border-radius: 10px;
}

/* sidebox title bớt trống */
.vs-sidebox .sidebox-title{
  padding: 12px 12px 6px;
  margin: 0 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* ===== Make CATEGORY headers stronger / longer ===== */
.mu-guide-group-title{
  /* full width bar */
  width: calc(100% - 12px);
  margin: 14px 6px 8px;
  padding: 10px 12px;

  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0,255,220,.10), rgba(255,255,255,.02) 45%, rgba(0,0,0,0));
  border: 1px solid rgba(0,255,220,.16);

  /* “lift” */
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  position: relative;
}

.mu-guide-group-title span{
  /* text hierarchy */
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

/* left accent line */
.mu-guide-group-title:before{
  content:"";
  position:absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  border-radius: 3px;
  background: rgba(0,255,220,.65);
  box-shadow: 0 0 14px rgba(0,255,220,.25);
  opacity: .95;
}

/* rune icon bigger + placed like badge */
.mu-guide-group-title .mu-rune{
  width: 10px;
  height: 10px;
  background: rgba(0,255,220,.70);
  box-shadow: 0 0 16px rgba(0,255,220,.25);
  border-radius: 3px;
  transform: rotate(45deg);
  margin-left: 10px;   /* để tránh dính accent line */
}

/* ===== Separate the list block under category ===== */
.mu-guide-links{
  margin: 0 6px 10px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.14);
}

/* Slightly compact item but clear */
.mu-guide-item{
  padding: 7px 10px;
  border-radius: 10px;
}

.mu-guide-item:hover{
  background: rgba(255,255,255,.035);
}

/* Item text lower “priority” than category */
.mu-guide-item .mu-text{
  font-weight: 500;
  letter-spacing: .01em;
  opacity: .92;
}
.mu-guide-item .mu-bullet{
  width: 0;
  height: 0;
  margin-top: 6px;
  border-left: 7px solid rgba(0,255,220,.70);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  box-shadow: 0 0 12px rgba(0,255,220,.18);
  border-radius: 0;
  background: none;
}
/* ===== Right content: make reading less "ngang ngang" ===== */
.mu-guide-content{
  padding: 18px 18px 26px;
}

/* giới hạn độ rộng đọc */
.mu-guide-body{
  max-width: 920px;          /* chỉnh 860-980 tuỳ mắt */
  margin: 0 auto;
  line-height: 1.78;
  font-size: 15px;
  letter-spacing: .15px;
  color: rgba(255,255,255,.86);
}

/* đoạn văn gọn, có nhịp */
.mu-guide-body p{
  margin: 0 0 12px;
}

/* headings: tạo nhịp và neo thị giác */
.mu-guide-body h1,
.mu-guide-body h2,
.mu-guide-body h3,
.mu-guide-body h4{
  margin: 18px 0 10px;
  line-height: 1.25;
  color: rgba(255,255,255,.95);
}

.mu-guide-body h2{
  font-size: 20px;
  position: relative;
  padding-left: 12px;
}
.mu-guide-body h2:before{
  content:"";
  position:absolute;
  left:0; top:.28em;
  width: 6px; height: 14px;
  background: rgba(0,255,220,.55);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0,255,220,.25);
}

.mu-guide-body h3{ font-size: 17px; opacity: .95; }
.mu-guide-body h4{ font-size: 16px; opacity: .92; }

/* list: bớt “trôi ngang” */
.mu-guide-body ul,
.mu-guide-body ol{
  margin: 8px 0 14px 18px;
  padding: 0;
}
.mu-guide-body li{ margin: 6px 0; }
.mu-guide-body ul li::marker{ color: rgba(0,255,220,.55); }

/* divider rune */
.mu-guide-body hr{
  border: 0;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,255,220,.35),
    rgba(255,255,255,.08),
    rgba(0,255,220,.35),
    transparent
  );
}

/* ảnh/table responsive */
.mu-guide-body img,
.mu-guide-body video{
  max-width:100% !important;
  height:auto !important;
  display:block;
  margin: 12px auto;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.06);
}
.mu-guide-body table{
  width:100% !important;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
}
.mu-guide-body th, .mu-guide-body td{
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ===== Quest Panel style (auto for blockquote) ===== */
.mu-guide-body blockquote{
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 3px solid rgba(0,255,220,.55);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

/* code/pre */
.mu-guide-body pre{
  margin: 14px 0;
  padding: 12px 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow:auto;
}
/* 1. Cho khối list tận dụng full chiều ngang sidebox */
.mu-guide-nav{
  padding: 4px 6px 8px;     /* giảm padding ngang */
}

/* 2. Category title full width thật sự */
.mu-guide-group-title{
  width: 100%;
  margin: 12px 0 6px;
  padding: 10px 14px;       /* chỉ padding trong */
}

/* 3. Khung chứa list bỏ margin dư */
.mu-guide-links{
  margin: 0;
  padding: 6px 6px 8px;     /* giảm hai bên */
}

/* 4. Item chiếm full ngang */
.mu-guide-item{
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
}

/* 5. Bullet không chiếm quá nhiều */
.mu-guide-item .mu-bullet{
  flex: 0 0 12px;
  margin-top: 6px;
}

/* 6. Text chiếm toàn bộ phần còn lại */
.mu-guide-item .mu-text{
  flex: 1;
  max-width: 100%;
  line-height: 1.35;
  font-size: 13.5px;

  /* Cho phép tối đa 2 dòng nhưng rộng hơn trước */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vs-sidebox{
  padding-left: 14px;
  padding-right: 14px;
}
/* =========================
   Guides READ – Content Override (scoped)
   Chỉ ảnh hưởng trong .mu-guide-content / .mu-guide-body
========================= */

.mu-guide-content{
  padding: 18px 18px 26px !important;
}

.mu-guide-body{
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255,255,255,.86);
  line-height: 1.78;
  font-size: 15px;
  letter-spacing: .15px;
}

/* Reset nhẹ các thứ hay bị theme đè */
.mu-guide-body *{
  box-sizing: border-box;
}

/* Links */
.mu-guide-body a{
  color: rgba(0,255,220,.9) !important;
  text-decoration: none !important;
  border-bottom: 1px dotted rgba(0,255,220,.35);
}
.mu-guide-body a:hover{
  border-bottom-color: rgba(0,255,220,.8);
}

/* Paragraph & headings */
.mu-guide-body p{ margin: 0 0 12px !important; }
.mu-guide-body h1,.mu-guide-body h2,.mu-guide-body h3,.mu-guide-body h4{
  margin: 18px 0 10px !important;
  line-height: 1.25;
  color: rgba(255,255,255,.95) !important;
}
.mu-guide-body h2{
  font-size: 20px;
  padding-left: 12px;
  position: relative;
}
.mu-guide-body h2:before{
  content:"";
  position:absolute;
  left:0; top:.28em;
  width: 6px; height: 14px;
  background: rgba(0,255,220,.55);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0,255,220,.22);
}

/* Lists */
.mu-guide-body ul,.mu-guide-body ol{
  margin: 8px 0 14px 18px !important;
  padding: 0 !important;
}
.mu-guide-body li{ margin: 6px 0 !important; }
.mu-guide-body ul li::marker{ color: rgba(0,255,220,.55); }

/* Images responsive */
.mu-guide-body img{
  max-width: 100% !important;
  height: auto !important;
  display:block;
  margin: 12px auto !important;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}

/* =========================
   TABLE – MU Dark Panel style (đè mạnh)
========================= */
.mu-guide-body table{
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin: 14px 0 18px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(0,0,0,.22) !important;
}

.mu-guide-body thead th{
  background: rgba(255,255,255,.04) !important;
  color: rgba(255,255,255,.92) !important;
  font-weight: 700 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12.5px !important;
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.mu-guide-body tbody td,
.mu-guide-body tbody th{
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.84) !important;
  vertical-align: top;
}

.mu-guide-body tbody tr:hover td,
.mu-guide-body tbody tr:hover th{
  background: rgba(0,255,220,.04) !important;
}

.mu-guide-body tbody tr:last-child td,
.mu-guide-body tbody tr:last-child th{
  border-bottom: 0 !important;
}

/* Cột lệnh dạng code cho đẹp */
.mu-guide-body td:first-child{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  color: rgba(255,255,255,.90) !important;
}

/* Table nhỏ trên mobile: cuộn ngang nếu cần */
.mu-guide-body .table-wrap{
  overflow-x: auto;
}
@media (max-width: 991px){
  .mu-guide-body table{ display: block; overflow-x: auto; }
  .mu-guide-body thead, .mu-guide-body tbody, .mu-guide-body tr{ display: table; width: 100%; }
}
/* ===== Numbered list nâng cấp ===== */
.blog-content ol{
  counter-reset: mu-step;
  list-style: none !important;
  padding-left: 0 !important;
  margin: 18px 0 !important;
}

.blog-content ol > li{
  counter-increment: mu-step;
  position: relative;
  padding: 14px 14px 14px 64px !important;
  margin: 12px 0 !important;
  line-height: 1.65;
  font-weight: 500;
  
  border-radius: 14px;
  background: linear-gradient(
      90deg,
      rgba(0,255,220,.06),
      rgba(255,255,255,.01)
  );
  border: 1px solid rgba(0,255,220,.15);
}

/* Số nổi bật */
.blog-content ol > li::before{
  content: counter(mu-step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  
  width: 34px;
  height: 34px;
  border-radius: 10px;

  background: rgba(0,255,220,.15);
  border: 1px solid rgba(0,255,220,.45);
  
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 18px rgba(0,255,220,.25);
}
/* =========================
   News CKEditor Output – Styled
   Scope: .mu-post-body
========================= */

/* Ordered list -> step cards */
.mu-post-body ol{
  counter-reset: mu-step;
  list-style: none !important;
  padding-left: 0 !important;
  margin: 18px 0 !important;
}

.mu-post-body ol > li{
  counter-increment: mu-step;
  position: relative;
  padding: 14px 14px 14px 64px !important;
  margin: 12px 0 !important;
  line-height: 1.65;
  font-weight: 500;

  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(0,255,220,.06),
    rgba(255,255,255,.01)
  );
  border: 1px solid rgba(0,255,220,.15);
}

.mu-post-body ol > li::before{
  content: counter(mu-step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 34px;
  height: 34px;
  border-radius: 10px;

  background: rgba(0,255,220,.15);
  border: 1px solid rgba(0,255,220,.45);

  color: #fff;
  font-weight: 800;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 18px rgba(0,255,220,.25);
}
/* ===== H3 nổi bật kiểu Section ===== */
.mu-post-body h3{
  margin: 26px 0 16px !important;
  padding: 12px 18px !important;

  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: .02em;

  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(0,255,220,.08),
    rgba(255,255,255,.01)
  );
  border: 1px solid rgba(0,255,220,.18);

  position: relative;
}

/* Accent trái giống step */
.mu-post-body h3::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:6px;
  height:50%;
  background:rgba(0,255,220,.65);
  border-radius:3px;
  box-shadow:0 0 14px rgba(0,255,220,.35);
}

.mu-post-body ol > li{
  background: linear-gradient(
      90deg,
      rgba(0,255,220,.10),
      rgba(255,255,255,.02)
  );
  border: 1px solid rgba(0,255,220,.25);
}
.mu-post-body blockquote{
  background: rgba(255,255,255,.05) !important;
  border-left: 3px solid rgba(0,255,220,.75) !important;
  color: rgba(255,255,255,.92);
}
.mu-post-card{
  backdrop-filter: blur(4px);
}
/* ===== H3 nổi bật kiểu Section ===== */
.mu-post-body h3{
  margin: 26px 0 16px !important;
  padding: 12px 18px !important;

  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: .02em;

  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(0,255,220,.08),
    rgba(255,255,255,.01)
  );
  border: 1px solid rgba(0,255,220,.18);

  position: relative;
}

/* Accent trái giống step */
.mu-post-body h3::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:6px;
  height:50%;
  background:rgba(0,255,220,.65);
  border-radius:3px;
  box-shadow:0 0 14px rgba(0,255,220,.35);
}

/* ===== H3 nổi bật kiểu Section (GUIDES) ===== */
.mu-guide-body h3{
  margin: 26px 0 16px !important;
  padding: 12px 18px !important;

  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: .02em;

  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(0,255,220,.08),
    rgba(255,255,255,.01)
  );
  border: 1px solid rgba(0,255,220,.18);

  position: relative;
}
.mu-guide-body h3::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:6px;
  height:50%;
  background:rgba(0,255,220,.65);
  border-radius:3px;
  box-shadow:0 0 14px rgba(0,255,220,.35);
}