/* /play screen — Toss-clean O/X vote UI (game-specific only).
 * Shared components (top-bar, wallet-link, btn-secondary, back, etc) come from
 * /_design-components.css. Do not redefine them here.
 */

.ox-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.ox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  padding: 18px 14px;
  background: var(--paper);
  border: 3px solid var(--line);
  border-radius: var(--radius-card);
  cursor: pointer;
  transition: transform 0.08s ease, border-color 0.12s ease, background 0.12s ease;
  font-family: inherit;
  text-align: center;
}
.ox:hover { border-color: var(--brand); }
.ox:active { transform: scale(0.98); }
.ox:disabled { opacity: 0.55; cursor: not-allowed; }

.ox .letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--good);   /* O = brand-adjacent green (다수파 = go) */
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ox[data-side="B"] .letter { background: var(--bad); }  /* X = Hot Magenta (brand) */

.ox .label {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
  word-break: keep-all;
}

.ox.picked { border-color: var(--accent); background: #fff7ed; }
.ox.picked .label { color: var(--accent); }

/* Accumulation block in settled tile. */
.accumulation { margin-top: 16px; }
.today-stats, .total-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.total-stats { margin-top: 16px; }
.stat { flex: 1; }
.stat-label {
  display: block;
  font-size: var(--fs-base);
  color: var(--muted);
  margin-bottom: 4px;
}
.stat-value {
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dist-bar {
  display: flex;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: #eef2f6;
  margin-top: 16px;
}
.dist-bar .bar-a { height: 100%; background: var(--brand); }
.dist-bar .bar-b { height: 100%; background: #dc2626; }
