:root {
  --bg:        #fdf8f0;
  --bg2:       #f5ede0;
  --card:      #ffffff;
  --card2:     #fef9f2;
  --border:    #e0c080;
  --border2:   #c8962a;
  --red:       #b22222;
  --red2:      #d93025;
  --gold:      #9a6f00;
  --gold2:     #c8890a;
  --gold3:     #f0c040;
  --text:      #1a0804;
  --text2:     #4a2010;
  --text3:     #8a6040;
  --hdr-bg:    #7a1515;
  --hdr-text:  #fde8a0;
  --moc:       #1a7a3a;
  --hoa:       #c0392b;
  --tho:       #9a6f00;
  --kim:       #607080;
  --thuy:      #1a5a9a;
  --good:      #1a7a3a;
  --bad:       #c0392b;
  --shadow:    rgba(100,50,0,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 20px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', 'Arial', sans-serif;
  min-height: 100vh;
}

/* ── HEADER ── */
/* Dùng px cố định cho header — không bị scale theo base rem */
.app-header {
  background: var(--hdr-bg);
  border-bottom: 3px solid var(--gold2);
  padding: 0 14px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 680px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0;
}
.header-logo {
  font-size: 30px; line-height: 1; flex-shrink: 0;
}
.header-title {
  flex: 1; min-width: 0; overflow: hidden;
}
.header-title h1 {
  font-size: 15px; color: var(--hdr-text);
  font-weight: 900; letter-spacing: 0.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.2;
}
.header-title p {
  font-size: 10px; color: rgba(253,232,160,0.6);
  letter-spacing: 1.5px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  line-height: 1.4; margin-top: 1px;
}
.header-spacer { flex: 1; min-width: 2px; }
.btn-hdr {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--hdr-text); border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all .2s; flex-shrink: 0;
  font-family: inherit; padding: 0;
}
.btn-hdr:hover { background: rgba(255,255,255,0.28); }
/* Nút MENU: pill rõ chữ, nổi bật */
.btn-menu {
  border-radius: 20px !important;
  width: auto !important; padding: 0 10px !important;
  gap: 4px; font-size: 12px !important; font-weight: 800 !important;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.22) !important;
  border-color: rgba(255,255,255,0.5) !important;
}
.btn-menu::before { content: '☰'; font-size: 14px; }
/* fallback for old class name */
.btn-profile {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--hdr-text); border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.btn-profile:hover { background: rgba(255,255,255,0.28); }

/* ── CALENDAR STRIP ── */
.cal-strip-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0 0;
  /* Không sticky — cuộn theo trang, chỉ giữ header */
  box-shadow: 0 2px 8px var(--shadow);
}
.cal-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding-bottom: 8px;
}
.cal-nav-btn {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--gold); border-radius: 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; font-weight: 700; transition: all .2s;
}
.cal-nav-btn:hover { border-color: var(--gold2); background: var(--border); }
.cal-month-label {
  font-size: 1.05rem; color: var(--text); font-weight: 800; letter-spacing: 1px;
  min-width: 170px; text-align: center; cursor: pointer;
  padding: 4px 12px; border-radius: 8px; transition: background .15s;
  user-select: none;
}
.cal-month-label:hover { background: var(--bg2); }

.cal-week {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; padding: 0 6px;
  max-width: 680px; margin: 0 auto;
}
.cal-day-col {
  text-align: center; padding: 6px 2px 8px;
  cursor: pointer; border-radius: 8px 8px 0 0;
  transition: background .15s;
}
.cal-day-col:hover { background: var(--bg2); }
.cal-day-col.active { background: var(--red); }
.cal-day-col.active .cal-dow,
.cal-day-col.active .cal-solar,
.cal-day-col.active .cal-lunar { color: #fff !important; }
.cal-dow {
  font-size: 0.92rem; color: var(--text3); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 700;
}
.cal-solar {
  font-size: 1.45rem; font-weight: 800; color: var(--text); line-height: 1.2; margin: 2px 0;
}
.cal-lunar { font-size: 0.92rem; color: var(--text3); }
.cal-day-col.sunday .cal-solar,
.cal-day-col.sunday .cal-dow { color: var(--red2); }
.cal-dot { width: 5px; height: 5px; border-radius: 50%; margin: 2px auto 0; }
.cal-dot.good { background: var(--gold2); }
.cal-dot.bad  { background: #ccc; }

/* ── TOGGLE BUTTON ── */
.cal-toggle-wrap {
  display: flex; justify-content: center;
  padding-bottom: 0;
  background: #fff;
}
.cal-toggle-btn {
  background: var(--bg2); border: 1px solid var(--border);
  border-top: none; border-radius: 0 0 16px 16px;
  padding: 4px 32px 6px; cursor: pointer;
  transition: all .2s; display: flex; align-items: center; gap: 5px;
}
.cal-toggle-btn:hover { background: var(--border); }
.toggle-arrow {
  font-size: 0.92rem; color: var(--text3);
  display: inline-block; transition: transform .3s ease;
}
.toggle-arrow.open { transform: rotate(180deg); }
.toggle-label { font-size: 0.92rem; color: var(--text3); letter-spacing: 1px; }

/* ── FULL MONTH GRID ── */
.cal-month-grid-wrap {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  background: #fff; border-bottom: 1px solid var(--border);
}
.cal-month-grid-wrap.open { max-height: 440px; }

.cal-month-dow-header {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 8px 6px 4px;
  max-width: 680px; margin: 0 auto;
  border-top: 1px solid var(--bg2);
}
.cal-month-dow-header span {
  text-align: center; font-size: 0.92rem;
  color: var(--text3); letter-spacing: 1px;
  font-weight: 700; text-transform: uppercase;
}
.cal-month-dow-header span.sunday { color: var(--red2); }

.cal-month-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 1px; padding: 0 6px 10px;
  max-width: 680px; margin: 0 auto;
}
.cm-cell {
  text-align: center; padding: 5px 2px 4px;
  cursor: pointer; border-radius: 6px;
  position: relative; transition: background .15s; min-height: 50px;
}
.cm-cell:hover { background: var(--bg2); }
.cm-cell.other-month { opacity: 0.3; }
.cm-cell.active {
  background: var(--red) !important;
}
.cm-cell.active .cm-solar,
.cm-cell.active .cm-lunar,
.cm-cell.active .cm-lunar.special { color: #fff !important; }
.cm-cell.today-cell:not(.active) { background: var(--bg2); }
.cm-cell.today-cell:not(.active) .cm-solar { color: var(--red2); font-weight: 900; }
.cm-cell.sunday-cell:not(.active) .cm-solar { color: var(--red2); }
.cm-bookmark {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-top: 11px solid var(--good);
  border-left: 11px solid transparent;
}
.cm-solar {
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  line-height: 1.2; margin-top: 4px;
}
.cm-lunar { font-size: 0.92rem; color: var(--text3); line-height: 1.2; margin-top: 1px; }
.cm-lunar.special { color: var(--red2); font-weight: 700; }

/* ── MONTH/YEAR PICKER ── */
.picker-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 200; display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.picker-overlay.open { opacity: 1; pointer-events: all; }
.picker-sheet {
  background: #fff; border-top: 3px solid var(--gold2);
  border-radius: 16px 16px 0 0; padding: 20px 16px 36px;
  width: 100%; max-width: 680px; margin: 0 auto;
  transform: translateY(100%); transition: transform .3s ease;
}
.picker-overlay.open .picker-sheet { transform: translateY(0); }
.picker-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.picker-header h3 { font-size: 1rem; color: var(--text); font-weight: 800; }
.picker-year-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 16px;
}
.picker-year-btn {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; width: 40px; height: 40px;
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.picker-year-btn:hover { border-color: var(--gold2); }
.picker-year-val {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
  min-width: 80px; text-align: center;
}
.picker-months {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.picker-month-btn {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 4px;
  font-size: 1rem; font-weight: 700; color: var(--text2);
  cursor: pointer; text-align: center; transition: all .2s;
}
.picker-month-btn:hover { border-color: var(--gold2); background: var(--border); }
.picker-month-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.picker-close {
  background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 24px;
  font-size: 1rem; color: var(--text3); cursor: pointer;
  width: 100%; margin-top: 12px;
}

/* ── MAIN CONTENT ── */
.main { max-width: 680px; margin: 0 auto; padding: 14px 12px 40px; }

/* ── DAY OVERVIEW CARD ── */
.day-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  border-top: 3px solid var(--gold2);
}
.day-date-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 14px;
}
.day-date-left .day-dow {
  font-size: 1rem; color: var(--text3); letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
}
.day-date-left .day-num {
  font-size: 4rem; font-weight: 900; color: var(--red);
  line-height: 1; letter-spacing: -2px;
}
.day-date-left .day-month { font-size: 1rem; color: var(--text2); margin-top: 2px; font-weight: 600; }
.day-score-ring { text-align: center; }
.score-circle {
  width: 76px; height: 76px; position: relative; margin: 0 auto 4px;
}
.score-circle svg { transform: rotate(-90deg); }
.score-circle .track { fill: none; stroke: #e8e0d0; stroke-width: 6; }
.score-circle .fill  { fill: none; stroke-width: 6; stroke-linecap: round; }
.score-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem; font-weight: 900; color: var(--text);
}
.score-label { font-size: 0.92rem; color: var(--text3); letter-spacing: 1px; font-weight: 600; }

.day-canchi {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px;
}
.canchi-tag {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 0.92rem; color: var(--text2);
}
.canchi-tag span { color: var(--red); font-weight: 700; }

.day-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.info-chip {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 12px;
  display: flex; align-items: center; gap: 10px;
}
.info-chip .ic-icon { font-size: 1.3rem; flex-shrink: 0; }
.info-chip .ic-label { font-size: 0.92rem; color: var(--text3); display: block; font-weight: 700; letter-spacing: 1px; }
.info-chip .ic-val   { font-size: 1rem; color: var(--text); font-weight: 700; }

.day-viec-tot {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--bg2);
  display: flex; align-items: center; gap: 8px;
}
.viec-tot-text { font-size: 1.05rem; color: var(--text2); }
.viec-tot-text strong { color: var(--red); }

/* ── SECTION CARDS ── */
.section-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px var(--shadow);
}
.section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.92rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; font-weight: 800;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--bg2);
}
.section-title .st-icon { font-size: 1.1rem; }

/* ── GIỜ TỐT ── */
.gio-tot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gio-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 6px; text-align: center;
}
.gio-emoji  { font-size: 1.6rem; margin-bottom: 4px; }
.gio-stars  { color: var(--gold2); font-size: 0.92rem; }
.gio-chi    { font-size: 0.92rem; color: var(--text); font-weight: 700; }
.gio-time   { font-size: 0.92rem; color: var(--text3); }

/* ── PHẦN THIÊN/ĐỊA ── */
.viec-list  { display: flex; flex-direction: column; gap: 6px; }
.viec-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg2); border-radius: 8px; padding: 8px 12px;
}
.viec-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.viec-dot.good { background: var(--good); }
.viec-dot.bad  { background: var(--bad);  }
.viec-text  { font-size: 1rem; color: var(--text); font-weight: 500; }
.viec-section-label {
  font-size: 0.85rem; color: var(--text3); letter-spacing: 1px;
  font-weight: 700; text-transform: uppercase;
  margin: 10px 0 6px; display: flex; align-items: center; gap: 6px;
}
.viec-section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--bg2);
}

/* ── HƯỚNG TỐT ── */
.huong-list { display: flex; flex-direction: column; gap: 6px; }
.huong-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg2); border-radius: 8px; padding: 10px 14px;
  border-left: 3px solid var(--gold2);
}
.huong-name { font-size: 1rem; color: var(--text); font-weight: 700; }
.huong-deg  { font-size: 0.8rem; color: var(--text3); }
.huong-stars { color: var(--gold2); font-size: 1rem; }

/* ── TIẾT KHÍ ── */
.tietkhi-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-left: 4px solid var(--gold2);
  border-radius: 10px; padding: 14px 16px;
}
.tietkhi-name { font-size: 1.1rem; color: var(--gold); font-weight: 800; margin-bottom: 6px; }
.tietkhi-desc { font-size: 1rem; color: var(--text2); line-height: 1.6; }

/* ── THÔNG TIN THÊM ── */
.nh-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 20px;
  font-size: 1rem; font-weight: 800; border: 2px solid;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 10px;
  font-size: 1rem; color: var(--text2); font-weight: 600;
}
.tag.good { border-color: var(--good); color: var(--good); background: #e8f8ec; }
.tag.bad  { border-color: var(--bad);  color: var(--bad);  background: #fde8e8; }

.tuoi-xung-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tuoi-xung-item {
  display: flex; flex-direction: column; align-items: center;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px; min-width: 64px;
}
.tuoi-xung-emoji { font-size: 1.5rem; }
.tuoi-xung-name  { font-size: 0.85rem; color: var(--text2); margin-top: 3px; font-weight: 600; }

.truc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 10px;
  font-size: 1rem; font-weight: 800;
}
.truc-badge.good { background: #e8f8ec; border: 1px solid var(--good); color: var(--good); }
.truc-badge.bad  { background: #fde8e8; border: 1px solid var(--bad);  color: var(--bad);  }

/* ── GIỜ LÝ THUẦN PHONG ── */
.giolythuanphong { display: flex; flex-direction: column; gap: 10px; }
.gltp-row {
  background: var(--bg2); border-radius: 10px; padding: 12px 14px;
  border-left: 4px solid;
}
.gltp-row.good { border-left-color: var(--good); }
.gltp-row.bad  { border-left-color: var(--bad);  }
.gltp-header { margin-bottom: 8px; }
.gltp-title  { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.gltp-icon   { font-size: 1rem; }
.gltp-spirit { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.gltp-badge {
  font-size: 0.92rem; font-weight: 800; letter-spacing: 1px;
  padding: 2px 8px; border-radius: 10px; text-transform: uppercase;
}
.gltp-badge.good { background: #e8f8ec; color: var(--good); border: 1px solid var(--good); }
.gltp-badge.bad  { background: #fde8e8; color: var(--bad);  border: 1px solid var(--bad);  }
.gltp-times { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; }
.gltp-slot {
  font-size: 0.92rem; font-weight: 700; color: var(--gold);
  background: #fff8e6; border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 10px;
}
.gltp-slot em { color: var(--text3); font-style: normal; font-weight: 500; }
.gltp-slot-sep { font-size: 0.85rem; color: var(--text3); }
.gltp-desc {
  font-size: 1.05rem; color: var(--text2); line-height: 1.6; margin-bottom: 8px;
}
.gltp-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 6px; }
.gltp-tag {
  font-size: 0.8rem; padding: 3px 9px; border-radius: 10px; font-weight: 600;
}
.gltp-tag.good { background: #e8f8ec; color: var(--good); border: 1px solid var(--good); }
.gltp-tag.bad  { background: #fde8e8; color: var(--bad);  border: 1px solid var(--bad);  }
.gltp-huong {
  font-size: 1rem; color: var(--text3); padding-top: 6px;
  border-top: 1px solid var(--border);
}
.gltp-huong strong { color: var(--text2); }

/* ── CHỌN NGÀY TỐT ── */
.chon-ngay-banner {
  background: linear-gradient(135deg, #7a1515 0%, #5a0e0e 100%);
  border-radius: 14px; padding: 18px;
  margin-bottom: 12px; text-align: center;
  box-shadow: 0 2px 12px rgba(122,21,21,0.25);
}
.chon-ngay-banner h3 { font-size: 1.15rem; color: #fde8a0; font-weight: 900; letter-spacing: 1px; }
.chon-ngay-banner p  { font-size: 0.92rem; color: rgba(253,232,160,0.75); margin: 4px 0 14px; }
.chon-ngay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.chon-ngay-item {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px; padding: 10px 6px; text-align: center;
  cursor: pointer; transition: all .2s;
}
.chon-ngay-item:hover { background: rgba(255,255,255,0.25); }
.chon-ngay-item .cn-icon { font-size: 1.6rem; margin-bottom: 4px; }
.chon-ngay-item .cn-name { font-size: 0.85rem; color: #fde8a0; font-weight: 600; }

/* ── USER PROFILE MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-sheet {
  background: #fff; border-top: 3px solid var(--gold2);
  border-radius: 16px 16px 0 0; padding: 24px 20px 40px;
  width: 100%; max-width: 680px; margin: 0 auto;
  transform: translateY(100%); transition: transform .3s ease;
}
.modal-overlay.open .modal-sheet { transform: translateY(0); }
.modal-title { font-size: 1.05rem; color: var(--text); font-weight: 800; margin-bottom: 16px; }
.form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.form-group { flex: 1; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text3); margin-bottom: 4px; font-weight: 700; letter-spacing: 1px; }
.form-group input {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); padding: 10px 14px;
  font-size: 1rem; outline: none; transition: border-color .15s;
}
.form-group input:focus { border-color: var(--gold2); }
.btn-save {
  background: var(--red); color: #fff; border: none;
  border-radius: 10px; padding: 12px 24px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  width: 100%; margin-top: 8px;
  font-family: inherit; letter-spacing: 0.5px;
}
.btn-save:hover { background: var(--red2); }

/* ── LIVE CLOCK ── */
#live-clock {
  font-size: 14px; /* px cố định, không bị scale */
  color: var(--hdr-text); font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap; flex-shrink: 0;
}

/* ── CHỌN NGÀY LÀNH RESULT SHEET ── */
.auspicious-sheet {
  max-height: 85vh; display: flex; flex-direction: column; padding-bottom: 20px;
}
.auspicious-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.auspicious-title { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.auspicious-close {
  background: none; border: none; font-size: 1.2rem; cursor: pointer;
  color: var(--text3); padding: 4px 8px;
}
.auspicious-sub { font-size: 0.92rem; color: var(--text3); margin-bottom: 12px; }
.auspicious-list {
  overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.aus-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 14px; background: #fff;
  display: flex; align-items: center; gap: 14px;
}
.aus-score-col {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex-shrink: 0; width: 58px;
}
.aus-score-ring {
  width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 900; color: #fff;
}
.aus-score-lbl { font-size: 0.92rem; font-weight: 800; letter-spacing: 0.5px; text-align: center; }
.aus-body { flex: 1; min-width: 0; }
.aus-date-main { font-size: 1rem; font-weight: 800; color: var(--text); }
.aus-lunar-line { font-size: 0.92rem; color: var(--text3); margin-top: 2px; }
.aus-sep { height: 1px; background: var(--border); margin: 8px 0; }
.aus-nh-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.aus-nh-pill {
  font-size: 0.8rem; font-weight: 700; color: #fff;
  padding: 2px 9px; border-radius: 20px;
}
.aus-cc-text { font-size: 0.92rem; color: var(--text2); font-weight: 600; }
.aus-truc-row { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin-bottom: 4px; }
.aus-truc-badge {
  font-size: 0.85rem; font-weight: 800; background: #fef9e7;
  border: 1px solid #d4a017; color: #7d5a00;
  padding: 1px 8px; border-radius: 20px; white-space: nowrap;
}
.aus-truc-desc { font-size: 0.92rem; color: var(--text3); font-style: italic; }
.aus-reason-good {
  font-size: 0.92rem; color: #1a7a3a; font-weight: 600;
  background: #eafaf1; border-radius: 6px; padding: 4px 8px; margin-top: 2px;
}
.aus-acts {
  font-size: 0.76rem; color: var(--text3); margin-top: 4px;
}
.aus-empty { text-align: center; padding: 32px 0; color: var(--text3); font-size: 1rem; }
