.board-body { min-height: 100vh; }
.board-wrap { max-width: 1100px; margin: 0 auto; padding: 20px 16px 40px; }
.board-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.board-head h1 { margin: 4px 0; font-size: clamp(1.5rem, 3vw, 2rem); }
.board-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; color: var(--muted); }

.vcharts-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  min-height: 260px;
  padding: 12px 8px 0;
  flex-wrap: wrap;
}
.vcharts-row.compact { min-height: 200px; gap: 14px; }
.vcol {
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vcol.winner .vfill {
  background: linear-gradient(180deg, #ffb35c, #FF8300 45%, #00A7CE);
  box-shadow: 0 0 24px rgba(255,131,0,.28);
}
.vcol.empty .vfill { opacity: .25; }
.vval {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--nsk-cerulean, #00A7CE);
}
.vtrack {
  width: 54px;
  height: 200px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.vcharts-row.compact .vtrack { height: 150px; width: 46px; }
.vfill {
  width: 100%;
  height: 0;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, #5ecfe6, #00A7CE 55%, #007A96);
  transition: height .8s cubic-bezier(.2,.8,.2,1);
}
.vname {
  text-align: center;
  font-size: .82rem;
  color: #d7e8ef;
  line-height: 1.25;
  min-height: 2.4em;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .matches-grid { grid-template-columns: 1fr; }
}
.match-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.12);
}
.match-title {
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.match-title span { color: var(--muted); font-weight: 500; }

.vote-counter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0;
}
.vc-item {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 10px;
  background: rgba(0,194,203,.06);
}
.vc-num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ok);
  line-height: 1;
}
.vc-num.warn { color: var(--nsk-orange, #FF8300); }
.vc-num.soft { color: var(--nsk-cerulean, #00A7CE); }
.vc-label { margin-top: 6px; color: var(--muted); font-size: .9rem; }
.progress-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00A7CE, #FF8300);
  transition: width .6s ease;
}

.live-dot {
  background: rgba(255,107,107,.18);
  color: #ff8e8e;
  border: 1px solid rgba(255,107,107,.45);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 8px;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .board-wrap { padding: 14px 12px 96px; }
  .board-head { flex-direction: column; }
  .board-meta { width: 100%; }
  .board-meta .btn { flex: 1 1 auto; text-align: center; min-width: 0; }
  .vcharts-row { min-height: 200px; gap: 10px; }
  .vcharts-row.compact { min-height: 160px; }
  .vcol { width: 72px; }
  .vtrack { width: 40px; height: 140px; }
  .vcharts-row.compact .vtrack { height: 110px; width: 36px; }
  .vname { font-size: .72rem; }
  .vval { font-size: 1rem; }
  .vote-counter { grid-template-columns: 1fr; }
  .vc-num { font-size: 2rem; }
}
