
:root{
  --ink:#0A1A2F; --ink-2:#112A45; --grass:#1FA363; --grass-d:#15814C;
  --led:#FFC32B; --chalk:#F4F6F3; --paper:#FFFFFF; --line:#E4E8E4;
  --muted:#5C6B7A; --text:#16202B;
  --r:14px; --wrap:980px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--chalk); color:var(--text);
  font-family:"Be Vietnam Pro",system-ui,Segoe UI,Roboto,sans-serif;
  font-size:17px; line-height:1.65;
}
.wrap{width:100%; max-width:var(--wrap); margin:0 auto; padding:0 20px}
a{color:var(--grass-d); text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:3px solid var(--led); outline-offset:2px; border-radius:4px}

/* ---- 顶部导航 ---- */
.site-header{background:var(--ink); color:#fff; position:sticky; top:0; z-index:10}
.header-inner{display:flex; align-items:center; justify-content:space-between; height:62px}
.brand{display:flex; align-items:center; gap:10px; color:#fff; font-family:"Oswald",sans-serif;
  font-weight:700; font-size:24px; letter-spacing:.04em; text-transform:uppercase}
.brand:hover{text-decoration:none}
.brand-mark{width:14px; height:22px; border-radius:3px;
  background:repeating-linear-gradient(90deg,var(--grass) 0 4px,#fff 4px 7px)}
.site-nav{display:flex; align-items:center; gap:18px}
.site-nav a{color:#cfe0d6; font-size:15px; font-weight:600}
.site-nav a:hover{color:#fff}

/* 汉堡按钮（移动端）+ 回到顶部 */
.nav-toggle{display:none; width:42px; height:42px; padding:0; border:none; border-radius:9px;
  background:var(--grass); cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:4px}
.nav-toggle-bar{display:block; width:20px; height:2.5px; background:#fff; border-radius:2px; transition:transform .2s, opacity .2s}
.nav-toggle.open .nav-toggle-bar:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.nav-toggle.open .nav-toggle-bar:nth-child(2){opacity:0}
.nav-toggle.open .nav-toggle-bar:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
.to-top{position:fixed; right:18px; bottom:18px; width:46px; height:46px; border:none; border-radius:50%;
  background:var(--grass); color:#fff; font-size:22px; line-height:1; cursor:pointer; z-index:30;
  box-shadow:0 4px 14px rgba(0,0,0,.25); opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .18s, transform .18s, background .15s}
.to-top.show{opacity:1; visibility:visible; transform:none}
.to-top:hover{background:var(--grass-d)}
@media (max-width:760px){
  .nav-toggle{display:flex}
  .site-nav{display:none; position:absolute; top:62px; left:0; right:0; flex-direction:column;
    align-items:stretch; gap:0; background:var(--ink); padding:4px 0; box-shadow:0 10px 24px rgba(0,0,0,.3)}
  .site-nav.open{display:flex}
  .site-nav a{padding:14px 22px; font-size:16px; border-top:1px solid rgba(255,255,255,.08)}
  .to-top{right:14px; bottom:14px}
}

/* ---- 首页 hero ---- */
.hero{padding:38px 0 18px}
.hero-eyebrow{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.14em;
  color:var(--grass-d); font-size:13px; margin:0 0 8px}
.hero-title{font-family:"Oswald",sans-serif; font-weight:700; font-size:clamp(30px,5vw,46px);
  line-height:1.05; margin:0; color:var(--ink); text-transform:uppercase}
.hero-sub{color:var(--muted); margin:10px 0 0}

/* ---- 赛程列表 ---- */
.fixtures{list-style:none; margin:24px 0 50px; padding:0; display:grid; gap:14px}
.fixture-link{display:block; background:var(--paper); border:1px solid var(--line);
  border-radius:var(--r); padding:16px 18px; color:inherit;
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease}
.fixture-link:hover{text-decoration:none; transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(10,26,47,.10); border-color:#cfd8cf}
.fx-comp{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.1em;
  font-size:12px; color:var(--grass-d); font-weight:600}
.fx-main{display:flex; align-items:center; gap:12px; margin:8px 0 6px}
.fx-team{display:flex; align-items:center; gap:10px; min-width:0; flex:1}
.fx-home{justify-content:flex-end; text-align:right}
.fx-away{justify-content:flex-start}
.fx-name{font-weight:600; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
.fx-tla{font-family:"Oswald",sans-serif; font-weight:700; background:var(--ink); color:#fff;
  border-radius:7px; padding:4px 8px; font-size:13px; letter-spacing:.03em}
.fx-score{font-family:"Oswald",sans-serif; font-weight:700; font-size:26px; color:var(--ink);
  background:var(--chalk); border:1px solid var(--line); border-radius:9px; padding:3px 12px; white-space:nowrap}
.fx-score i{color:var(--muted); font-style:normal; padding:0 3px}
.fx-vs{font-size:18px; color:var(--muted); text-transform:lowercase; letter-spacing:.02em}
.fx-crest{width:38px; height:38px; object-fit:contain; flex:none}
.fx-foot{display:flex; justify-content:space-between; align-items:center; gap:10px;
  color:var(--muted); font-size:13px; border-top:1px dashed var(--line); padding-top:8px}
.fx-tip{font-weight:600; color:var(--grass-d)}
.fx-more{font-weight:700; color:var(--grass-d); white-space:nowrap}

/* ---- 文章页 ---- */
.article{background:var(--paper); border:1px solid var(--line); border-radius:18px;
  padding:30px clamp(20px,5vw,46px) 38px; margin:26px 0 50px}
.comp-line{display:flex; align-items:center; gap:12px; flex-wrap:wrap; color:var(--muted); font-size:14px}
.comp-badge{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.1em;
  font-size:12px; font-weight:600; color:#fff; background:var(--grass); padding:4px 10px; border-radius:6px}

/* 记分牌 —— 标志性元素 */
.scoreboard{background:var(--ink); background-image:radial-gradient(circle at 50% -40%,var(--ink-2),var(--ink) 70%);
  border-radius:16px; padding:22px 20px 26px; margin:18px 0 26px; color:#fff;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05)}
.sb-when{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.12em;
  font-size:12px; color:#9fb3c2; text-align:center; margin-bottom:16px}
.sb-grid{display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:14px}
.sb-team{display:flex; flex-direction:column; align-items:center; gap:8px; min-width:0}
.sb-tla{font-family:"Oswald",sans-serif; font-weight:700; font-size:30px; letter-spacing:.04em;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); border-radius:10px;
  width:62px; height:62px; display:flex; align-items:center; justify-content:center}
.sb-name{font-size:14px; color:#cfe0d6; text-align:center; max-width:160px}
.sb-score{display:flex; align-items:center; justify-content:center; gap:6px; position:relative; padding:6px 4px 22px}
.sb-num{font-family:"Oswald",sans-serif; font-weight:700; font-size:clamp(44px,9vw,66px);
  color:var(--led); line-height:1; text-shadow:0 0 18px rgba(255,195,43,.45)}
.sb-colon{font-family:"Oswald",sans-serif; font-size:38px; color:rgba(255,255,255,.5)}
.sb-label{position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.22em;
  font-size:11px; color:rgba(255,255,255,.55)}

.article-title{font-family:"Oswald",sans-serif; font-weight:700; line-height:1.12;
  font-size:clamp(26px,4.4vw,38px); color:var(--ink); margin:6px 0 6px}
.venue{color:var(--muted); margin:0 0 14px; font-size:15px}
.lead{font-size:19px; font-weight:500; color:#22303c}
.article p{margin:0 0 16px}

.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:24px 0}
.form-card{background:var(--chalk); border:1px solid var(--line); border-radius:12px; padding:16px 18px}
.form-card h3{font-family:"Oswald",sans-serif; font-size:15px; text-transform:uppercase;
  letter-spacing:.05em; color:var(--ink); margin:0 0 6px}
.form-card p{margin:0; font-size:15px; color:#2b3742}

.h2h h2,.prediction h2{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.05em;
  font-size:20px; color:var(--ink); margin:26px 0 10px; padding-bottom:8px; border-bottom:2px solid var(--line)}

.prediction{background:var(--ink); color:#fff; border-radius:16px; padding:24px clamp(18px,4vw,30px); margin:28px 0 18px}
.prediction h2{color:#fff; border-color:rgba(255,255,255,.16)}
.key-point{color:#dbe7df; margin:0 0 16px}
.pred-row{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.pred-cell{background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:11px; padding:14px; display:flex; flex-direction:column; gap:6px}
.pred-k{font-size:12px; text-transform:uppercase; letter-spacing:.12em; color:#9fb3c2;
  font-family:"Oswald",sans-serif}
.pred-v{font-family:"Oswald",sans-serif; font-weight:700; font-size:22px; color:#fff}
.pred-cell:first-child .pred-v{color:var(--led)}
.conf{display:inline-block; width:max-content; padding:2px 12px; border-radius:20px; font-size:15px}
.conf-low{background:#5b3030; color:#ffd1d1}
.conf-mid{background:#5a4a1f; color:#ffe6a6}
.conf-high{background:#1f5a3a; color:#b8f3d0}

.disclaimer{font-size:13px; color:var(--muted); background:var(--chalk);
  border:1px dashed var(--line); border-radius:10px; padding:12px 14px; margin-top:16px}
.back{margin-top:22px; font-weight:600}
.empty{background:var(--paper); border:1px solid var(--line); border-radius:12px; padding:24px; color:var(--muted)}

/* ---- 页脚 ---- */
.site-footer{background:var(--ink); color:#aebfcb; margin-top:30px; padding:28px 0}
.footer-brand{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.05em;
  color:#fff; font-weight:600; margin:0 0 8px}
.footer-note{font-size:13px; margin:0 0 8px; max-width:640px}
.footer-meta{font-size:12px; color:#7d909e; margin:0}

@media (max-width:640px){
  body{font-size:16px}
  .fx-main{grid-template-columns:1fr auto 1fr; gap:8px}
  .fx-name{display:none}
  .form-grid{grid-template-columns:1fr}
  .pred-row{grid-template-columns:1fr}
  .sb-name{font-size:12px}
}
@media (prefers-reduced-motion:reduce){
  *{transition:none !important}
}

/* ---- soi kèo：赔率表 + 章节标题 ---- */
.odds-table{width:100%; border-collapse:collapse; margin:18px 0 24px; font-size:15px;
  border:1px solid var(--line); border-radius:12px; overflow:hidden}
.odds-table th{background:var(--ink); color:#fff; font-family:"Oswald",sans-serif;
  text-transform:uppercase; letter-spacing:.04em; font-size:12px; text-align:left; padding:10px 14px}
.odds-table td{padding:11px 14px; border-top:1px solid var(--line); vertical-align:top}
.odds-table tbody tr:nth-child(even){background:var(--chalk)}
.odds-table td:first-child{font-weight:600; color:var(--ink)}
.odds-table .pick{color:var(--grass-d); font-weight:600}

.article section{margin-top:4px}
.article section h2{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.03em;
  font-size:20px; color:var(--ink); margin:28px 0 10px; padding-bottom:8px; border-bottom:2px solid var(--line)}
.article section h3{font-family:"Oswald",sans-serif; font-size:16px; letter-spacing:.02em;
  color:var(--ink); margin:18px 0 6px}
.article .prediction h2{color:#fff; border-color:rgba(255,255,255,.16)}

@media (max-width:640px){
  .odds-table{font-size:13.5px}
  .odds-table th,.odds-table td{padding:9px 10px}
}

.comp-line .updated{color:var(--muted); font-size:13px}
.comp-line .updated::before{content:"·"; margin:0 8px; color:var(--line)}

.brand-logo{height:34px; width:auto; display:block}

/* ===== LiveScore 直播页 ===== */
.ls-h1{font-family:"Oswald",sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.02em;
  font-size:clamp(24px,4.2vw,36px); color:var(--ink); margin:28px 0 16px; line-height:1.12}

.ls-list{background:var(--paper); border:1px solid var(--line); border-radius:14px; overflow:hidden; margin:0 0 30px}
.ls-list-head{display:flex; justify-content:space-between; align-items:center; padding:12px 16px;
  background:var(--ink); color:#fff; font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.05em; font-size:13px}
.ls-updated{font-family:"Be Vietnam Pro",sans-serif; text-transform:none; letter-spacing:0; color:#9fb3c2; font-size:12px; font-weight:400}

.ls-scroll{overflow-x:auto}
.ls-table{width:100%; border-collapse:collapse; font-size:14px; min-width:760px}
.ls-table thead th{background:#f4f7f9; color:var(--muted); font-family:"Oswald",sans-serif; text-transform:uppercase;
  letter-spacing:.03em; font-size:11px; font-weight:600; padding:8px 8px; border-bottom:1px solid var(--line); text-align:left}
.ls-table thead .grp{text-align:center; border-left:1px solid var(--line); color:var(--ink)}
.ls-table thead .grp2{border-left:1px solid var(--line)}
.ls-table thead .ls-sub th{font-size:10.5px; padding:5px 8px; font-weight:500}
.ls-table .c{text-align:center}
.ls-table tbody td{padding:9px 8px; border-bottom:1px solid #eef1f3; vertical-align:middle}
.ls-table .t{font-weight:500; color:var(--ink)}
.ls-table .sc{font-family:"Oswald",sans-serif; font-weight:700; color:#e23; white-space:nowrap; font-size:15px}
.ls-table .ls-min{color:var(--muted); font-size:12px; white-space:nowrap}
.ls-table .ls-min.lv{color:#e23; font-weight:700}

/* 联赛分组标题行 */
.ls-lg td{background:#eef3f7; font-weight:700; color:var(--ink); font-size:13px; padding:8px 12px;
  border-bottom:1px solid var(--line)}
.lg-dot{display:inline-block; width:8px; height:8px; border-radius:2px; background:var(--grass); margin-right:8px; vertical-align:middle}

/* 赔率单元格 */
.ls-table .od{font-size:13px; white-space:nowrap; min-width:52px}
.ls-table .od-side{background:#fbfdfb}
.ls-table .od-line{background:#fff7e6; font-family:"Oswald",sans-serif; font-weight:600; color:var(--ink)}
.ls-table td.od-line+.od-side{border-left:none}
.ls-table tbody tr:hover td{background:#f6fbf8}
.ls-table tbody tr:hover .od-line{background:#fdeecb}

.ls-empty{padding:18px; color:var(--muted)}
.ls-loading{text-align:center; color:var(--muted); padding:22px}

.ls-more{display:block; width:100%; border:none; cursor:pointer; background:#fff;
  border-top:1px solid var(--line); padding:13px; font-family:"Be Vietnam Pro",sans-serif; font-weight:600;
  font-size:14px; color:var(--grass-d)}
.ls-more:hover{background:#f4faf6}

.ls-seo h2{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.03em; font-size:19px;
  color:var(--ink); margin:24px 0 8px; padding-bottom:6px; border-bottom:2px solid var(--line)}
.ls-seo p{margin:0 0 14px}

@media (max-width:640px){
  .ls-table{font-size:13px}
  .ls-table .od{font-size:12px; min-width:44px}
}

/* 进行中比赛：分钟闪烁，营造实时感 */
.ls-min.lv{animation:ls-min-blink 1.1s ease-in-out infinite}
@keyframes ls-min-blink{0%,100%{opacity:1}50%{opacity:.28}}
@media (prefers-reduced-motion:reduce){ .ls-min.lv{animation:none} }

/* 未来比赛：时间 + 日期 */
.ls-min.up .m-time{display:block; font-family:"Oswald",sans-serif; font-weight:600; color:var(--ink); font-size:14px}
.ls-min.up .m-date{display:block; color:var(--muted); font-size:11px; margin-top:1px}

/* ===== Nhận định 列表页 ===== */
.nd-crumb{font-size:13px; color:var(--muted); margin:18px 0 14px}
.nd-crumb a{color:var(--grass-d); text-decoration:none}
.nd-crumb a:hover{text-decoration:underline}
.nd-crumb span{color:var(--ink); font-weight:600}

.nd-titlebox{border:1px solid var(--line); border-radius:10px; padding:16px 18px; background:#fff; margin:0 0 18px}
.nd-h1{font-family:"Oswald",sans-serif; font-weight:700; letter-spacing:.01em; line-height:1.2;
  font-size:clamp(20px,3.4vw,28px); color:#c62828; margin:0}

.nd-intro{color:#2b3a45; margin:0 0 16px; line-height:1.7; max-width:900px}
.nd-intro p{margin:0 0 12px}
.nd-more{font-weight:600; color:var(--ink)}
.nd-more a{color:var(--grass-d); text-decoration:none}
.nd-more a:hover{text-decoration:underline}

.nd-tags{display:flex; flex-wrap:wrap; gap:8px; margin:0 0 26px}
.nd-tag{display:inline-block; padding:7px 14px; border:none; border-radius:6px; font-weight:600; font-size:13.5px;
  font-family:inherit; color:#fff; background:var(--grass); cursor:pointer; transition:transform .08s, box-shadow .12s}
.nd-tag:hover{transform:translateY(-1px)}
.nd-tag.is-primary{background:var(--ink)}
.nd-tag.active{box-shadow:0 0 0 3px rgba(0,0,0,.15), 0 0 0 1px #fff inset}
.nd-nofilter{margin:14px 0 0; padding:18px; text-align:center; color:var(--muted);
  border:1px dashed var(--line); border-radius:10px; background:var(--paper)}

.nd-group{margin:0 0 24px}
.nd-date{font-family:"Oswald",sans-serif; font-weight:600; text-transform:uppercase; letter-spacing:.04em;
  font-size:15px; color:#fff; background:var(--ink); margin:0; padding:11px 16px; border-radius:10px 10px 0 0;
  display:flex; align-items:center; gap:9px}
.nd-date::before{content:""; width:9px; height:9px; border-radius:2px; background:var(--led); display:inline-block}

.nd-list{list-style:none; margin:0; padding:0; border:1px solid var(--line); border-top:none;
  border-radius:0 0 10px 10px; overflow:hidden; background:var(--paper)}
.nd-link{display:grid; grid-template-columns:88px 1fr auto; align-items:center; gap:12px;
  padding:12px 16px; border-bottom:1px solid #eef1f3; text-decoration:none; color:inherit; transition:background .12s}
.nd-item:last-child .nd-link{border-bottom:none}
.nd-link:hover{background:#f4faf6}

/* 时间列：日期在上、时间在下 */
.nd-time{text-align:center; line-height:1.15}
.nd-d{display:block; color:var(--muted); font-size:11px; margin-bottom:1px}
.nd-hm{display:block; font-family:"Oswald",sans-serif; font-weight:700; color:#e23; font-size:17px}

.nd-match{min-width:0}
.nd-teams{display:block; font-weight:600; color:var(--ink); font-size:15px; line-height:1.25; overflow:hidden; text-overflow:ellipsis}
.nd-teams i{font-style:normal; color:var(--muted); font-weight:400; margin:0 4px}
.nd-comp{display:block; color:var(--grass-d); font-size:12.5px; margin-top:2px}

/* 预测标签 */
.nd-tip{font-size:12.5px; color:var(--muted); background:#f1f5f8; border:1px solid var(--line);
  padding:4px 10px; border-radius:20px; white-space:nowrap}

/* 已结束/进行中：真实比分放两队中间，状态标签放联赛旁 */
.nd-teams .nd-sc{font-family:"Oswald",sans-serif; font-weight:700; color:var(--ink); font-size:16px; margin:0 8px}
.nd-teams .nd-sc.lv{color:#e23}
.nd-comp .nd-done{display:inline-block; font-size:11px; color:#5a6b78; background:#eef1f3; border-radius:12px; padding:1px 9px; margin-left:8px; vertical-align:middle}
.nd-comp .nd-living{display:inline-block; font-size:11px; color:#fff; background:#e23; border-radius:12px; padding:1px 9px; margin-left:8px; vertical-align:middle}

.nd-seo h2{font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.03em; font-size:19px;
  color:var(--ink); margin:26px 0 8px; padding-bottom:6px; border-bottom:2px solid var(--line)}
.nd-seo p{margin:0 0 14px}

@media (max-width:560px){
  .nd-link{grid-template-columns:70px 1fr auto; gap:10px}
  .nd-teams{font-size:14px}
  .nd-score{font-size:16px}
}

/* ===== Lịch thi đấu 赛程页 ===== */
.sch-h1{font-family:"Oswald",sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.02em;
  font-size:clamp(22px,3.6vw,30px); color:var(--ink); margin:24px 0 8px}
.sch-intro{color:var(--muted); margin:0 0 18px; max-width:820px}
.sch-nd-demo,.sch-intro strong{display:inline-block; font-size:11px; font-weight:700; color:#fff; background:var(--grass);
  border-radius:4px; padding:1px 6px; vertical-align:middle}

.sch-list{border:1px solid var(--line); border-radius:12px; overflow:hidden; background:var(--paper)}
.sch-lg{display:flex; align-items:center; gap:8px; background:#f0f3f5; border-top:1px solid var(--line);
  padding:9px 14px; font-weight:700; color:var(--ink); font-size:14px}
.sch-list .sch-lg:first-child{border-top:none}
.sch-lglogo{width:18px; height:18px; object-fit:contain}
.sch-ctry{color:var(--muted); font-weight:500; font-size:12.5px}

.sch-row{display:grid; grid-template-columns:64px 1fr 86px 1fr 40px; align-items:center; gap:8px;
  padding:9px 14px; border-top:1px solid #eef1f3}
.sch-time{display:flex; flex-direction:column; align-items:center; line-height:1.15}
.sch-hm{font-family:"Oswald",sans-serif; font-weight:700; color:var(--ink); font-size:14px}
.sch-dt{color:var(--muted); font-size:11px}
.sch-rnd{color:#9aa7b0; font-size:10.5px; margin-top:1px}
.sch-min{color:#e23; font-weight:700; font-size:11px; margin-top:1px}

.sch-home{display:flex; align-items:center; justify-content:flex-end; gap:8px; min-width:0}
.sch-away{display:flex; align-items:center; justify-content:flex-start; gap:8px; min-width:0}
.sch-tn{font-size:13.5px; color:var(--ink); overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
.sch-home .sch-tn{text-align:right}
.sch-logo{width:20px; height:20px; object-fit:contain; flex:none}

.sch-mid{display:flex; flex-direction:column; align-items:center; gap:2px}
.sch-badge{display:inline-block; min-width:52px; text-align:center; font-family:"Oswald",sans-serif; font-weight:700;
  font-size:13px; color:#fff; background:var(--grass); border-radius:14px; padding:3px 10px}
.sch-badge.vs{background:var(--grass); font-weight:600}
.sch-badge.lv{background:#e23}
.sch-badge.pst{background:#9aa7b0; font-size:11px}
.sch-ht{color:#9aa7b0; font-size:10.5px}

.sch-ndcell{text-align:center}
.sch-nd{display:inline-block; font-size:11px; font-weight:700; color:#fff; background:var(--ink);
  border-radius:5px; padding:3px 7px; text-decoration:none}
.sch-nd:hover{background:#16324a}

@media (max-width:600px){
  .sch-row{grid-template-columns:52px 1fr 70px 1fr 34px; gap:5px; padding:9px 8px}
  .sch-tn{font-size:12px}
  .sch-logo{width:17px; height:17px}
  .sch-badge{min-width:44px; font-size:12px; padding:3px 7px}
}

/* ===== 赛程页 日期选择条 + 日历 ===== */
.sch-datebar{display:flex; overflow-x:auto; border:1px solid var(--line); border-radius:10px; background:#fff; margin:0 0 4px; -webkit-overflow-scrolling:touch}
.sch-day{flex:1 0 auto; min-width:62px; display:flex; flex-direction:column; align-items:center; gap:2px;
  padding:9px 6px; border:none; border-left:1px solid var(--line); background:#fff; cursor:pointer; font-family:inherit}
.sch-day:first-child{border-left:none}
.sch-day-t{font-weight:700; font-size:13px; color:var(--ink); white-space:nowrap}
.sch-day-w{font-size:11.5px; color:var(--muted); white-space:nowrap}
.sch-day:hover{background:#f4faf6}
.sch-day.active{background:var(--grass)}
.sch-day.active .sch-day-t,.sch-day.active .sch-day-w{color:#fff}
.sch-pick{background:#eceff1}
.sch-pick:hover{background:#e2e7ea}
.sch-pick.active{background:var(--grass)}
.sch-pick.active .sch-day-t,.sch-pick.active .sch-day-w{color:#fff}

.sch-sub{text-align:center; font-weight:600; color:var(--ink); margin:12px 0 16px; font-size:15px}

.sch-calwrap{position:relative}
.sch-cal{position:absolute; z-index:30; left:0; top:2px; width:min(360px,92vw); background:#fff;
  border:1px solid var(--line); border-radius:12px; box-shadow:0 14px 36px rgba(13,42,64,.18); padding:12px}
.cal-head{display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:10px}
.cal-nav{width:34px; height:34px; border-radius:50%; border:1px solid var(--line); background:#fff; cursor:pointer; font-size:18px; color:var(--ink); line-height:1}
.cal-nav:hover{background:#f0f3f5}
.cal-my{font-weight:600; color:var(--ink); padding:6px 14px; border:1px solid var(--line); border-radius:18px; font-size:14px}
.cal-grid{display:grid; grid-template-columns:repeat(7,1fr); gap:2px; text-align:center}
.cal-wd{color:var(--muted); font-size:12px; padding-bottom:6px; border-bottom:1px solid var(--line); margin-bottom:4px}
.cal-wd span{padding:4px 0}
.cal-d{border:none; background:#fff; cursor:pointer; padding:9px 0; border-radius:50%; font-size:14px; color:var(--ink); font-family:inherit}
.cal-d:hover{background:#eef5f0}
.cal-d.sel{background:var(--grass); color:#fff; font-weight:700}

/* ===== Kèo 页：1x2 列组 ===== */
.keo-table .grp3{background:#fbf6ee}
.keo-table td.od{font-size:12.5px}
.keo-table .ls-min .sch-hm{display:block; font-weight:700; color:var(--ink); font-size:13px}
.keo-table .ls-min .sch-dt{display:block; color:var(--muted); font-size:10.5px}

/* ===== Kèo 页 日期选择条（药丸样式）===== */
.keo-datebar{display:flex; flex-wrap:wrap; gap:10px; margin:0 0 16px}
.keo-day{display:inline-flex; align-items:center; gap:6px; padding:9px 18px; border:none; border-radius:8px;
  background:#eceff1; color:var(--ink); font-family:inherit; font-weight:700; font-size:14px; cursor:pointer; transition:background .12s}
.keo-day:hover{background:#e2e7ea}
.keo-soon,.keo-live{color:var(--grass-d)}
.keo-day.active{background:#d8362f; color:#fff}
.keo-dot{width:9px; height:9px; border-radius:50%; background:#e23; display:inline-block; animation:schblink .9s steps(2,start) infinite}
.keo-day.active .keo-dot{background:#fff}
@media (prefers-reduced-motion: reduce){ .keo-dot{animation:none} }
@media (max-width:560px){ .keo-day{padding:8px 13px; font-size:13px} }

/* 赛事 SEO 文章里的列表 + 18+ 提示 */
.nd-seo ul{margin:0 0 14px; padding-left:22px}
.nd-seo li{margin:0 0 7px; line-height:1.6}
.keo-18{border-left:3px solid var(--led); background:#fff; padding:10px 14px; border-radius:0 8px 8px 0; color:#2b3a45}

/* ===== 赛程页 联赛选择条 ===== */
.lg-bar{display:flex; align-items:center; gap:8px; margin:0 0 10px}
.lg-track{display:flex; gap:8px; overflow-x:auto; scroll-behavior:smooth; flex:1; padding:2px; -webkit-overflow-scrolling:touch}
.lg-track::-webkit-scrollbar{height:0}
.lg-item{flex:0 0 auto; border:1px solid var(--line); background:#fff; color:var(--ink); font-family:inherit;
  font-weight:600; font-size:13.5px; padding:9px 16px; border-radius:8px; cursor:pointer; white-space:nowrap}
.lg-item:hover{background:#f4faf6}
.lg-item.active{background:var(--ink); color:#fff; border-color:var(--ink)}
.lg-arrow{flex:none; width:36px; height:36px; border-radius:50%; border:1px solid var(--line); background:#fff;
  color:var(--grass-d); font-size:18px; line-height:1; cursor:pointer}
.lg-arrow:hover{background:#f0f3f5}
@media (max-width:600px){ .lg-arrow{display:none} .lg-item{font-size:12.5px; padding:8px 12px} }

/* 赛程页 Trực tuyến 实时标签 + 闪烁 */
.sch-livedot{display:inline-block; width:7px; height:7px; border-radius:50%; background:#e23; margin-left:2px; vertical-align:middle; animation:schblink 1s steps(2,start) infinite}
.sch-day.sch-live.active{background:#e23}
.sch-day.sch-live.active .sch-day-t,.sch-day.sch-live.active .sch-day-w{color:#fff}
.sch-day.sch-live.active .sch-livedot{background:#fff}
.sch-min{animation:schblink 1s steps(2,start) infinite}
@keyframes schblink{50%{opacity:.25}}
@media (prefers-reduced-motion: reduce){ .sch-livedot,.sch-min{animation:none} }

/* ===== 首页分区 + 查看更多按钮 + 赛果赛程 tabs ===== */
.home-sec{margin:0 0 34px}
.home-sec-head{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin:24px 0 0}
.home-h2{font-family:"Oswald",sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.02em;
  font-size:clamp(20px,3.2vw,26px); color:var(--ink); margin:24px 0 14px}
.home-sec-head .home-h2{margin:0}
.home-more{display:inline-block; margin:14px 0 0; padding:11px 22px; border:2px solid var(--grass); color:var(--grass-d);
  background:#fff; border-radius:24px; font-weight:700; text-decoration:none; transition:background .12s,color .12s}
.home-more:hover{background:var(--grass); color:#fff}
.home-more.sm{margin:0; padding:8px 16px; font-size:13.5px; border-width:2px}
.home-tabs{display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 12px}
.home-tab{border:1px solid var(--line); background:#fff; color:var(--ink); font-family:inherit; font-weight:600;
  font-size:13.5px; padding:9px 16px; border-radius:8px; cursor:pointer}
.home-tab:hover{background:#f4faf6}
.home-tab.active{background:var(--grass); color:#fff; border-color:var(--grass)}
.home-livetab.active{background:#e23; border-color:#e23}
.home-livetab.active .sch-livedot{background:#fff}

/* Nhận định 页：加载更多 + 未开赛标签 */
.nd-loadwrap{text-align:center; margin:18px 0 6px}
.nd-loadmore{display:inline-block; padding:11px 26px; border:2px solid var(--grass); color:var(--grass-d); background:#fff;
  border-radius:24px; font-weight:700; cursor:pointer; font-family:inherit; transition:background .12s,color .12s}
.nd-loadmore:hover{background:var(--grass); color:#fff}
.nd-empty{text-align:center; color:var(--muted); padding:24px 0}
.nd-soon{color:var(--muted)!important; background:#eef2f4}

/* 修复：hidden 属性优先级（避免被 .nd-loadmore 等 display 覆盖）*/
[hidden]{display:none !important}

/* ===== Nhà Cái Uy Tín 列表 + 文章 ===== */
.nc-list{list-style:none; margin:16px 0 0; padding:0; display:grid; gap:14px}
.nc-link{display:block; background:#fff; border:1px solid var(--line); border-radius:12px; padding:18px 20px;
  text-decoration:none; color:inherit; transition:box-shadow .12s,border-color .12s}
.nc-link:hover{border-color:var(--grass); box-shadow:0 4px 16px rgba(0,0,0,.06)}
.nc-h{font-family:"Oswald",sans-serif; font-weight:700; font-size:clamp(17px,2.6vw,21px); color:var(--ink); margin:0 0 8px; line-height:1.25}
.nc-ex{color:#41525c; margin:0 0 10px; line-height:1.6}
.nc-read{color:var(--grass-d); font-weight:700; font-size:14px}
.nc-article{max-width:760px}
.nc-title{font-family:"Oswald",sans-serif; font-weight:700; font-size:clamp(24px,4.5vw,34px); color:var(--ink); line-height:1.2; margin:6px 0 14px}
.nc-lead{font-size:1.05rem; color:#2b3a45; line-height:1.7; margin:0 0 18px}
.nc-article h2{font-family:"Oswald",sans-serif; font-weight:700; color:var(--ink); margin:22px 0 8px; font-size:clamp(18px,3vw,23px)}
.nc-article p{line-height:1.75; color:#33424c; margin:0 0 12px}
.nc-back{margin-top:18px}
.nc-back a{color:var(--grass-d); font-weight:600}

/* ===== Nội dung giới thiệu cuối trang chủ (SEO block) ===== */
.seo-block{margin-top:40px; padding-top:26px; border-top:1px solid var(--line)}
.seo-block .seo-lead{font-size:16px; line-height:1.75; color:var(--text); margin:0 0 18px}
.seo-block h2{font-family:"Be Vietnam Pro",sans-serif; font-weight:700; font-size:clamp(20px,3.4vw,25px);
  line-height:1.25; color:var(--ink); margin:30px 0 10px; padding-bottom:8px; border-bottom:2px solid var(--grass)}
.seo-block h2:first-of-type{margin-top:0}
.seo-block h3{font-family:"Be Vietnam Pro",sans-serif; font-weight:700; font-size:clamp(16px,2.6vw,18.5px);
  line-height:1.3; color:var(--ink-2); margin:22px 0 7px}
.seo-block p{margin:0 0 12px; line-height:1.75; color:#2b3a45}
.seo-block strong{font-weight:700; color:var(--ink)}
/* bảng so sánh */
.seo-table-wrap{overflow-x:auto; -webkit-overflow-scrolling:touch; margin:14px 0 6px}
.seo-table{width:100%; min-width:560px; border-collapse:collapse; background:var(--paper);
  border:1px solid var(--line); border-radius:10px; overflow:hidden; font-size:14.5px}
.seo-table th,.seo-table td{padding:12px 14px; border-bottom:1px solid var(--line);
  text-align:left; vertical-align:top; line-height:1.55}
.seo-table thead th{background:var(--ink); color:#fff; font-weight:600; border-bottom:0}
.seo-table thead th.col-us{background:var(--grass-d)}
.seo-table tbody th{font-weight:700; color:var(--ink); white-space:nowrap; background:var(--chalk)}
.seo-table td.col-us{background:rgba(31,163,99,.08); color:#1c3a2b; font-weight:500}
.seo-table tbody tr:last-child th,.seo-table tbody tr:last-child td{border-bottom:0}
@media (max-width:560px){
  .seo-block h2{margin-top:24px}
  .seo-table{font-size:13.5px}
  .seo-table th,.seo-table td{padding:10px 11px}
}
