<style>
/* Khung bài viết: thu nhỏ để tập trung */
.mu-post-wrap{
  max-width: 980px;           /* đổi 860 / 920 / 980 tuỳ mắt */
  margin: 0 auto;             /* canh giữa */
  padding: 0 14px;            /* thở ở mobile */
}

/* Card nội dung */
.mu-post-card{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

/* Meta/title bọc trong card */
.mu-post-card .blog-meta{
  padding: 18px 18px 12px;
}

/* Content bọc trong card */
.mu-post-card .blog-content{
  padding: 18px;
}

/* Nội dung bên trong bài (HTML lấy từ DB) */
.mu-post-body{
  line-height: 1.75;
  font-size: 15px;
}

/* Responsive cho ảnh/video/table trong content */
.mu-post-body img,
.mu-post-body video{
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

.mu-post-body iframe{
  max-width: 100% !important;
}

.mu-post-body table{
  width: 100% !important;
  max-width: 100%;
}

.mu-post-body pre,
.mu-post-body code{
  white-space: pre-wrap;
  word-break: break-word;
}

/* Dòng Posted gọn và nhẹ */
.mu-post-foot{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: flex-end;
  opacity: .85;
  font-size: 13px;
}

/* Mobile thu gọn hơn */
@media (max-width: 991px){
  .mu-post-wrap{ max-width: 720px; }
}
@media (max-width: 575px){
  .mu-post-wrap{ max-width: 100%; padding: 0 10px; }
  .mu-post-card .blog-content{ padding: 14px; }
}
/* =========================
   MU POST – Fantasy Medieval Skin
   Scope: .mu-post-wrap / .mu-post-card / .mu-post-body
========================= */

.mu-post-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 14px;
}

/* Card: khung + nền + rune line */
.mu-post-card{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
}

/* overlay nền texture + vignette */
.mu-post-card:before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 50% 0%, rgba(0,255,220,.06), transparent 55%),
    radial-gradient(900px 600px at 10% 20%, rgba(255,255,255,.03), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.55)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.015) 0 2px, rgba(0,0,0,0) 2px 6px);
  mix-blend-mode: screen;
  opacity: .85;
}

.mu-post-card:after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background: radial-gradient(120% 95% at 50% 20%, transparent 55%, rgba(0,0,0,.55) 100%);
  opacity: .85;
}

/* Góc “kim loại” đơn giản bằng pseudo */
.mu-post-orn{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 2;
}
.mu-post-orn:before,
.mu-post-orn:after{
  content:"";
  position:absolute;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(0,255,220,.16);
  opacity: .9;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.45));
}
.mu-post-orn:before{
  left: 14px; top: 14px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 14px;
}
.mu-post-orn:after{
  right: 14px; top: 14px;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 14px;
}

/* Meta / Title */
.mu-post-card .blog-meta{
  position: relative;
  z-index: 3;
  padding: 18px 18px 12px;
}

/* Rune line dưới title */
.mu-post-card .blog-meta{
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mu-post-card .blog-meta:after{
  content:"";
  display:block;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,255,220,.55),
    rgba(255,255,255,.10),
    rgba(0,255,220,.55),
    transparent
  );
  opacity: .9;
}

/* Content padding */
.mu-post-card .blog-content{
  position: relative;
  z-index: 3;
  padding: 18px 20px 20px;
}

/* =========================
   Typography – giảm phân tán
========================= */

.mu-post-body{
  line-height: 1.78;
  font-size: 15px;
  letter-spacing: .15px;
  color: rgba(255,255,255,.86);
  text-rendering: optimizeLegibility;
}

/* đoạn văn: ít nhưng đủ “thở” */
.mu-post-body p{
  margin: 0 0 12px;
}

/* heading trong content (nếu bài có h1-h4) */
.mu-post-body h1,
.mu-post-body h2,
.mu-post-body h3,
.mu-post-body h4{
  margin: 18px 0 10px;
  line-height: 1.25;
  color: rgba(255,255,255,.95);
  letter-spacing: .3px;
}
.mu-post-body h2{
  font-size: 20px;
  position: relative;
  padding-left: 12px;
}
.mu-post-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-post-body h3{ font-size: 17px; opacity: .95; }
.mu-post-body h4{ font-size: 16px; opacity: .92; }

/* list: giảm rời rạc */
.mu-post-body ul,
.mu-post-body ol{
  margin: 8px 0 14px 18px;
  padding: 0;
}
.mu-post-body li{
  margin: 6px 0;
}
.mu-post-body ul li::marker{
  color: rgba(0,255,220,.55);
}

/* link fantasy nhẹ */
.mu-post-body a{
  color: rgba(0,255,220,.90);
  text-decoration: none;
  border-bottom: 1px dotted rgba(0,255,220,.45);
}
.mu-post-body a:hover{
  border-bottom-color: rgba(0,255,220,.85);
}

/* blockquote / note box */
.mu-post-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: 10px;
  color: rgba(255,255,255,.88);
}

/* hr thành “divider rune” */
.mu-post-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/video/table responsive + căn giữa đẹp hơn */
.mu-post-body img,
.mu-post-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);
}

/* caption nếu có */
.mu-post-body figcaption{
  text-align: center;
  font-size: 13px;
  opacity: .75;
  margin-top: 6px;
}

.mu-post-body table{
  width: 100% !important;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
}
.mu-post-body table td,
.mu-post-body table th{
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mu-post-body table tr:nth-child(even){
  background: rgba(255,255,255,.02);
}

/* code/pre nếu bài có */
.mu-post-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;
}
.mu-post-body code{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 8px;
}

/* Footer Posted */
.mu-post-foot{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:flex-end;
  font-size: 13px;
  opacity: .82;
}

/* Mobile tinh gọn */
@media (max-width: 575px){
  .mu-post-card .blog-content{ padding: 14px; }
  .mu-post-card .blog-meta{ padding: 14px 14px 10px; }
  .mu-post-orn:before,.mu-post-orn:after{ width: 84px; height: 84px; }
}
/* Headings */
.mu-post-body h1, .mu-post-body h2, .mu-post-body h3, .mu-post-body h4{
  margin: 18px 0 10px !important;
  line-height: 1.25;
  color: rgba(255,255,255,.95) !important;
}
.mu-post-body h2{
  font-size: 22px;
  padding-left: 12px;
  position: relative;
}
.mu-post-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);
}
.mu-post-body h3{ font-size: 17px; opacity: .95; }

/* Bullet list giữ đơn giản */
.mu-post-body ul{
  margin: 10px 0 14px 18px !important;
  padding: 0 !important;
}
.mu-post-body ul > li{ margin: 6px 0 !important; }
.mu-post-body ul > li::marker{ color: rgba(0,255,220,.60); }

/* Quote -> quest note */
.mu-post-body blockquote{
  margin: 14px 0 18px !important;
  padding: 12px 14px !important;
  border-left: 3px solid rgba(0,255,220,.55) !important;
  background: rgba(255,255,255,.03) !important;
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

/* Table MU dark */
.mu-post-body table{
  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-post-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-post-body tbody td{
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.84) !important;
}
.mu-post-body tbody tr:hover td{
  background: rgba(0,255,220,.04) !important;
}
.mu-post-body tbody tr:last-child td{ border-bottom: 0 !important; }

/* Images responsive */
.mu-post-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);
}
/* =========================
   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);
}
background: rgba(0,255,220,.10);
border: 1px solid rgba(0,255,220,.30);
background: rgba(255,255,255,.03);
border: 1px solid rgba(255,255,255,.08);
.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);
}
</style>