:root{
  --page: #f6f8fb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e6eaf0;
  --accent: #2563eb;
  --accent-soft: rgba(37,99,235,.10);
}

.stats-wrap{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--page);
  padding: 18px;
  color: var(--ink);
}

/* ====== GRID TOP (2 BOX) ====== */
.stats-grid{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ====== CARD ====== */
.stats-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(16,24,40,.04),
    0 8px 20px rgba(16,24,40,.06);
  overflow: hidden;
}

/* header card */
.stats-card__head{
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f9fbff 0%, #fff 100%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.stats-card__dot{
  width: 9px;height: 9px;border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.stats-card__title{
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .2px;
}

/* body card */
.stats-card__body{
  padding: 12px 16px 10px;
}

/* list rows */
.stats-list{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 6px;
}
.stats-list li{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
}
.stats-list li:last-child{ border-bottom: none; }

.label{
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.value{
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
}
.small{ font-size: 13px; color: var(--muted); font-weight: 600; }

/* ====== SOFT HIGHLIGHTS ====== */
.badge{
  display: inline-block;
  padding: 2px 8px;
  font-size: 12.5px;
  font-weight: 800;
  border-radius: 999px;
  vertical-align: middle;
}
.b-blue{ color:#1d4ed8; background:#eef2ff; }
.b-green{ color:#047857; background:#ecfdf3; }
.b-orange{ color:#b45309; background:#fff7ed; }
.b-red{ color:#b91c1c; background:#fef2f2; }
.b-gray{ color:#334155; background:#f1f5f9; }

/* ====== HOTKEY LIST (right box) ======
   nhÆ° bullet nhÆ°ng gá»n */
.hotkeys{
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 6px;
}
.hotkeys li{
  padding: 7px 10px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fbfdff;
  line-height: 1.6;
  font-size: 14.5px;
  font-weight: 600;
}
.hotkeys kbd{
  font-family: inherit;
  font-weight: 800;
  font-size: 12.5px;
  padding: 2px 6px;
  border-radius: 6px;
  background: #0f172a;
  color: #fff;
  margin-right: 6px;
}

/* ====== BOTTOM TABLE ====== */
.table-card{
  max-width: 980px;
  margin: 14px auto 0;
}

.stats-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14.5px;
  overflow: hidden;
}
.stats-table thead th{
  text-align: left;
  padding: 12px 12px;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}
.stats-table tbody td{
  padding: 11px 12px;
  border-bottom: 1px dashed var(--line);
  font-weight: 600;
}
.stats-table tbody tr:last-child td{ border-bottom: none; }

.stats-table tbody tr:hover td{
  background: #f9fbff;
}

/* tráº¡ng thÃ¡i yes/no */
.yes{ color:#047857; font-weight: 800; }
.no{ color:#b91c1c; font-weight: 800; }

/* ====== RESPONSIVE ====== */
@media (max-width: 860px){
  .stats-grid{ grid-template-columns: 1fr; }
  .stats-list li{ grid-template-columns: 140px 1fr; }
}
@media (max-width: 420px){
  .stats-wrap{ padding: 12px; }
  .stats-list li{ grid-template-columns: 1fr; }
  .label{ color: var(--muted); font-size: 12.5px; }
}
/* ná»n page tÃ¡ch lá»›p nháº¹ hÆ¡n */
.stats-wrap{
  background: #f2f5f9;   /* trÆ°á»›c lÃ  #f6f8fb */
}

/* card ná»•i hÆ¡n */
.stats-card{
  border: 1px solid #dde3ea;   /* viá»n rÃµ hÆ¡n chÃºt */
  box-shadow:
    0 2px 6px rgba(16,24,40,.06),
    0 14px 32px rgba(16,24,40,.12);  /* sÃ¢u hÆ¡n */
  transform: translateY(0);
  transition: box-shadow .2s ease, transform .2s ease;
}

/* hover ná»•i thÃªm (náº¿u muá»‘n) */
.stats-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 4px 10px rgba(16,24,40,.08),
    0 18px 40px rgba(16,24,40,.16);
}

/* header tÃ¡ch rÃµ hÆ¡n */
.stats-card__head{
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-bottom: 1px solid #e1e7ef;
}

/* riÃªng box hotkey cho â€œná»•iâ€ trong card */
.hotkeys li{
  background: #ffffff;
  border: 1px solid #e6ebf2;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}

.leaderboard {
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.leader {
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  transition: all .35s ease;
  overflow: hidden;
}

.top1 {
  background: linear-gradient(90deg, #fff7ed, #ffffff);
  border-left: 5px solid #facc15;
  animation: pulse 2.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(250,204,21,0.0); }
  50% { box-shadow: 0 0 18px rgba(250,204,21,0.35); }
  100% { box-shadow: 0 0 0 rgba(250,204,21,0.0); }
}

.event-grid-full {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  padding: 16px;
  /* max-height: 480px; */
  overflow-y: auto;
}

.event-card {
  position: relative;
  background: #ffffff;
  border: 1.8px solid #dfc679;
  padding: 18px;
  text-align: center;
  box-shadow: 0 0 8px rgba(180,150,60,0.18);
}

/* TAG */
.tag {
  position: absolute;
  top: -6px;
  left: -1px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  background: #e6d08e;
  color: #5a4b21;
  border-radius: 0 4px 4px 0;
  text-transform: uppercase;
}

/* RIBBON TITLE */
.event-title {
  /* display: inline-block; */
  position: relative;
  background: #ffc10721;
  color: #ff1010;
  font-weight: 800;
  font-size: 15px;
  padding: 6px 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 10px;
}
.event-title:after {
  /* content: ""; */
  position: absolute;
  /* right: -16px; */
  /* top: 0; */
  /* width: 0; */
  /* height: 0; */
  /* border-top: 16px solid transparent; */
  /* border-bottom: 16px solid transparent; */
  /* border-left: 16px solid #f0b43a; */
}

/* SUB */
.event-sub {
  background: #fff4c6;
  color: #6b4f1a;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 18px;
  border-radius: 18px;
  width: fit-content;
  margin: 0 auto 14px auto;
  border: 1px solid #e6c16a;
}

/* TIME BOX */
.event-time {
  background: #faf5e4;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 20px;
  white-space: pre-line;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* NOTE */
.event-note {
  font-size: 13px;
  color: #85775b;
  font-style: italic;
}

/* responsive */
@media(max-width:700px){
  .event-grid-full { grid-template-columns:1fr; }
}

.mu-zigzag{
  max-width:800px;
  margin:40px auto;
  font-family:Arial, sans-serif;
  position:relative;
}
.mu-zigzag:before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:3px;
  height:100%;
  background:#d7e2ef;
  transform:translateX(-50%);
}
.mu-entry{
  width:50%;
  padding:20px 30px;
  position:relative;
}
.mu-entry:nth-child(odd){
  left:0;
  text-align:right;
}
.mu-entry:nth-child(even){
  left:50%;
}
.mu-dot{
  width:16px;
  height:16px;
  background:#1c5fa7;
  border:3px solid #fff;
  border-radius:50%;
  position:absolute;
  top:28px;
  right:-9px;
  box-shadow:0 0 2px rgba(0,0,0,.3);
}
.mu-entry:nth-child(even) .mu-dot{
  left:-9px;
}
.mu-date{
  display:inline-block;
  background:#1c5fa7;
  color:#fff;
  font-weight:bold;
  font-size:13px;
  padding:6px 12px;
  border-radius:6px;
  margin-bottom:6px;
}
.mu-title{
  font-size:16px;
  font-weight:bold;
  margin:8px 0;
  color:#3a4c60;
}
.mu-desc{
  font-size:14px;
  color:#52606d;
  line-height:1.45;
}

body {
  background: #f4f6f8;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #2b2b2b;
}

.roadmap {
  max-width: 720px;
  margin: 30px auto;
  padding-left: 28px;
  border-left: 3px solid #f2c94c;
}

.roadmap-item {
  position: relative;
  margin-bottom: 28px;
}

.roadmap-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: #f2c94c;
  border-radius: 50%;
}

.roadmap-time {
  font-size: 14px;
  font-weight: 600;
  color: #b88900;
  margin-bottom: 8px;
}

.roadmap-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid #e6e8eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.roadmap-card h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #1f2937;
}

.roadmap-card ul {
  margin: 0;
  padding-left: 18px;
}

.roadmap-card li {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}
/* ===== TIMELINE WRAPPER ===== */
.pro-timeline {
  max-width: 760px;
  margin: 30px auto;
  padding-left: 44px;
  position: relative;
}

/* TIMELINE LINE (2 Lá»šP) */
.pro-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}
.pro-timeline::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f2c94c;
}

/* ===== ITEM ===== */
.pro-item {
  position: relative;
  margin-bottom: 36px;
}

/* DOT Tá»ŽA SÃNG */
.pro-dot {
  position: absolute;
  left: -32px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #f2c94c;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(242,201,76,0.25),
    0 0 12px rgba(242,201,76,0.7);
}

/* TIME */
.pro-time {
  font-size: 14px;
  font-weight: 600;
  color: #b58900;
  margin-bottom: 8px;
}

/* CARD */
.pro-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #e6e8eb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  margin-left: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pro-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* BADGE */
.pro-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #8a6a00;
  background: rgba(242,201,76,0.18);
  border-radius: 999px;
}

/* LIST */
.pro-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pro-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
}
.pro-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #f2c94c;
  border-radius: 50%;
}
/* WRAPPER */
.event-wrapper {
  max-width: 820px;
  margin: 30px auto;
  display: grid;
  gap: 24px;
}

/* EVENT CARD */
.event-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* HEADER */
.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.event-title {
  font-size: 17px;
  font-weight: 700;
}

.event-time {
  background: #fef3c7;
  color: #92400e;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* PRIZE LIST */
.prize-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.prize {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.prize.top1 {
  background: #facc15;
  color: #78350f;
}

.prize.top2 {
  background: #e5e7eb;
  color: #374151;
}

.prize.top3 {
  background: #fcd5b5;
  color: #7c2d12;
}

/* RULE BOX */
.rule-box {
  background: #f9fafb;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px dashed #d1d5db;
}

.rule-box h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.rule-box ul {
  margin: 0;
  padding-left: 18px;
}

.rule-box li {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

/* ===== EVENT HUYET LAU ===== */
.event-huyet-lau{
  max-width:900px;
  margin:40px auto;
  font-family:Segoe UI,sans-serif;
  color:#fff;
}

/* HEADER */
.event-huyet-lau .event-title{
  text-align:center;
  margin-bottom:30px;
}

.event-huyet-lau .event-title h2{
  font-size:26px;
  letter-spacing:1px;
  margin-bottom:6px;
  color: #F44336;
}

.event-huyet-lau .event-title span{
  font-size:13px;
  color: #F44336;
}

/* ===== TOP LIST ===== */
.event-huyet-lau .top-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.event-huyet-lau .top-item{
  display:flex;
  align-items:center;
  padding:14px 18px;
  border-radius:10px;
  background: linear-gradient(135deg, #505983, #4c5793);
  border:1px solid;
}

/* BADGE */
.event-huyet-lau .badge{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  margin-right:14px;
  border:2px solid;
  font-size:15px;
}

/* TEXT */
.event-huyet-lau .top-text strong{
  display:block;
  font-size:14px;
}

.event-huyet-lau .top-text span{
  font-size:12.5px;
  color:#e0e0e0;
}

/* TOP COLORS */
.event-huyet-lau .top1{
  border-color: #3F51B5;
}
.event-huyet-lau .top1 .badge{
  background:#ffd36a;
  color:#3a2a00;
  border-color:#ffd36a;
}

.event-huyet-lau .top2{
  border-color: #3F51B5;
}
.event-huyet-lau .top2 .badge{
  background:#ddd;
  color:#333;
  border-color:#ddd;
}

.event-huyet-lau .top3{
  border-color: #3F51B5;
}
.event-huyet-lau .top3 .badge{
  background:#d89a5a;
  color:#3a1d00;
  border-color:#d89a5a;
}

/* ===== RULES COMPACT ===== */
.event-huyet-lau .rules{
  margin-top:22px;
  padding:14px 18px;
  border: 1px solid rgb(244 67 54 / 34%);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
}

.event-huyet-lau .rules h3{
  font-size:14px;
  color: #F44336;
  margin-bottom:8px;
}

.event-huyet-lau .rules ul{
  list-style:none;
  display:grid;
  /* grid-template-columns:1fr 1fr; */
  gap:4px 30px;
  color: #F44336;
}

.event-huyet-lau .rules li{
  font-size:12.5px;
  padding-left:14px;
  position:relative;
  line-height:1.35;
}

.event-huyet-lau .rules li::before{
  content:"â—†";
  position:absolute;
  left:0;
  top:2px;
  font-size:9px;
  color: #F44336;
}

/* MOBILE */
@media(max-width:768px){
  .event-huyet-lau .rules ul{
    grid-template-columns:1fr;
  }
}
/* ===== TIÊU ĐỀ EVENT ===== */
.event-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #ff3b30;
  margin: 8px 0 10px;
}

/* ===== THỜI GIAN ===== */
.event-time {
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  background: #f2f4ff;
  color: #333;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ===== HEADING ===== */
.event-heading {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #00bcd4;
  margin: 14px 0 8px;
  position: relative;
}

.event-heading::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00bcd4, transparent);
  margin: 4px auto 0;
}

/* ===== TOP LIST ===== */
.rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rank-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* ===== SỐ TRÒN ===== */
.rank-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 11px;
  flex-shrink: 0;
  top: 6px;
}

/* ===== TOP 1 ===== */
.rank-gold {
  background: linear-gradient(135deg, #ffe77a, #ffcc00);
  box-shadow: 0 4px 12px rgba(255, 200, 0, 0.35);
}

/* ===== TOP 2 ===== */
.rank-silver {
  background: linear-gradient(135deg, #eeeeee, #cccccc);
  box-shadow: 0 4px 10px rgba(180, 180, 180, 0.35);
}

/* ===== TOP 3 ===== */
.rank-bronze {
  background: linear-gradient(135deg, #e2a36b, #cd7f32);
  box-shadow: 0 4px 10px rgba(205, 127, 50, 0.35);
}

/* ===== THỂ LỆ ===== */
.event-rules {
  padding-left: 16px;
  margin-top: 8px;
}

.event-rules li {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 4px;
  color: #333;
}

/* ===== RANK CIRCLE ĐẸP HƠN ===== */

/* TOP 1 – vàng kim */
.rank-gold .rank-circle {
  background: radial-gradient(
    circle at top,
    #fff6b0,
    #ffd700 45%,
    #ffb800 70%
  );
  color: #000;
  box-shadow:
    0 0 6px rgba(255, 215, 0, 0.9),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

/* TOP 2 – bạc */
.rank-silver .rank-circle {
  background: radial-gradient(
    circle at top,
    #ffffff,
    #d9d9d9 50%,
    #bfbfbf
  );
  color: #000;
  box-shadow:
    0 0 5px rgba(180, 180, 180, 0.8),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

/* TOP 3 – đồng */
.rank-bronze .rank-circle {
  background: radial-gradient(
    circle at top,
    #ffd6b0,
    #cd7f32 55%,
    #a86122
  );
  color: #000;
  box-shadow:
    0 0 5px rgba(205, 127, 50, 0.9),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}
/* ===== THỂ LỆ NỔI HƠN ===== */
.event-heading.rules-title {
  margin-top: 18px;
}

/* khối thể lệ */
.event-rules {
  background: #f8fbff;
  border-left: 4px solid #00bcd4;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
}

/* từng dòng */
.event-rules li {
  font-size: 13px;
  color: #222;
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

/* bullet custom */
.event-rules li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00bcd4;
  font-size: 18px;
  line-height: 1;
}

/* nhấn nhẹ dòng đầu */
.event-rules li:first-child {
  font-weight: 600;
}

/* WRAPPER */
.event-wrapper {
  width: 720px;
  padding: 32px;
}

/* TITLE */
.event-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 28px;
}

/* GRID */
.reward-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* CARD CHUNG */
.reward-card {
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
}

.reward-card:hover {
  transform: translateY(-6px);
}

/* MÀU TỪNG MỐC */
.m50 {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.m100 {
  background: linear-gradient(135deg, #34d399, #059669);
}

.m200 {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.m300 {
  background: linear-gradient(135deg, #a78bfa, #6d28d9);
}

.m500 {
  background: linear-gradient(135deg, #fb7185, #e11d48);
}

/* TEXT */
.point {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 6px;
}

.reward-text {
  font-size: 13px;
  opacity: 0.95;
}

/* RULES */
.rules {
  border-top: 1px dashed #e5e7eb;
  padding-top: 20px;
}

.rules h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #2563eb;
}

.rules ul {
  padding-left: 18px;
  margin: 0;
}

.rules li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .reward-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}