.table-section .section-card { display: flex; flex-direction: column; gap: var(--space-3); }

.seat-controls { display: flex; flex-direction: column; gap: var(--space-2); }
.seat-quick { display: flex; gap: var(--space-1); }
.seat-slider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 13px;
}
.seat-slider input[type="range"] {
  flex: 1;
  accent-color: var(--cobalt-700);
}
.seat-slider__value {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  min-width: 78px;
  text-align: right;
}

.table-wrapper {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: var(--space-2);
}
.poker-table { width: 100%; height: auto; display: block; }
.poker-table__felt {
  fill: var(--cobalt-100);
  stroke: var(--cobalt-700);
  stroke-width: 3;
}
.seat { cursor: pointer; }
.seat__circle {
  fill: white;
  stroke: var(--cobalt-700);
  stroke-width: 2;
  transition: fill 80ms, stroke 80ms, stroke-width 80ms;
}
.seat:hover .seat__circle { stroke: var(--cobalt-500); stroke-width: 3; }
.seat__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  fill: var(--cobalt-900);
  user-select: none;
  pointer-events: none;
}
.seat--hero .seat__circle {
  fill: var(--canary-500);
  stroke: var(--cobalt-900);
  stroke-width: 3;
  cursor: default;
}
.seat--hero { cursor: default; }
.seat--hero .seat__label { fill: var(--cobalt-900); }

.seat--villain .seat__circle {
  fill: var(--cobalt-100);
  stroke: var(--cobalt-700);
  stroke-width: 2.5;
}
.seat--villain .seat__label { fill: var(--cobalt-900); }
.seat--villain.seat--active .seat__circle {
  fill: var(--cobalt-700);
  stroke: var(--cobalt-900);
  stroke-width: 3;
}
.seat--villain.seat--active .seat__label { fill: white; }

.hero-select {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
}
.hero-select label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.hero-select__dropdown {
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
}
.hero-select__dropdown:focus {
  outline: 2px solid var(--cobalt-500);
  outline-offset: 1px;
}
