.vs-main {
  padding: 16px 0 30px;
}
.vs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.vs-hero-title {
  font-size: 1.15rem;
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 700;
}
.vs-hero-title small {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 8px;
}
.vs-hotbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.vs-hotbar .t {
  font-weight: 700;
  color: #c8102e;
  margin-right: 4px;
}
.vs-hotbar a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: .82rem;
  border: 1px solid var(--line);
  transition: all .2s;
}
.vs-hotbar a:hover, .vs-hotbar a.on {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.vs-hotbar a b {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 0 6px;
  font-size: .7rem;
  font-weight: 700;
}
.vs-datebar {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 14px;
}
.vs-datebar a {
  flex: 0 0 auto;
  text-align: center;
  min-width: 58px;
  padding: 6px 8px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .76rem;
}
.vs-datebar a b {
  display: block;
  color: var(--text);
  font-size: .92rem;
  margin-top: 2px;
}
.vs-datebar a.on {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.vs-datebar a.on b {
  color: #fff;
}
.vs-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.vs-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.vs-panel-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.vs-panel-head .live-count {
  color: #ff4d4f;
  font-size: .78rem;
  font-weight: 400;
}
.vs-match {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 60px 76px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.vs-match:last-child {
  border-bottom: 0;
}
.vs-match .m-time {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
}
.vs-match .m-time .st {
  display: block;
  margin-top: 3px;
  font-size: .72rem;
}
.vs-match .m-time .st.live, .vs-match .m-time .st.paused {
  color: #ff4d4f;
  font-weight: 700;
}
.vs-match .m-time .st.finished {
  color: #7a8299;
}
.vs-center {
  min-width: 0;
}
.vs-center .comp {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vs-center .comp .tag {
  display: inline-block;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 5px;
  margin-right: 5px;
  color: #cdd5ea;
}
.vs-teams .team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 2px 0;
}
.vs-teams .team img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 4px;
}
.vs-teams .team .nm {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
  font-size: .9rem;
}
.vs-score {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  padding-top:22px;
}
.vs-score .g {
  display: block;
  line-height: 1.35;
}
.vs-score.pre {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 1px;
}
.vs-act {
  text-align: right;
}
.vs-act a {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 18px;
  font-size: .78rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2f6fd6);
  margin-top:22px;
}
.vs-act a.play {
  background: linear-gradient(135deg, #c8102e, #ff5a3c);
  animation: vs-pulse 1.4s infinite;
}
.vs-empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--muted);
}
.vs-side .news-panel {
  margin-bottom: 16px;
}
.vs-newsgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.vs-newsgrid .card {
  display: flex;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}
.vs-newsgrid .card img {
  width: 96px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
}
.vs-newsgrid .card .info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vs-newsgrid .card .info h4 {
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vs-newsgrid .card .info .meta {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 900px) {
  .vs-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 560px) {
  .vs-match {
    grid-template-columns: 50px minmax(0, 1fr) 50px 50px;
  }
  .vs-act {
    /* display: none; */
  }
  .vs-newsgrid {
    grid-template-columns: 1fr;
  }
}
html[data-theme="light"] .vs-hero-title,
html[data-theme="light"] .vs-panel-head,
html[data-theme="light"] .vs-teams .team .nm,
html[data-theme="light"] .vs-score,
html[data-theme="light"] .vs-newsgrid .card .info h4 {
  color: #1a2233;
}
html[data-theme="light"] .vs-panel,
html[data-theme="light"] .vs-hotbar {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
html[data-theme="light"] .vs-panel-head,
html[data-theme="light"] .vs-match {
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .vs-datebar a,
html[data-theme="light"] .vs-hotbar a,
html[data-theme="light"] .vs-newsgrid .card,
html[data-theme="light"] .vs-center .comp .tag {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.1);
  color: #334155;
}
html[data-theme="light"] .vs-datebar a b {
  color: #1a2233;
}
html[data-theme="light"] .vs-datebar a.on,
html[data-theme="light"] .vs-datebar a.on b {
  color: #c8102e;
}
html[data-theme="light"] .m-time,
html[data-theme="light"] .vs-center .comp,
html[data-theme="light"] .vs-newsgrid .card .info .meta {
  color: #64748b;
}
html[data-theme="light"] .vs-hero-title small {
  color: #64748b;
}