.vs-main {
  padding: 16px 0 30px;
}
.vs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.vs-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.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-scoreboard {
  padding: 24px 16px 20px;
  text-align: center;
  background: linear-gradient(160deg, #10192f 0%, #17233f 60%, #1d2b4d 100%);
  border-bottom: 1px solid var(--line);
}
.vs-scoreboard .comp {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 18px;
}
.vs-scoreboard .comp .tag {
  display: inline-block;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 7px;
  margin-right: 6px;
  color: #cdd5ea;
}
.vs-sb-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.vs-sb-team {
  flex: 1;
  min-width: 0;
}
.vs-sb-team img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.vs-sb-team .nm {
  display: block;
  margin-top: 10px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vs-sb-team.home {
  text-align: right;
}
.vs-sb-team.away {
  text-align: left;
}
.vs-sb-mid {
  min-width: 140px;
}
.vs-sb-mid .score {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
}
.vs-sb-mid .score.pre {
  color: var(--accent);
  font-size: 2rem;
  letter-spacing: 4px;
}
.vs-sb-mid .half {
  margin-top: 8px;
  font-size: .74rem;
  color: var(--muted);
}
.vs-sb-status {
  margin-top: 16px;
}
.vs-sb-status .st {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  font-size: .8rem;
  color: #fff;
}
.vs-sb-status .st.live, .vs-sb-status .st.paused {
  background: #c8102e;
  animation: vs-blink 1.2s infinite;
}
.vs-sb-time {
  margin-top: 10px;
  font-size: .74rem;
  color: rgba(255, 255, 255, .5);
}
.vs-live-btns {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.vs-live-btns a {
  padding: 8px 18px;
  border-radius: 22px;
  color: #fff;
  font-size: .86rem;
  background: linear-gradient(135deg, #367bc8, #34f575);
  animation: vs-spring 1.4s infinite alternate;
}
.vs-live-btns p {
  animation: vs-spring 1.4s infinite alternate;
}
.vs-qtable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.vs-qtable th, .vs-qtable td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  color: var(--text);
}
.vs-qtable th {
  color: var(--muted);
  font-weight: 600;
  font-size: .8rem;
}
.vs-qtable td.tm {
  text-align: left;
  font-weight: 600;
}
.vs-qtable td.total {
  color: var(--accent);
  font-weight: 800;
}
.vs-envwrap {
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}
.vs-envwrap .it {
  font-size: .88rem;
}
.vs-envwrap .it span.k {
  color: var(--muted);
}
.vs-envwrap .it span.v {
  color: var(--text);
  font-weight: 600;
}
.vs-related a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.vs-related a:last-child {
  border-bottom: 0;
}
.vs-related .tm {
  flex: 1;
  min-width: 0;
  font-size: .88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vs-related .tm.h {
  text-align: right;
}
.vs-related .sc {
  min-width: 52px;
  text-align: center;
  font-weight: 700;
  color: var(--accent);
  font-size: .9rem;
}
.vs-related .tt {
  min-width: 46px;
  color: var(--muted);
  font-size: .74rem;
}
.vs-intro {
  padding: 14px 16px;
  font-size: .92rem;
  line-height: 1.9;
  color: #cfd6e6;
}
@media (max-width: 900px) {
  .vs-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
html[data-theme="light"] h1,
html[data-theme="light"] .vs-panel-head,
html[data-theme="light"] .vs-qtable th,
html[data-theme="light"] .vs-qtable td,
html[data-theme="light"] .vs-related a,
html[data-theme="light"] .vs-envwrap .it span.v {
  color: #1a2233;
}
html[data-theme="light"] .vs-panel {
  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-qtable th,
html[data-theme="light"] .vs-qtable td,
html[data-theme="light"] .vs-related a {
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .vs-intro {
  color: #384252;
}
html[data-theme="light"] .vs-envwrap .it span.k,
html[data-theme="light"] .vs-qtable th,
html[data-theme="light"] .vs-related .tt {
  color: #64748b;
}
html[data-theme="light"] .vs-scoreboard {
  background: linear-gradient(160deg, #1d428a 0%, #2f6fd6 100%);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .news-list a {
  color: #1a2233;
}