:root {
  --bg: #0a0604;
  --bg2: #130b06;
  --ink: #efe4cd;
  --muted: #b3a487;
  --gold: #e6b34a;
  --gold-lt: #f4d488;
  --gold-dk: #b9852a;
  --fire: #ff6a1a;
  --ember: #e0431a;
  --green: #57c877;
  --amber: #e6a938;
  --red: #e0503a;
  --panel: rgba(20, 13, 7, 0.72);
  --panel-brd: rgba(230, 179, 74, 0.30);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 500px at 20% -5%, rgba(224, 67, 26, 0.10), transparent 60%),
    radial-gradient(1000px 600px at 90% 110%, rgba(230, 179, 74, 0.08), transparent 60%),
    linear-gradient(170deg, var(--bg), #0b0705 55%, var(--bg2));
}

a { color: inherit; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-art {
  position: absolute; inset: 0; z-index: -1;
  background: url("hknt-background.png") no-repeat center right / cover;
  transform: scale(1.02);
  animation: slowzoom 24s ease-in-out infinite alternate;
}
@keyframes slowzoom { to { transform: scale(1.10); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(10,6,4,0.35) 0%, rgba(10,6,4,0) 30%, rgba(10,6,4,0.25) 60%, rgba(10,6,4,0.92) 92%, var(--bg) 100%),
    linear-gradient(to right, rgba(10,6,4,0.55), rgba(10,6,4,0) 55%);
}

.hero-inner {
  text-align: center;
  padding: 0 20px 54px;
  max-width: 720px;
  animation: rise 0.9s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }

.emblem {
  width: clamp(130px, 22vw, 200px);
  height: auto;
  filter: drop-shadow(0 6px 26px rgba(255, 106, 26, 0.45)) drop-shadow(0 2px 8px rgba(0,0,0,.6));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-8px); } }

.hero-sub {
  margin: 14px 0 0;
  font-size: clamp(12px, 2.4vw, 15px);
  letter-spacing: 4px;
  color: var(--gold-lt);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

/* ornament divider */
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px auto; max-width: 360px; }
.ornament .line { height: 1px; flex: 1; background: linear-gradient(to var(--dir, right), transparent, var(--gold)); }
.ornament .line:first-child { background: linear-gradient(to right, transparent, var(--gold)); }
.ornament .line:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament .gem { color: var(--gold); font-size: 12px; text-shadow: 0 0 10px rgba(230,179,74,.7); }
.ornament.small { max-width: 260px; margin: 4px auto 16px; opacity: .8; }

/* CTA */
.cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 8px;
  padding: 15px 30px;
  border-radius: 14px;
  text-decoration: none;
  color: #2a1704;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold) 55%, var(--gold-dk));
  border: 1px solid rgba(255, 240, 200, 0.6);
  box-shadow: 0 10px 30px rgba(230, 140, 30, 0.35), inset 0 1px 0 rgba(255,255,255,.5);
  position: relative; overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease;
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255, 120, 20, 0.5), inset 0 1px 0 rgba(255,255,255,.6); }
.cta::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: sheen 3.6s ease-in-out infinite;
}
@keyframes sheen { 0%,60% { left: -60%; } 100% { left: 130%; } }
.cta-ico { font-size: 24px; line-height: 1; }
.cta-txt { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.cta-txt strong { font-size: 19px; letter-spacing: 2px; }
.cta-txt em { font-style: normal; font-size: 11px; font-weight: 600; color: #5a3a10; letter-spacing: .5px; }
.cta.disabled { filter: grayscale(.6) brightness(.8); pointer-events: none; }

.hero-status {
  margin: 20px 0 0; font-size: 13px; color: var(--muted);
  display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.hero-status .hs-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.hero-status .hs-dot.open { background: var(--green); box-shadow: 0 0 8px var(--green); }
.hero-status .hs-dot.maintenance { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.hero-status .hs-dot.offline { background: var(--red); box-shadow: 0 0 8px var(--red); }
.hero-status b { color: var(--ink); font-weight: 600; }
.hero-status .sep { opacity: .4; }

.scroll-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  color: var(--gold); text-decoration: none; font-size: 26px; opacity: .7;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); opacity: 1; } }

/* ================= CONTENT ================= */
.wrap {
  max-width: 1200px;
  margin: -8px auto 0;
  padding: 26px 18px 40px;
  position: relative; z-index: 1;
}
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.dash-col { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
@media (max-width: 900px) { .dash-grid { grid-template-columns: 1fr; } }

.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
/* corner brackets */
.panel::before, .panel::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
  border-color: var(--gold); border-style: solid; opacity: .75;
}
.panel::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.panel::after { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.panel-title {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 3.6vw, 24px);
  font-weight: 800;
  color: var(--gold-lt);
  letter-spacing: .5px;
  display: flex; align-items: center; gap: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.panel-title .tt-ico { font-size: .9em; filter: drop-shadow(0 0 6px rgba(255,120,30,.5)); }

/* channels */
.channels { display: flex; flex-direction: column; gap: 12px; }
.channel {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 17px; border-radius: 12px;
  background: linear-gradient(100deg, rgba(0,0,0,.35), rgba(40,22,8,.25));
  border: 1px solid rgba(230,179,74,.14);
}
.dot { width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto; position: relative; }
.dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; animation: pulse 2s ease-out infinite; }
.dot.open { background: var(--green); } .dot.open::after { box-shadow: 0 0 0 2px rgba(87,200,119,.4); }
.dot.maintenance { background: var(--amber); } .dot.maintenance::after { box-shadow: 0 0 0 2px rgba(230,169,56,.4); }
.dot.offline { background: var(--red); } .dot.offline::after { box-shadow: 0 0 0 2px rgba(224,80,58,.4); }
@keyframes pulse { 0% { transform: scale(.7); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }
.channel .name { font-weight: 700; font-size: 16px; }
.channel .note { color: var(--muted); font-size: 13px; }
.channel .state { margin-left: auto; font-size: 14px; font-weight: 700; letter-spacing: .3px; }
.channel .state.open { color: var(--green); }
.channel .state.maintenance { color: var(--amber); }
.channel .state.offline { color: var(--red); }

.updated { margin: 16px 2px 0; color: var(--muted); font-size: 12px; text-align: right; font-style: italic; }

/* news cards (ngang, gọn) */
.news { display: flex; flex-direction: column; gap: 12px; }
.news-card {
  cursor: pointer; text-align: left; padding: 0; overflow: hidden; border-radius: 12px;
  background: linear-gradient(160deg, rgba(0,0,0,.4), rgba(40,22,8,.25));
  border: 1px solid rgba(230,179,74,.16);
  display: flex; flex-direction: row;
  transition: transform .14s, border-color .14s, box-shadow .14s;
}
.news-card:hover { transform: translateY(-2px); border-color: rgba(230,179,74,.5); box-shadow: var(--shadow); }
.news-card .thumb { width: 38%; max-width: 190px; aspect-ratio: 16/10; object-fit: cover; background: #1a1109; display: block; flex: 0 0 auto; }
.news-card .card-body { padding: 12px 15px; display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.news-card .card-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.news-card .news-date { color: var(--gold); font-size: 11px; letter-spacing: .5px; font-weight: 600; }
.news-card .card-title {
  font-family: "Playfair Display", serif; font-size: 15px; font-weight: 700; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card .card-excerpt {
  color: var(--muted); font-size: 12.5px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card .card-more { margin-top: auto; padding-top: 4px; color: var(--gold-lt); font-size: 12px; font-weight: 700; }
.news-empty, .skeleton { color: var(--muted); font-size: 14px; padding: 6px 2px; }

/* bảng cuộn trong khung, tiêu đề dính */
.scroll-cap { max-height: 470px; overflow: auto; }
table.grid thead th { position: sticky; top: 0; background: #140d07; z-index: 1; }

@media (max-width: 560px) {
  .news-card { flex-direction: column; }
  .news-card .thumb { width: 100%; max-width: none; aspect-ratio: 16/9; }
}

/* footer */
.site-footer { text-align: center; padding: 34px 16px 46px; color: var(--muted); font-size: 13px; }
.site-footer p { margin: 4px 0; }
.site-footer p:nth-of-type(1) { font-family: "Playfair Display", serif; color: var(--gold-lt); font-size: 16px; letter-spacing: 1px; }
.site-footer .muted { font-size: 12px; opacity: .8; }

/* embers */
.embers { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.embers span {
  position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle, #ffd27a, #ff6a1a 60%, transparent);
  opacity: 0; animation: floatUp linear infinite;
}
.embers span:nth-child(1){ left: 6%;  animation-duration: 11s; animation-delay: 0s; }
.embers span:nth-child(2){ left: 18%; animation-duration: 14s; animation-delay: 2s; }
.embers span:nth-child(3){ left: 30%; animation-duration: 9s;  animation-delay: 4s; }
.embers span:nth-child(4){ left: 42%; animation-duration: 13s; animation-delay: 1s; }
.embers span:nth-child(5){ left: 55%; animation-duration: 10s; animation-delay: 5s; }
.embers span:nth-child(6){ left: 66%; animation-duration: 15s; animation-delay: 3s; }
.embers span:nth-child(7){ left: 76%; animation-duration: 12s; animation-delay: 6s; }
.embers span:nth-child(8){ left: 85%; animation-duration: 9s;  animation-delay: 2s; }
.embers span:nth-child(9){ left: 92%; animation-duration: 14s; animation-delay: 4s; }
.embers span:nth-child(10){ left: 48%; animation-duration: 16s; animation-delay: 7s; }
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: .9; }
  90% { opacity: .5; }
  100% { transform: translateY(-102vh) scale(.3); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art, .emblem, .cta::after, .scroll-hint, .embers span, .dot::after { animation: none !important; }
}

@media (max-width: 560px) {
  .hero { min-height: 92vh; }
  .hero-inner { padding-bottom: 40px; }
  .panel { padding: 20px 16px; }
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 6px;
  padding: 10px 12px;
  background: rgba(10, 6, 4, 0.85);
  border-bottom: 1px solid var(--panel-brd);
  backdrop-filter: blur(8px);
}
.nav a {
  text-decoration: none; color: var(--muted);
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  padding: 7px 14px; border-radius: 20px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--gold-lt); background: rgba(230,179,74,.10); }

/* ===== TABS ===== */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tab {
  cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--muted); background: rgba(0,0,0,.28);
  border: 1px solid rgba(230,179,74,.18); border-radius: 20px;
  padding: 8px 16px; transition: all .15s;
}
.tab:hover { color: var(--gold-lt); border-color: rgba(230,179,74,.4); }
.tab.active {
  color: #2a1704; font-weight: 700;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  border-color: var(--gold-lt);
}

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; border-radius: 12px; }
table.grid { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 460px; }
table.grid th {
  text-align: left; font-weight: 700; color: var(--gold-lt);
  font-size: 12px; letter-spacing: .5px; text-transform: uppercase;
  padding: 10px 12px; border-bottom: 1px solid rgba(230,179,74,.28);
  white-space: nowrap;
}
table.grid td { padding: 11px 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
table.grid tbody tr:hover { background: rgba(230,179,74,.06); }
table.grid td.num, table.grid th.num { text-align: right; font-variant-numeric: tabular-nums; }
table.grid td.center, table.grid th.center { text-align: center; }
.rankcell { display: inline-flex; align-items: center; justify-content: center; min-width: 26px; height: 26px; border-radius: 50%; font-weight: 800; font-size: 13px; }
.rankcell.top1 { background: linear-gradient(180deg,#ffe08a,#e6b34a); color:#3a2405; box-shadow:0 0 10px rgba(230,179,74,.6); }
.rankcell.top2 { background: linear-gradient(180deg,#e8e8ee,#b9bcc7); color:#2a2d36; }
.rankcell.top3 { background: linear-gradient(180deg,#f0b27a,#c17b3e); color:#3a1e08; }
.rankcell.norm { color: var(--muted); }
.chname { font-weight: 700; color: var(--ink); }
.chname .on { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 7px var(--green); margin-left:6px; vertical-align:middle; }
.tag-phai { font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 700; }
.tag-phai.chinh { color:#7fc8ff; background:rgba(70,150,220,.16); }
.tag-phai.ta { color:#ff8a6a; background:rgba(224,80,40,.16); }
.tag-phai.tl { color:var(--muted); background:rgba(255,255,255,.06); }

.badge {
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 9px; border-radius: 20px; text-transform: uppercase;
  background: linear-gradient(180deg, var(--fire), var(--ember)); color: #fff;
  box-shadow: 0 0 12px rgba(255,106,26,.4);
}
.ch-note { margin: 14px 2px 0; color: var(--muted); font-size: 12.5px; font-style: italic; line-height: 1.5; }
table.ch-feed { min-width: 600px; font-size: 12.5px; }
table.ch-feed td { padding: 8px 10px; vertical-align: top; }
table.ch-feed td:first-child, table.ch-feed td.center, table.ch-feed td.kq-ok, table.ch-feed td.kq-fail, table.ch-feed td.op { white-space: nowrap; }
td.op { font-weight: 600; }
td.op-ch { color: #ffb055; }
td.op-ht { color: #7cc9ff; }
td.kq-ok { color: var(--green); font-weight: 700; white-space: nowrap; }
td.kq-fail { color: var(--red); font-weight: 700; white-space: nowrap; }

/* ===== MODAL TIN TỨC ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; padding: 20px;
  background: rgba(5, 3, 2, 0.82); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  position: relative; width: min(700px, 100%); max-height: 88vh; overflow-y: auto;
  background: linear-gradient(170deg, #150e08, #0c0704);
  border: 1px solid var(--panel-brd); border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
  transform: translateY(18px) scale(.98); transition: transform .22s ease;
}
.modal-backdrop.open .modal { transform: none; }
.modal .modal-img { width: 100%; max-height: 360px; object-fit: cover; border-radius: 16px 16px 0 0; display: block; }
.modal .modal-content { padding: 22px 26px 28px; }
.modal .modal-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.modal .modal-head .news-date { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .5px; }
.modal .modal-title { font-family: "Playfair Display", serif; font-size: clamp(20px, 4vw, 26px); font-weight: 800; color: var(--gold-lt); margin: 10px 0 14px; line-height: 1.25; }
.modal .modal-body { color: var(--ink); font-size: 15px; line-height: 1.75; white-space: pre-line; }
.modal .modal-author { margin-top: 18px; padding-top: 12px; border-top: 1px solid rgba(230,179,74,.15); color: var(--muted); font-size: 13px; font-style: italic; }
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  background: rgba(0, 0, 0, 0.55); color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  transition: background .15s;
}
.modal-close:hover { background: rgba(224, 80, 40, 0.85); }
body.modal-open { overflow: hidden; }

/* ============ NAV TRÊN ============ */
.topnav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 18px;
  padding: 10px 20px;
  background: rgba(10, 6, 4, 0.92); border-bottom: 1px solid var(--panel-brd);
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gold-lt); font-weight: 800; letter-spacing: 1px; font-size: 15px; }
.brand img { width: 34px; height: 34px; filter: drop-shadow(0 0 6px rgba(255,106,26,.5)); }
.menu { display: flex; gap: 4px; }
.nav-link { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 14px; padding: 8px 14px; border-radius: 20px; transition: all .15s; }
.nav-link:hover { color: var(--gold-lt); background: rgba(230,179,74,.08); }
.nav-link.active { color: #2a1704; background: linear-gradient(180deg, var(--gold-lt), var(--gold)); }
.nav-cta { margin-left: auto; text-decoration: none; font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 10px; color: #2a1704; background: linear-gradient(180deg, var(--gold-lt), var(--gold) 60%, var(--gold-dk)); border: 1px solid rgba(255,240,200,.5); box-shadow: 0 6px 18px rgba(230,140,30,.3); white-space: nowrap; }
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta.disabled { filter: grayscale(.6); pointer-events: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--panel-brd); color: var(--gold-lt); font-size: 18px; border-radius: 8px; padding: 4px 11px; cursor: pointer; }

/* ============ LAYOUT 3 CỘT ============ */
.layout { max-width: 1460px; margin: 0 auto; padding: 22px 18px 44px; display: grid; grid-template-columns: 208px minmax(0,1fr) 244px; gap: 20px; align-items: start; }
.side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 66px; }
.side-panel { padding: 18px 16px; }
.side-title { margin: 0 0 12px; font-family: "Playfair Display", serif; font-size: 18px; font-weight: 800; color: var(--gold-lt); border-left: 3px solid var(--gold); padding-left: 10px; }
.stats { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.stat { display: flex; justify-content: space-between; align-items: center; padding: 9px 11px; border-radius: 9px; background: rgba(0,0,0,.25); border: 1px solid rgba(230,179,74,.12); }
.stat span { color: var(--muted); font-size: 13px; }
.stat b { color: var(--gold-lt); font-size: 17px; }
.side-cta { display: block; text-align: center; margin-top: 14px; text-decoration: none; font-weight: 700; padding: 11px; border-radius: 10px; color: #2a1704; background: linear-gradient(180deg, var(--gold-lt), var(--gold) 60%, var(--gold-dk)); border: 1px solid rgba(255,240,200,.5); }
.side-cta:hover { transform: translateY(-1px); }
.side-cta.disabled { filter: grayscale(.6); pointer-events: none; }

.center { min-width: 0; }
.center .view { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 16px; padding: 22px; box-shadow: var(--shadow); }
.center .panel-title { margin-top: 0; }
.view-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.link-more { background: none; border: none; color: var(--gold-lt); font-weight: 600; font-size: 13px; cursor: pointer; font-family: inherit; }
.link-more:hover { text-decoration: underline; }
#bxh-body, #ch-body { max-height: 540px; overflow: auto; }
#home-feed { max-height: 320px; overflow: auto; }

/* top cao thủ */
.top-item { display: flex; align-items: center; gap: 11px; padding: 9px 6px; border-bottom: 1px solid rgba(255,255,255,.05); }
.top-item:last-child { border-bottom: none; }
.top-medal { font-size: 20px; width: 24px; text-align: center; }
.top-name { font-weight: 700; color: var(--ink); font-size: 14px; }
.top-sub { color: var(--muted); font-size: 12px; }

/* sự kiện */
.event-item { padding: 4px 2px; }
.event-item + .event-item { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(230,179,74,.15); }
.event-title { font-weight: 700; color: var(--gold-lt); font-size: 15px; line-height: 1.3; }
.event-time { color: var(--ink); font-size: 13px; margin-top: 5px; }
.event-moc { margin: 9px 0 0; padding-left: 16px; color: var(--muted); font-size: 13px; }
.event-moc li { margin: 3px 0; }

/* responsive */
@media (max-width: 1080px) {
  .layout { grid-template-columns: 1fr; }
  .side { position: static; }
  .center { order: -1; }
}
@media (max-width: 720px) {
  .menu { display: none; position: absolute; top: 56px; left: 0; right: 0; flex-direction: column; gap: 6px; background: rgba(10,6,4,.98); padding: 12px 16px; border-bottom: 1px solid var(--panel-brd); }
  body.nav-open .menu { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
}
