/* ==========================================================================
   Calculadora de Fold Equity - threebet-vs-or-view.css
   ==========================================================================
   Rediseno completo (Acto 1 mesa + Acto 2 historia/EV + palancas a la izquierda).
   Bloque "Spot visual" (mesa 6-max - Tanda C) se preserva integro.
========================================================================== */


/* === Variables globales scoped al view ================================== */
.threebet-vs-or-view {
  --t-bg: #1b1b1f;
  --t-bg-card: #232327;
  --t-bg-sub: #1f1f23;
  --t-bg-input: #2d2d32;
  --t-border: rgba(255,255,255,.08);
  --t-border-strong: rgba(255,255,255,.12);
  --t-text: #eaf7ff;
  --t-text-soft: #d8e7f3;
  --t-text-muted: #b6c8d7;
  --t-accent: #6ECFF0;
  --t-accent-soft: #8fdcff;
  --t-good: #63e6be;
  --t-bad: #ff7b7b;
  --t-warn: #f5a524;
}

/* === Estructura principal =============================================== */
.tbvo-page {
  width: 100%;
  color: var(--t-text);
}
.tbvo-wrap {
  margin: 18px auto 0;
  max-width: 1180px;
  background: var(--t-bg);
  border: 1px solid var(--t-border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* Layout 2 columnas: palancas a la izquierda, contenido a la derecha */
.tbvo-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

/* Card base */
.tbvo-card {
  background: var(--t-bg-card);
  border: 1px solid var(--t-border);
  border-radius: 16px;
  padding: 13px;
}

/* === Acciones de rango (undo/redo + copiar/pegar, dentro de la card de la matriz) === */
.tbvo-range-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
/* Toggle "Ante BB" reubicado en la card de Spot */
.tbvo-ante-field {
  display: flex;
  align-items: center;
  padding-top: 2px;
}
.tbvo-tb-group {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tbvo-tb-glabel {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--t-text-muted);
  margin-right: 1px;
}
.tbvo-tb-sep {
  width: 1px;
  align-self: stretch;
  min-height: 20px;
  background: var(--t-border);
}
.tbvo-toolbar-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.tbvo-toolbar-toggle-text {
  font-size: .85rem;
  font-weight: 600;
  color: var(--t-text-soft);
}
.tbvo-switch-input { position: absolute; opacity: 0; width: 0; height: 0; }
.tbvo-switch {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: var(--t-bg-input);
  border: 1px solid var(--t-border-strong);
  transition: background .15s ease;
  flex: none;
}
.tbvo-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cdd9e3;
  transition: transform .15s ease, background .15s ease;
}
.tbvo-switch-input:checked + .tbvo-switch {
  background: var(--t-accent);
  border-color: var(--t-accent);
}
.tbvo-switch-input:checked + .tbvo-switch::after {
  transform: translateX(18px);
  background: #08151d;
}
.tbvo-switch-input:focus-visible + .tbvo-switch {
  box-shadow: 0 0 0 3px rgba(110,207,240,.35);
}

/* === PALANCAS (columna izquierda) ======================================= */
.tbvo-palancas {
  display: flex;
  flex-direction: column;
  /* Block 3 bug 10: mas aire entre cards (era 18px) */
  gap: 22px;
  min-width: 0;
}
.tbvo-pal-card {
  /* Block 3 bug 10: mas padding vertical (era 16px) */
  padding: 20px 18px;
}
.tbvo-pal-title {
  /* Block 3 bug 10: mas espacio bajo el titulo (era 14px) */
  margin: 0 0 18px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t-accent);
}
.tbvo-pal-field {
  /* Block 3 bug 10: mas espacio entre fields (era 18px) */
  margin-bottom: 22px;
}
.tbvo-pal-field:last-child {
  margin-bottom: 0;
}
.tbvo-pal-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--t-text-muted);
  /* Block 3 bug 10: un poco mas de aire entre label e input (era 6px) */
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.tbvo-pal-label .tbvo-help {
  margin-left: 6px;
}

/* Fila formato + RP%: formato a la izquierda flexible, RP% chico a la derecha */
.tbvo-pal-row--format {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  /* Block 3 followup: la row no es un pal-field, asi que necesita su propio
     margin-bottom para no quedar pegada al siguiente label ("Abre desde"). */
  margin-bottom: 22px;
}
.tbvo-pal-field--format {
  flex: 1 1 auto;
  margin-bottom: 0;
}
.tbvo-pal-field--rp {
  flex: 0 0 auto;
  width: 80px;
  margin-bottom: 0;
}
.tbvo-pal-num--rp {
  width: 100% !important;
}

/* Chips de formato (Cash/MTT/PKO) */
.tbvo-format-chips {
  display: flex;
  gap: 4px;
}
.tbvo-fmt-chip {
  appearance: none;
  flex: 1 1 0;
  background: var(--t-bg-input);
  color: var(--t-text-soft);
  border: 1px solid var(--t-border-strong);
  border-radius: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  transition: .12s ease;
}
.tbvo-fmt-chip:hover {
  border-color: rgba(110,207,240,.4);
}
.tbvo-fmt-chip.is-active {
  background: linear-gradient(180deg, #3bc4ff, #1f84d6);
  color: #08151d;
  border-color: rgba(59,196,255,.7);
}

.tbvo-format-note {
  margin-top: 6px;
  font-size: .72rem;
  color: var(--t-accent);
  opacity: .7;
  font-style: italic;
}

/* Selects de posicion */
.tbvo-pal-select {
  width: 100%;
  appearance: none;
  background: var(--t-bg-input);
  color: var(--t-text);
  border: 1px solid var(--t-border-strong);
  border-radius: 9px;
  padding: 8px 28px 8px 10px;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%236ECFF0' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .12s;
}
.tbvo-pal-select:hover,
.tbvo-pal-select:focus {
  border-color: var(--t-accent);
}
.tbvo-pal-select option {
  background: #15212c;
  color: var(--t-text);
}

/* Inputs numericos chicos en palancas */
.tbvo-pal-num {
  width: 64px;
  background: var(--t-bg-input);
  color: var(--t-text);
  border: 1px solid var(--t-border-strong);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
  outline: none;
}
.tbvo-pal-num:focus {
  border-color: var(--t-accent);
  box-shadow: 0 0 0 3px rgba(110,207,240,.15);
}
.tbvo-pal-unit {
  font-size: .78rem;
  font-weight: 700;
  color: var(--t-text-muted);
  margin-left: 4px;
}

/* Slider grande de palancas: head con label + input + unit alineados */
.tbvo-pal-slider-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tbvo-pal-slider-head .tbvo-pal-label {
  flex: 1 1 auto;
  margin-bottom: 0;
}
.tbvo-pal-slider {
  width: 100%;
  height: 6px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: var(--t-bg-input);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.tbvo-pal-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--t-accent);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,.4);
  transition: transform .12s;
}
.tbvo-pal-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.tbvo-pal-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--t-accent);
  border: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,.4);
}

/* Tickmarks debajo del slider: indicaciones visuales clickeables */
.tbvo-pal-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 2px;
}
.tbvo-pal-ticks span {
  font-size: .68rem;
  font-weight: 700;
  color: var(--t-text-muted);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: .1s;
  user-select: none;
}
.tbvo-pal-ticks span:hover {
  color: var(--t-accent);
  background: rgba(110,207,240,.1);
}

/* === Hero card en palancas (Tu mano) =================================== */
.tbvo-hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  position: relative;
}
/* Tu mano: la "sub-card" es un boton grande, claramente clickeable.
   Borde dashed + mini-label flotante para que el affordance sea obvio. */
.tbvo-hero-button {
  appearance: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: rgba(110,207,240,.04);
  border: 2px dashed rgba(110,207,240,.45);
  border-radius: 12px;
  padding: 22px 24px 16px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.tbvo-hero-button:hover {
  border-style: solid;
  border-color: var(--t-accent);
  background: rgba(110,207,240,.1);
  transform: translateY(-1px);
}
.tbvo-hero-button::after {
  /* Block 3 bug 9: texto mas visible y con icono — antes era ".65rem, color muted",
     ahora es ".75rem, cyan tint" y arranca con icono lapiz. */
  content: "\270E  Cambiar mano";
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(110,207,240,.6);
  margin-top: 4px;
  transition: color .15s ease;
}
.tbvo-hero-button:hover::after {
  color: var(--t-accent);
}
.tbvo-hero-button:active {
  transform: translateY(0);
}
.tbvo-hero-hand-display {
  /* #3 (R2): cartas estilo HandLab (rank grande central). Gap chico. */
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
/* Carta estilo HandLab (.pc): fondo solido por palo + rank grande centrado. */
.tbvo-pc {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 74px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0,0,0,.5);
  color: #fff;
  background: #16243A;
}
.tbvo-pc--h { background: #D62246; }
.tbvo-pc--d { background: #1481C0; }
.tbvo-pc--c { background: #1E8C3F; }
.tbvo-pc--s { background: #16243A; }
.tbvo-pc--empty {
  background: rgba(110,207,240,.06);
  border: 2px dashed rgba(110,207,240,.4);
  box-shadow: none;
}
.tbvo-pc-rank {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.7rem;
  line-height: 1;
}
.tbvo-pc-suit {
  position: absolute;
  top: 5px;
  left: 7px;
  font-size: .95rem;
  line-height: 1;
}

/* === #4: Modal "rango sugerido != real" (1 vez por sesion) ============== */
.tbvo-sugg-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tbvo-sugg-modal[hidden] { display: none; }
.tbvo-sugg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
}
.tbvo-sugg-dialog {
  position: relative;
  max-width: 420px;
  width: calc(100% - 40px);
  background: linear-gradient(160deg, #10243a, #0a1626);
  border: 1px solid rgba(110,207,240,.35);
  border-radius: 14px;
  padding: 26px 26px 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  text-align: center;
}
.tbvo-sugg-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--t-accent, #6ECFF0);
  margin: 0 0 12px;
}
.tbvo-sugg-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(232,244,250,.85);
  margin: 0 0 20px;
}
.tbvo-sugg-text strong { color: #fff; }
.tbvo-sugg-ok {
  appearance: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .9rem;
  color: #04121f;
  background: var(--t-accent, #6ECFF0);
  border: none;
  border-radius: 9px;
  padding: 11px 28px;
  transition: filter .15s ease, transform .1s ease;
}
.tbvo-sugg-ok:hover { filter: brightness(1.08); transform: translateY(-1px); }
.tbvo-sugg-ok:active { transform: translateY(0); }

/* Hero picker (modal, igual al viejo) */
.tbvo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 29;
}
.tbvo-hero-picker {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  width: min(760px, 94vw);
  max-height: min(84vh, 760px);
  overflow: auto;
  background: var(--t-bg-sub);
  border: 1px solid var(--t-border-strong);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 18px 36px rgba(0,0,0,.4);
}
.tbvo-hero-picker-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--t-text);
}
.tbvo-hero-close {
  appearance: none;
  border: 1px solid var(--t-border-strong);
  background: #2c2c31;
  color: var(--t-text);
  border-radius: 8px;
  padding: 4px 10px;
  cursor: pointer;
  font-weight: 700;
}
.tbvo-hero-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(245,165,36,.12);
  border: 1px solid rgba(245,165,36,.3);
  border-radius: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.tbvo-hero-confirm span { font-size: .9rem; color: #ffd89a; }
.tbvo-hero-confirm strong { color: var(--t-accent); font-size: 1.05rem; }
.tbvo-hero-confirm-btn {
  appearance: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .86rem;
  cursor: pointer;
  border: 0;
  background: var(--t-accent);
  color: #08151d;
}
.tbvo-hero-cancel-btn {
  appearance: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .86rem;
  cursor: pointer;
  border: 1px solid var(--t-border-strong);
  background: #36363b;
  color: var(--t-text);
}

/* === Tooltip "?" sobre RP =============================================== */
.tbvo-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(110,207,240,.14);
  border: 1px solid rgba(110,207,240,.28);
  color: var(--t-accent-soft);
  font-size: .68rem;
  font-weight: 800;
  cursor: help;
  user-select: none;
  text-transform: none;
  transition: background .15s, color .15s;
}
.tbvo-help:hover {
  background: var(--t-accent);
  color: #08151d;
}
.tbvo-tooltip-popup {
  position: absolute;
  z-index: 100;
  top: 24px;
  left: 0;
  width: 280px;
  background: #15212c;
  color: var(--t-text);
  border: 1px solid var(--t-border-strong);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .76rem;
  line-height: 1.5;
  font-weight: 500;
  white-space: pre-line;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
}

/* === STAGE (columna derecha) ============================================ */
.tbvo-stage {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

/* Mesa visual: card mas chico (es el card que contiene la mesa, no la mesa) */
.tbvo-stage-mesa {
  padding: 12px;
}

/* Rangos: card con las dos matrices lado a lado */
.tbvo-stage-rangos {
  padding: 12px;
}
.tbvo-rangos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 14px;
  min-width: 0;
}
.tbvo-matrix-card {
  min-width: 0;
  background: var(--t-bg-sub);
  border: 1px solid var(--t-border);
  border-radius: 12px;
  padding: 10px;
}
.tbvo-matrix-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.tbvo-matrix-head h4 {
  margin: 0 0 3px;
  font-size: .94rem;
  color: var(--t-text);
}
.tbvo-matrix-head p {
  margin: 0;
  color: var(--t-text-muted);
  font-size: .82rem;
}
.tbvo-meta {
  white-space: nowrap;
  color: var(--t-accent-soft);
  font-weight: 700;
  font-size: .82rem;
}
.tbvo-matrix-wrap {
  max-width: 100%;
  overflow: hidden;
}
.tbvo-matrix {
  display: grid;
  grid-template-columns: repeat(13, minmax(0, 1fr));
  gap: 2px;
  width: 100%;
}
.tbvo-matrix--hero { min-width: 0; }
.tbvo-cell {
  appearance: none;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  min-height: 24px;
  padding: 0;
  font-size: .66rem;
  font-weight: 700;
  color: #edf8ff;
  cursor: pointer;
  transition: .1s ease;
  user-select: none;
}
.tbvo-cell.is-pair    { background: #3c3454; }
.tbvo-cell.is-suited  { background: #224458; }
.tbvo-cell.is-offsuit { background: #4f352f; }
.tbvo-cell:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.18);
}
#tbvo-or-grid .tbvo-cell.is-selected,
#tbvo-hero-grid .tbvo-cell.is-selected {
  background: linear-gradient(180deg, #3bc4ff, #1f84d6);
  color: #08151d;
  border-color: rgba(59,196,255,.75);
}
#tbvo-call-grid .tbvo-cell.is-selected {
  background: linear-gradient(180deg, #ffb84d, #ff7b39);
  color: #1b0f06;
  border-color: rgba(255,184,77,.75);
}
#tbvo-call-grid .tbvo-cell.is-fourbet {
  background: linear-gradient(180deg, #ff5a6e, #c1121f);
  color: #2a0406;
  border-color: rgba(255,90,110,.75);
}
#tbvo-call-grid .tbvo-cell.is-mixed {
  background: linear-gradient(135deg, #ff8a3d 0 50%, #d6263f 50% 100%);
  color: #2a0406;
  border-color: rgba(255,140,90,.7);
  text-shadow: 0 1px 1px rgba(255,255,255,.3);
}

/* Pincel de la grilla Call: Paga (flat) / 4bet */
.tbvo-brush {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.tbvo-brush[hidden] { display: none; }
.tbvo-brush-label {
  font-size: .72rem;
  color: var(--t-text-muted);
  margin-right: 2px;
}
.tbvo-brush-btn {
  appearance: none;
  border: 1px solid var(--t-border-strong);
  background: var(--t-bg-input);
  color: var(--t-text-soft);
  font-size: .74rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: .12s ease;
}
.tbvo-brush-btn:hover { border-color: rgba(255,255,255,.25); }
.tbvo-brush-btn.is-active[data-brush="flat"] {
  background: linear-gradient(180deg, #ffb84d, #ff7b39);
  color: #1b0f06;
  border-color: rgba(255,184,77,.75);
}
.tbvo-brush-btn.is-active[data-brush="fourbet"] {
  background: linear-gradient(180deg, #ff5a6e, #c1121f);
  color: #2a0406;
  border-color: rgba(255,90,110,.75);
}
.tbvo-brush-btn.is-active[data-brush="mixed"] {
  background: linear-gradient(135deg, #ff8a3d 0 50%, #d6263f 50% 100%);
  color: #2a0406;
  border-color: rgba(255,140,90,.7);
}
.tbvo-brush-btn.is-active[data-brush="fold"] {
  background: #59606e;
  color: #eef1f5;
  border-color: rgba(255,255,255,.22);
}
.tbvo-brush-btn.is-active[data-brush="out"] {
  background: #2d2d33;
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.16);
}
/* Pincel "out" como icono de goma (sin palabra): centra el SVG, que hereda el
   color del boton (currentColor) tanto en normal como en activo. */
.tbvo-brush-btn--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tbvo-brush-btn--icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
/* Botones undo/redo (#2) en la barra de Herramientas */
.tbvo-toolbar-history {
  display: inline-flex;
  gap: 4px;
}
.tbvo-hist-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--t-border-strong);
  background: var(--t-bg-input);
  color: var(--t-text-soft);
  border-radius: 8px;
  cursor: pointer;
  transition: .12s ease;
}
.tbvo-hist-btn svg { width: 15px; height: 15px; display: block; }
.tbvo-hist-btn:hover:not(:disabled) { border-color: var(--t-accent); color: var(--t-text); }
.tbvo-hist-btn:disabled { opacity: .35; cursor: default; }

/* === Grilla unificada (merge OR + Call) ================================ */
.tbvo-unified-card {
  max-width: 540px;
  margin-inline: auto;
}
.tbvo-meta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
}
.tbvo-meta--call { color: #ff9d5c; }
.tbvo-brush { flex-wrap: wrap; }
.tbvo-slider-lbl {
  font-size: .72rem;
  color: var(--t-text-muted);
  min-width: 46px;
  font-weight: 600;
}
#tbvo-call-grid .tbvo-cell.is-out {
  background: transparent;
  color: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.06);
}
#tbvo-call-grid .tbvo-cell.is-fold {
  background: #59606e;
  color: #eef1f5;
  border-color: rgba(255,255,255,.14);
}
#tbvo-call-grid .tbvo-cell.is-disabled {
  background: #232327;
  color: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.05);
  cursor: not-allowed;
  transform: none;
}
#tbvo-hero-grid .tbvo-cell.is-pending {
  background: linear-gradient(180deg, #f5a524, #e68a00) !important;
  color: #1a1200 !important;
  border-color: rgba(245,165,36,.7) !important;
  animation: tbvo-pulse .7s ease-in-out infinite alternate;
}
@keyframes tbvo-pulse {
  from { opacity: .75; }
  to   { opacity: 1; }
}

/* Tools de cada matriz: slider %, atajos, copy/paste */
.tbvo-rango-tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.tbvo-slider-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tbvo-slider {
  flex: 1;
  margin: 0;
  accent-color: var(--t-accent);
  cursor: pointer;
}
.tbvo-slider-value-box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tbvo-slider-pct {
  width: 56px;
  background: var(--t-bg-input);
  color: var(--t-text);
  border: 1px solid var(--t-border-strong);
  border-radius: 8px;
  padding: 4px 6px;
  outline: none;
  font-size: .82rem;
  font-weight: 700;
  text-align: right;
  -moz-appearance: textfield;
  appearance: textfield;
}
/* Sacar las flechitas del number input: comian ~16px a la derecha y cortaban
   los decimales (ej "30.5%"). El slider sigue siendo el control principal. */
.tbvo-slider-pct::-webkit-outer-spin-button,
.tbvo-slider-pct::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tbvo-slider-value-box span {
  font-size: .82rem;
  color: var(--t-accent-soft);
  font-weight: 700;
}

/* Atajos: chips clickeables claros — followup card-overlap. Antes eran texto
   plano con transparencia (no se notaba que eran botones). Ahora son pills con
   fondo cyan tenue + borde, hover con feedback fuerte. */
.tbvo-atajos {
  display: flex;
  align-items: center;
  /* Block 3 followup: centrar los presets y los botones copiar/pegar */
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .78rem;
}
/* Followup: ocultar el label "atajos:" y los separadores · — los chips ya se
   distinguen entre si por el borde, no necesitan el separador textual. */
.tbvo-atajos-label,
.tbvo-atajo-sep {
  display: none;
}
.tbvo-atajo {
  appearance: none;
  background: rgba(110,207,240,.06);
  border: 1px solid rgba(110,207,240,.22);
  color: var(--t-text-soft);
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 999px;
  transition: background .12s ease, border-color .12s ease, color .12s ease, transform .08s ease;
  white-space: nowrap;
}
.tbvo-atajo:hover {
  color: var(--t-accent);
  background: rgba(110,207,240,.14);
  border-color: rgba(110,207,240,.45);
}
.tbvo-atajo:active {
  transform: scale(.96);
}
.tbvo-atajos--io {
  font-size: .76rem;
}
.tbvo-atajos--io .tbvo-atajo {
  font-size: .76rem;
}

/* === ACTO 2: historia + EV gigante ====================================== */
/* === RESULTADO en palancas (round 4) =================================== */
.threebet-vs-or-view .tbvo-pal-card--resultado {
  padding: 16px 18px;
}
.tbvo-resultado-toggle {
  appearance: none;
  width: 100%;
  background: linear-gradient(145deg, rgba(99, 230, 190, .06), rgba(110, 207, 240, .03));
  border: 2px solid rgba(99, 230, 190, .35);
  border-radius: 14px;
  padding: 22px 24px;
  cursor: pointer;
  /* Block 4 bug 8a: flex con justify-content center para que el EV quede
     verdaderamente centrado en el boton (antes era grid 1fr|auto y el chevron
     empujaba el valor a la izquierda visual). El chevron ahora vive absolute
     en la esquina derecha, sin afectar el centrado del valor. */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color .15s ease, background .15s ease, transform .12s ease, box-shadow .15s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.04);
}
.tbvo-resultado-toggle:hover {
  border-color: rgba(99, 230, 190, .65);
  background: linear-gradient(145deg, rgba(99, 230, 190, .12), rgba(110, 207, 240, .06));
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.28), 0 0 0 4px rgba(99, 230, 190, .06);
}
.tbvo-resultado-toggle:active {
  transform: translateY(0);
}
.tbvo-resultado-toggle .tbvo-resultado-value {
  text-align: center;
}
.tbvo-resultado-value {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--t-text);
  font-variant-numeric: tabular-nums;
}
.tbvo-resultado-value.is-good { color: var(--t-good); }
.tbvo-resultado-value.is-bad  { color: var(--t-bad); }

/* Block 4 bug 8b: chevron mas lindo — wrappeado en un circulo con borde,
   hover/expanded con feedback de color + escala/rotacion. */
.tbvo-resultado-chevron {
  position: absolute;
  right: 18px;
  /* Centrado vertical via top:calc para no chocar con transform de rotate */
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--t-text-muted);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .25s ease, color .15s ease, background .15s ease, border-color .15s ease;
}
.tbvo-resultado-toggle:hover .tbvo-resultado-chevron {
  color: var(--t-good);
  background: rgba(99, 230, 190, .12);
  border-color: rgba(99, 230, 190, .3);
}
.tbvo-pal-card--resultado.is-expanded .tbvo-resultado-chevron {
  transform: rotate(180deg);
  color: var(--t-accent);
  background: rgba(110, 207, 240, .15);
  border-color: rgba(110, 207, 240, .35);
}

/* Detalle expandible: tabla EV (estilo solver, item 3e) */
.tbvo-resultado-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--t-border);
}
.tbvo-ev-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.tbvo-ev-th {
  text-align: right;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t-text-muted);
  padding: 0 0 8px;
  border-bottom: 1px solid var(--t-border);
}
.tbvo-ev-th--name { text-align: left; }
.tbvo-ev-row > td {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.045);
}
.tbvo-ev-row:last-child > td { border-bottom: 0; }
.tbvo-ev-name {
  text-align: left;
  font-size: .84rem;
  font-weight: 600;
  color: var(--t-text-soft);
}
.tbvo-ev-freq {
  text-align: right;
  font-size: .8rem;
  font-weight: 700;
  color: var(--t-text-muted);
  white-space: nowrap;
  padding-left: 12px;
}
.tbvo-ev-val {
  text-align: right;
  font-size: .92rem;
  font-weight: 800;
  color: var(--t-text);
  white-space: nowrap;
  padding-left: 14px;
}
.tbvo-ev-val.is-good { color: var(--t-good); }
.tbvo-ev-val.is-bad  { color: var(--t-bad); }

/* Bloque "Si te 4betean": dos respuestas, se resalta la mejor (item 3e) */
.tbvo-4bet-block {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(245,165,36,.28);
  border-radius: 12px;
  background: rgba(245,165,36,.05);
}
.tbvo-4bet-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.tbvo-4bet-block-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--t-warn);
}
.tbvo-4bet-block-freq {
  font-size: .78rem;
  font-weight: 700;
  color: var(--t-text-muted);
  font-variant-numeric: tabular-nums;
}
.tbvo-4bet-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tbvo-4bet-opt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 11px;
  border: 1px solid var(--t-border-strong);
  border-radius: 9px;
  background: var(--t-bg-input);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.tbvo-4bet-opt-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--t-text-soft);
  letter-spacing: .01em;
}
.tbvo-4bet-opt-val {
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--t-text);
  font-variant-numeric: tabular-nums;
}
.tbvo-4bet-opt-val.is-good { color: var(--t-good); }
.tbvo-4bet-opt-val.is-bad  { color: var(--t-bad); }
.tbvo-4bet-opt.is-best {
  border-color: rgba(99,230,190,.7);
  background: rgba(99,230,190,.1);
  box-shadow: 0 0 0 1px rgba(99,230,190,.25), 0 4px 12px rgba(0,0,0,.18);
}
.tbvo-4bet-opt.is-best .tbvo-4bet-opt-name { color: var(--t-good); }
.tbvo-4bet-opt.is-best .tbvo-4bet-opt-name::after {
  content: " \2713\0020mejor";
  font-weight: 800;
}
/* #3: opciones de respuesta al 4bet clickeables */
.threebet-vs-or-view .tbvo-4bet-opt { cursor: pointer; text-align: left; font-family: inherit; width: 100%; }
.threebet-vs-or-view .tbvo-4bet-opt:hover { border-color: var(--t-accent); }
.threebet-vs-or-view .tbvo-4bet-opt.is-selected:not(.is-best) { border-color: var(--t-accent); box-shadow: 0 0 0 2px rgba(110,207,240,.4); }
.tbvo-4bet-hint {
  margin: 10px 0 0;
  font-size: .74rem;
  line-height: 1.4;
  color: var(--t-text-muted);
}

/* Stack efectivo: bloque destacado */
.tbvo-effective-stack {
  margin-top: 6px;
  /* Block 3 followup: aire abajo para que no quede pegado al "Open del rival" */
  margin-bottom: 22px;
  padding: 10px 12px;
  background: rgba(110,207,240,.08);
  border: 1px solid rgba(110,207,240,.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tbvo-effective-stack-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-text-muted);
  margin-bottom: 2px;
}
.tbvo-effective-stack-value {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--t-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.tbvo-effective-stack-hint {
  font-size: .68rem;
  color: var(--t-text-muted);
  opacity: .8;
  font-style: italic;
}

/* === Responsive: layout colapsa abajo de cierto ancho ================== */
@media (max-width: 960px) {
  .tbvo-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }
}
@media (max-width: 760px) {
  .tbvo-resultado-value {
    font-size: 2.2rem;
  }
}

/* ===== Spot visual (mesa 6-max - Tanda C) ===== */

/* Mesa del spot — shell del glosario, Tanda C Opción B → 6-max, v4.
   6-max con posiciones reales etiquetadas, pucks chicos en el borde,
   cartas AL COSTADO del puck, botón BTN.
   ga-→tbvo-tbl- scopeado. DEDUP TARGET: /css/core/poker-table.css. */

.threebet-vs-or-view{
  --tbt-primary:#6ECFF0;
  --tbt-primary-rgb:110,207,240;
  --tbt-accent:#1481C0;
  --tbt-accent-rgb:20,129,192;
  --tbt-deep:#002E67;
  --tbt-text:#e0f7fa;
  --tbt-font-display:'Bebas Neue', 'Montserrat', sans-serif;
  --tbt-font-body:'Montserrat', system-ui, -apple-system, sans-serif;
  --tbt-font-card:'Inter', system-ui, -apple-system, sans-serif;
  --tbt-felt-1:#0c5034;
  --tbt-felt-2:#062418;
  --tbt-felt-rim:rgba(110,207,240,.22);
  --tbt-suit-s:#1a1a1a;
  --tbt-suit-h:#d32f2f;
  --tbt-suit-d:#1565c0;
  --tbt-suit-c:#2e7d32;
  --tbt-card-face:#ffffff;
  --tbt-card-back-1:#1481C0;
  --tbt-card-back-2:#002E67;
}

.threebet-vs-or-view .tbvo-mini-table{ margin-top:0; }
.threebet-vs-or-view .tbvo-tbl-hint{
  color:#6a7384;
  font-weight:600;
}

/* Marco contenedor de la mesa */
.threebet-vs-or-view .tbvo-tbl-frame{
  position:relative;
  overflow:visible;
}

/* STAGE — ovalado */
.threebet-vs-or-view .tbvo-tbl-stage{
  position:relative;
  width: 100%;
  aspect-ratio:1.6 / 1;
  container-type:inline-size;
  min-height:200px;
  border-radius:18px;
  overflow:hidden;
  background:
    radial-gradient(ellipse 60% 80% at 30% 18%, rgba(var(--tbt-primary-rgb),.14), transparent 50%),
    radial-gradient(ellipse 50% 60% at 78% 82%, rgba(var(--tbt-accent-rgb),.10), transparent 50%),
    linear-gradient(180deg,#0c1320 0%,#070b14 100%);
  border:1px solid rgba(var(--tbt-primary-rgb),.10);
  user-select:none;
  -webkit-user-select:none;
  transition:box-shadow .2s ease;
}

/* Click-to-zoom eliminado en Block 1: la mesa ya ocupa la mayor parte de la
   pantalla, no hace falta ampliar */

/* FELT — óvalo horizontal */
.threebet-vs-or-view .tbvo-tbl-felt{
  position:absolute;
  inset: 6% 5%;
  border-radius:50%;
  background:radial-gradient(ellipse at center, var(--tbt-felt-1) 0%, var(--tbt-felt-2) 78%);
  border:8px solid #18120b;
  box-shadow:
    inset 0 0 35px rgba(0,0,0,.6),
    inset 0 0 0 2px var(--tbt-felt-rim),
    0 8px 22px rgba(0,0,0,.55);
}
.threebet-vs-or-view .tbvo-tbl-felt::after{
  content:""; position:absolute; inset:16px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.05);
  pointer-events:none;
}

/* LOGO — watermark central */
.threebet-vs-or-view .tbvo-tbl-logo{
  position:absolute;
  left: 50%; top:50%;
  transform:translate(-50%,-50%);
  font-family:var(--tbt-font-display);
  font-size: clamp(9.412cqw, 6vw, 14.118cqw);
  letter-spacing: .32em;
  text-indent:.32em;
  line-height:.9;
  color:rgba(var(--tbt-primary-rgb),.13);
  pointer-events:none;
  text-align:center;
  z-index:1;
  width: 100%;
}
.threebet-vs-or-view .tbvo-tbl-logo small{
  display:block;
  font-family:var(--tbt-font-body);
  font-size: 2.635cqw;
  font-weight:800;
  letter-spacing: .5em;
  text-indent:.5em;
  color:rgba(var(--tbt-primary-rgb),.26);
  margin-top: 2.353cqw;
}

/* POT — un pelín más abajo, tapa el "LIF", deja ver "LET IT FLOW" */
.threebet-vs-or-view .tbvo-tbl-pot{
  position:absolute;
  left: 50%; top:47%;
  transform:translate(-50%,-50%);
  padding:.34rem .9rem;
  border-radius:6px;
  background:linear-gradient(180deg, rgba(0,46,103,.97) 0%, rgba(7,11,20,.99) 100%);
  border:1px solid rgba(var(--tbt-primary-rgb),.45);
  box-shadow:
    0 4px 10px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(var(--tbt-primary-rgb),.18),
    0 0 18px rgba(var(--tbt-primary-rgb),.12);
  font-family:var(--tbt-font-body);
  font-size: 2.918cqw;
  font-weight:800;
  color:var(--tbt-primary);
  letter-spacing: .06em;
  white-space:nowrap;
  text-shadow:0 0 8px rgba(var(--tbt-primary-rgb),.4);
  z-index:3;
  text-align:center;
}
.threebet-vs-or-view .tbvo-tbl-pot small{
  display:block;
  font-size: 2.353cqw;
  font-weight:700;
  letter-spacing: .1em;
  text-transform:uppercase;
  color:rgba(var(--tbt-primary-rgb),.7);
  margin-bottom: 0.294cqw;
}

/* CARTAS */
.threebet-vs-or-view .tbvo-tbl-card{
  width: 9.412cqw; height:13.529cqw;
  border-radius:5px;
  background: linear-gradient(160deg, #fcfcfd 0%, #f0f3f7 100%);
  border:1px solid rgba(0,0,0,.22);
  box-shadow:
    0 3px 7px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -2px 4px rgba(0,0,0,.06);
  position:relative;
  font-family:var(--tbt-font-card);
  font-weight:900;
  color:var(--tbt-suit-s);
  overflow:hidden;
}
.threebet-vs-or-view .tbvo-tbl-card-suit{
  position:absolute;
  left: 0.882cqw; top:0.588cqw;
  font-size: 2.588cqw;
  line-height:1;
  font-weight:900;
}
.threebet-vs-or-view .tbvo-tbl-card-rank{
  position:absolute;
  left: 50%; top:52%;
  transform:translate(-50%,-50%);
  font-size: 7.765cqw;
  font-weight:900;
  letter-spacing: -.06em;
  line-height:1;
}
.threebet-vs-or-view .tbvo-tbl-card[data-suit="s"]{ color:var(--tbt-suit-s); }
.threebet-vs-or-view .tbvo-tbl-card[data-suit="h"]{ color:var(--tbt-suit-h); background: linear-gradient(160deg, #fff5f5 0%, #fbd5d5 100%); }
.threebet-vs-or-view .tbvo-tbl-card[data-suit="d"]{ color:var(--tbt-suit-d); background: linear-gradient(160deg, #f5faff 0%, #d3e3f7 100%); }
.threebet-vs-or-view .tbvo-tbl-card[data-suit="c"]{ color:var(--tbt-suit-c); background: linear-gradient(160deg, #f7fbf7 0%, #c8e6cb 100%); }

.threebet-vs-or-view .tbvo-tbl-card.is-back{
  background:
    repeating-linear-gradient(45deg,
      var(--tbt-card-back-1) 0 4px,
      var(--tbt-card-back-2) 4px 8px);
  border-color:rgba(var(--tbt-primary-rgb),.5);
  box-shadow:
    0 2px 5px rgba(0,0,0,.45),
    inset 0 0 0 2px rgba(255,255,255,.15),
    inset 0 0 8px rgba(0,0,0,.4);
}
.threebet-vs-or-view .tbvo-tbl-card.is-back .tbvo-tbl-card-rank,
.threebet-vs-or-view .tbvo-tbl-card.is-back .tbvo-tbl-card-suit{ display:none; }
.threebet-vs-or-view .tbvo-tbl-card.is-back::after{
  content:"";
  position:absolute;
  inset: 1.176cqw;
  border-radius:3px;
  border:1px solid rgba(var(--tbt-primary-rgb),.6);
  background:radial-gradient(circle at center, rgba(var(--tbt-primary-rgb),.2), transparent 70%);
}
.threebet-vs-or-view .tbvo-tbl-card.in-seat{
  width: 6.176cqw; height:8.824cqw;
  border-radius:3px;
}
.threebet-vs-or-view .tbvo-tbl-card.in-seat .tbvo-tbl-card-rank{ font-size: 4.471cqw; }
.threebet-vs-or-view .tbvo-tbl-card.in-seat .tbvo-tbl-card-suit{ font-size: 2.6cqw; left: 0.7cqw; top: 0.4cqw; }
.threebet-vs-or-view .tbvo-tbl-card.in-seat.is-back::after{ inset: 0.882cqw; }
/* Felt estilo HandLab: cartas del hero con fondo solido por palo + texto blanco
   (mismo lenguaje que el selector .tbvo-pc). Mantiene el sizing cqw del .in-seat. */
.threebet-vs-or-view .tbvo-tbl-card.in-seat.is-hl{ color:#fff; border-color:rgba(0,0,0,.28); }
.threebet-vs-or-view .tbvo-tbl-card.in-seat.is-hl[data-suit="h"]{ background:#D62246; }
.threebet-vs-or-view .tbvo-tbl-card.in-seat.is-hl[data-suit="d"]{ background:#1481C0; }
.threebet-vs-or-view .tbvo-tbl-card.in-seat.is-hl[data-suit="c"]{ background:#1E8C3F; }
.threebet-vs-or-view .tbvo-tbl-card.in-seat.is-hl[data-suit="s"]{ background:#16243A; }

/* ASIENTOS — 6-max, pucks chicos iguales, en el borde */
.threebet-vs-or-view .tbvo-tbl-seat{
  position:absolute;
  width: 11cqw; height:11cqw;
  margin-left: -5.5cqw; margin-top:-5.5cqw;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, #2a384f 0%, #0b1220 80%);
  border:2px solid rgba(var(--tbt-primary-rgb),.22);
  box-shadow:0 6px 14px rgba(0,0,0,.5), inset 0 -8px 14px rgba(0,0,0,.35);
  display:grid; place-items:center;
  font-family:var(--tbt-font-display);
  letter-spacing: .04em;
  color:var(--tbt-text);
  z-index:5;
}
/* Anillo 6-max. Default pedagógico: OR abre desde CO, Hero en BB, resto foldea.
   Followup card-overlap: BTN/SB y HJ/UTG corridos hacia afuera (89%->93%, 11%->7%)
   para mas separacion visual cuando las dos cartas activas (CO+BTN o BB+SB) caen
   en la misma mitad de la mesa. */
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="utg"]{ left:7%; top:73%; }
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="hj"]{  left:7%; top:27%; }
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="co"]{  left:50%; top:12%; }   /* OR (abre) */
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="btn"]{ left:93%; top:27%; }
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="sb"]{  left:93%; top:73%; }
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="bb"]{  left:50%; top:88%; }   /* Hero (3bet jam) */

/* Hero (cyan) y OR (rojo) por rol, no por posición — así si cambia el spot, cambia el rol */
.threebet-vs-or-view .tbvo-tbl-seat.is-hero{
  background:radial-gradient(circle at 30% 30%, #244162 0%, #0b1726 80%);
  border-color:rgba(var(--tbt-primary-rgb),.6);
  color:var(--tbt-primary);
  box-shadow:
    0 6px 14px rgba(0,0,0,.5),
    inset 0 -8px 14px rgba(0,0,0,.35),
    0 0 0 2px rgba(var(--tbt-primary-rgb),.18);
}
.threebet-vs-or-view .tbvo-tbl-seat.is-or{
  border-color:rgba(226,92,92,.55);
  color:#ff9e9e;
}
.threebet-vs-or-view .tbvo-tbl-seat.is-folded{
  opacity:.42;
  filter:saturate(.45);
}

.threebet-vs-or-view .tbvo-tbl-seat-label{
  font-family:var(--tbt-font-display);
  font-size: 4.141cqw;
  letter-spacing: .05em;
  color:inherit;
}

/* Cartas AL COSTADO del puck (no tapan pozo ni fichas).
   Default: a la derecha del puck. */
.threebet-vs-or-view .tbvo-tbl-seat-cards{
  position:absolute;
  left: 100%;
  top: 50%;
  transform:translateY(-50%);
  margin-left: 0.882cqw;
  display:flex;
  gap: 0.588cqw;
  z-index:6;
}
/* Para los pucks del lado DERECHO de la mesa (BTN, SB) las cartas se renderan
   a la IZQUIERDA, asi no se salen del marco. */
/* Cards layout por posicion (round 7):
   - CO y BB: a la derecha del seat (default arriba) — el usuario lo confirmo perfecto.
   - HJ y BTN (esquinas superiores): arriba del seat, lejos de las fichas.
   - UTG y SB (esquinas inferiores): abajo del seat, lejos de las fichas.
   BTN y SB conservan ademas el flip horizontal a la izquierda del seat para no
   salirse del felt por la derecha. */
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="btn"] .tbvo-tbl-seat-cards,
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="sb"] .tbvo-tbl-seat-cards{
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 0.882cqw;
}
/* HJ + BTN: cartas arriba del seat (translateY corrido para que queden encima) */
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="hj"]  .tbvo-tbl-seat-cards,
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="btn"] .tbvo-tbl-seat-cards{
  top: -50%;
  transform: translateY(-50%);
}
/* UTG + SB: cartas abajo del seat */
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="utg"] .tbvo-tbl-seat-cards,
.threebet-vs-or-view .tbvo-tbl-seat[data-pos="sb"]  .tbvo-tbl-seat-cards{
  top: 110%;
  transform: translateY(-50%);
}
/* #2: cartas derechas (sin abanico) como en HandLab — lado a lado. */
.threebet-vs-or-view .tbvo-tbl-seat-cards .tbvo-tbl-card.in-seat:nth-child(1){ transform:none; }
.threebet-vs-or-view .tbvo-tbl-seat-cards .tbvo-tbl-card.in-seat:nth-child(2){ transform:none; margin-left:0; }

/* BOTÓN DEALER — al lado del BTN, dentro del óvalo del felt */
.threebet-vs-or-view .tbvo-tbl-button{
  position:absolute;
  /* Followup card-overlap: dealer button acompana el shift del BTN (84%->88%) */
  left: 88%; top:40%;
  width: 4.2cqw; height:4.2cqw;
  margin-left: -2.1cqw; margin-top:-2.1cqw;
  border-radius:50%;
  background:
    conic-gradient(
      from 0deg,
      var(--tbt-primary) 0deg 22.5deg, #fff 22.5deg 45deg,
      var(--tbt-primary) 45deg 67.5deg, #fff 67.5deg 90deg,
      var(--tbt-primary) 90deg 112.5deg, #fff 112.5deg 135deg,
      var(--tbt-primary) 135deg 157.5deg, #fff 157.5deg 180deg,
      var(--tbt-primary) 180deg 202.5deg, #fff 202.5deg 225deg,
      var(--tbt-primary) 225deg 247.5deg, #fff 247.5deg 270deg,
      var(--tbt-primary) 270deg 292.5deg, #fff 292.5deg 315deg,
      var(--tbt-primary) 315deg 337.5deg, #fff 337.5deg 360deg
    );
  box-shadow:
    0 3px 6px rgba(0,0,0,.6),
    0 0 12px rgba(var(--tbt-primary-rgb),.4),
    inset 0 -1px 2px rgba(0,0,0,.3),
    inset 0 1px 1px rgba(255,255,255,.3);
  z-index:6;
}
.threebet-vs-or-view .tbvo-tbl-button::before{
  content:""; position:absolute; inset:3px; border-radius:50%;
  background:var(--tbt-deep);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.5);
}
.threebet-vs-or-view .tbvo-tbl-button::after{
  content:"D";
  position:absolute; inset:5px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #1e3a5f, #0a1a2e);
  display:grid; place-items:center;
  font-family:var(--tbt-font-display);
  font-size: 2.2cqw; font-weight:900;
  color:var(--tbt-primary);
  text-shadow:0 0 4px rgba(var(--tbt-primary-rgb),.6);
}

/* FICHAS — apuesta delante de cada jugador, hacia el centro */
.threebet-vs-or-view .tbvo-tbl-stack{
  position:absolute;
  width: 2.0cqw; height:2.0cqw;
  margin-left: -1.0cqw; margin-top:-1.0cqw;
  display:block;
  z-index:6;
}
/* Posiciones de las fichas: dinamico segun stage[data-hero-pos] y data-villain-pos.
   Cada par (hero pos, ficha) y (villain pos, ficha) tiene su lugar pegado al puck.
   Followup card-overlap: chips de UTG/HJ pasan de 22%->18%, BTN/SB de 78%->82%
   para acompanar el shift de los seats correspondientes. */
.threebet-vs-or-view .tbvo-tbl-stage[data-hero-pos="utg"] .tbvo-tbl-stack[data-from="hero"]{ left:18%; top:67%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-hero-pos="hj"]  .tbvo-tbl-stack[data-from="hero"]{ left:18%; top:33%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-hero-pos="co"]  .tbvo-tbl-stack[data-from="hero"]{ left:50%; top:26%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-hero-pos="btn"] .tbvo-tbl-stack[data-from="hero"]{ left:82%; top:33%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-hero-pos="sb"]  .tbvo-tbl-stack[data-from="hero"]{ left:82%; top:67%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-hero-pos="bb"]  .tbvo-tbl-stack[data-from="hero"]{ left:50%; top:70%; }

.threebet-vs-or-view .tbvo-tbl-stage[data-villain-pos="utg"] .tbvo-tbl-stack[data-from="villain"]{ left:18%; top:67%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-villain-pos="hj"]  .tbvo-tbl-stack[data-from="villain"]{ left:18%; top:33%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-villain-pos="co"]  .tbvo-tbl-stack[data-from="villain"]{ left:50%; top:26%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-villain-pos="btn"] .tbvo-tbl-stack[data-from="villain"]{ left:82%; top:33%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-villain-pos="sb"]  .tbvo-tbl-stack[data-from="villain"]{ left:82%; top:67%; }
.threebet-vs-or-view .tbvo-tbl-stage[data-villain-pos="bb"]  .tbvo-tbl-stack[data-from="villain"]{ left:50%; top:70%; }

.threebet-vs-or-view .tbvo-tbl-chip{
  position:absolute;
  left: 0; top:0;
  width: 2.0cqw; height:2.0cqw;
  border-radius:50%;
  background:
    conic-gradient(
      from 0deg,
      var(--chip-edge) 0deg 22.5deg, #fff 22.5deg 45deg,
      var(--chip-edge) 45deg 67.5deg, #fff 67.5deg 90deg,
      var(--chip-edge) 90deg 112.5deg, #fff 112.5deg 135deg,
      var(--chip-edge) 135deg 157.5deg, #fff 157.5deg 180deg,
      var(--chip-edge) 180deg 202.5deg, #fff 202.5deg 225deg,
      var(--chip-edge) 225deg 247.5deg, #fff 247.5deg 270deg,
      var(--chip-edge) 270deg 292.5deg, #fff 292.5deg 315deg,
      var(--chip-edge) 315deg 337.5deg, #fff 337.5deg 360deg
    );
  box-shadow:
    0 2px 3px rgba(0,0,0,.55),
    inset 0 -1px 2px rgba(0,0,0,.3),
    inset 0 1px 1px rgba(255,255,255,.25);
}
.threebet-vs-or-view .tbvo-tbl-chip::before{
  content:""; position:absolute; inset:3px; border-radius:50%;
  background:var(--chip-ring);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.3);
}
.threebet-vs-or-view .tbvo-tbl-chip::after{
  content:""; position:absolute; inset:5.5px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--chip-core-light), var(--chip-core) 70%);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.3), inset 0 -1px 1px rgba(0,0,0,.4);
}
.threebet-vs-or-view .tbvo-tbl-chip:nth-child(1){ top: 0.5cqw; }
.threebet-vs-or-view .tbvo-tbl-chip:nth-child(2){ top: 0.3cqw; }
.threebet-vs-or-view .tbvo-tbl-chip:nth-child(3){ top: 0.1cqw; }
.threebet-vs-or-view .tbvo-tbl-chip:nth-child(4){ top: -0.1cqw; }
.threebet-vs-or-view .tbvo-tbl-chip:nth-child(5){ top: -0.3cqw; }

/* Fichas: hero = celeste (color de marca), rival = rojo. Mas sutiles que antes:
   menor sombra, sin halos exagerados; visualmente mas "limpias". */
.threebet-vs-or-view .tbvo-tbl-stack[data-from="hero"] .tbvo-tbl-chip{ --chip-edge:#1481c0; --chip-ring:#e8f4fd; --chip-core:#0d5589; --chip-core-light:#42a5f5; }
.threebet-vs-or-view .tbvo-tbl-stack[data-from="villain"] .tbvo-tbl-chip{ --chip-edge:#c41e3a; --chip-ring:#fadddd; --chip-core:#a01730; --chip-core-light:#e54860; }

/* Ciegas mandatorias (SB y BB cuando no son hero/villain): posiciones fijas
   sobre cada seat, color neutro (gris) para diferenciar de la accion. */
.threebet-vs-or-view .tbvo-tbl-stack[data-from="sb-mandatory"]{ left:80%; top:69%; }
.threebet-vs-or-view .tbvo-tbl-stack[data-from="bb-mandatory"]{ left:50%; top:70%; }
.threebet-vs-or-view .tbvo-tbl-stack[data-from="sb-mandatory"] .tbvo-tbl-chip,
.threebet-vs-or-view .tbvo-tbl-stack[data-from="bb-mandatory"] .tbvo-tbl-chip{
  --chip-edge:#6a7384; --chip-ring:#d8dde5; --chip-core:#44505f; --chip-core-light:#8d97a4;
}

.threebet-vs-or-view .tbvo-tbl-stack-label{
  position:absolute;
  left: 50%; bottom:-3.0cqw;
  transform:translateX(-50%);
  font-family:var(--tbt-font-body);
  font-size: 1.7cqw;
  font-weight:800;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.95), 0 0 4px rgba(0,0,0,.7);
  white-space:nowrap;
  pointer-events:none;
  letter-spacing: .02em;
}

@media (max-width:980px){
  .threebet-vs-or-view .tbvo-tbl-stage{ aspect-ratio:1.5 / 1; min-height:220px; }
}


/* ============================================================================
 * ROUND 2 REDESIGN (round-2 changes)
 * - Tu mano clickeable
 * - Chips de posicion
 * - RP% bloqueado en cash
 * - Stack rival y hint del efectivo
 * - Boton All-in
 * - Stacks dentro de pucks de la mesa
 * - Sin tickmarks
 * ========================================================================= */

/* === TU MANO: la card padre ya no necesita ser clickeable porque
       el affordance ahora vive en .tbvo-hero-button (la sub-card adentro). ===== */
.threebet-vs-or-view .tbvo-pal-card--tumano {
  /* Sin cursor:pointer en la card padre. La sub-card boton es la interactiva. */
}

/* === RP% bloqueado en cash =========================================== */
.threebet-vs-or-view .tbvo-pal-num.is-locked,
.threebet-vs-or-view .tbvo-pal-num:disabled {
  color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.05);
  cursor: not-allowed;
}

/* === Chips de posicion (UTG/HJ/CO/BTN/SB/BB) ========================== */
.threebet-vs-or-view .tbvo-pos-chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.threebet-vs-or-view .tbvo-pos-chip {
  appearance: none;
  background: var(--t-bg-input);
  color: var(--t-text-soft);
  border: 1px solid var(--t-border-strong);
  border-radius: 6px;
  padding: 7px 0;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: .12s ease;
}
.threebet-vs-or-view .tbvo-pos-chip:hover {
  border-color: rgba(110,207,240,.4);
  color: var(--t-text);
}
.threebet-vs-or-view .tbvo-pos-chip.is-active {
  background: linear-gradient(180deg, #3bc4ff, #1f84d6);
  color: #08151d;
  border-color: rgba(59,196,255,.8);
}
.threebet-vs-or-view .tbvo-pos-chip.is-disabled,
.threebet-vs-or-view .tbvo-pos-chip:disabled {
  opacity: .28;
  cursor: not-allowed;
  background: transparent;
  color: var(--t-text-muted);
  border-color: rgba(255,255,255,.06);
}
.threebet-vs-or-view .tbvo-pos-chip.is-disabled:hover {
  border-color: rgba(255,255,255,.06);
  color: var(--t-text-muted);
  background: transparent;
}

/* === Hint del stack efectivo ========================================== */
.threebet-vs-or-view .tbvo-pal-hint {
  margin-top: 6px;
  font-size: .7rem;
  color: var(--t-text-muted);
  font-style: italic;
  opacity: .8;
  line-height: 1.35;
}

/* === Boton All-in (solo bajo el slider de Tu sizing) ================= */
.threebet-vs-or-view .tbvo-pal-allin-row {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.threebet-vs-or-view .tbvo-allin-btn {
  appearance: none;
  background: var(--t-bg-input);
  color: var(--t-text-soft);
  border: 1px solid var(--t-border-strong);
  border-radius: 8px;
  padding: 5px 14px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: .12s ease;
}
.threebet-vs-or-view .tbvo-allin-btn:hover {
  border-color: var(--t-accent);
  color: var(--t-accent);
}
.threebet-vs-or-view .tbvo-allin-btn.is-active {
  background: linear-gradient(180deg, #3bc4ff, #1f84d6);
  color: #08151d;
  border-color: rgba(59,196,255,.8);
}


/* === Mesa: stacks dentro de pucks de Hero y Villain =================== */
/* Ajustar el font-size del label cuando contiene un numero (mas chico que sigla pos) */
.threebet-vs-or-view .tbvo-tbl-seat.is-hero .tbvo-tbl-seat-label,
.threebet-vs-or-view .tbvo-tbl-seat.is-or .tbvo-tbl-seat-label {
  font-family: var(--tbt-font-body);
  font-size: 2.4cqw;
  font-weight: 800;
  letter-spacing: .01em;
  /* Cuando el numero es largo (ej "100 BB"), que no sobrepase el puck */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  max-width: 9cqw;
  text-align: center;
}



/* === Ante visible en torneos (round 6) ================================= */
.threebet-vs-or-view .tbvo-tbl-ante {
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7cqw;
  z-index: 4;
  pointer-events: none;
}
.threebet-vs-or-view .tbvo-tbl-ante-chip {
  width: 1.9cqw;
  height: 1.9cqw;
  border-radius: 50%;
  /* Cyan brand LIF, alineado con paleta primary/accent/deep */
  background:
    radial-gradient(circle at 35% 30%, #8fdcff 0%, #1481C0 75%);
  border: 1px solid rgba(20, 129, 192, .65);
  box-shadow:
    0 2px 4px rgba(0,0,0,.5),
    inset 0 1px 1px rgba(255,255,255,.4),
    inset 0 -1px 1px rgba(0,0,0,.25);
  position: relative;
}
.threebet-vs-or-view .tbvo-tbl-ante-chip::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #b8e8ff, #002E67);
}
.threebet-vs-or-view .tbvo-tbl-ante-label {
  font-family: var(--tbt-font-body);
  font-size: 1.7cqw;
  font-weight: 700;
  color: rgba(110, 207, 240, .9);
  text-shadow: 0 1px 2px rgba(0,0,0,.9);
  letter-spacing: .04em;
  white-space: nowrap;
}



.threebet-vs-or-view .tbvo-spot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.threebet-vs-or-view .tbvo-spot-grid > * { margin-bottom: 0; }
.threebet-vs-or-view .tbvo-spot-full { grid-column: 1 / -1; }
.threebet-vs-or-view .tbvo-spot-grouplabel { font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--t-text-muted); margin-top: 2px; }
.threebet-vs-or-view .tbvo-spot-grid .tbvo-pal-slider-head { gap: 6px; }
.threebet-vs-or-view .tbvo-spot-grid .tbvo-pal-num { width: 56px; }

.threebet-vs-or-view .tbvo-spot-helprow { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.threebet-vs-or-view .tbvo-rp-inline { display: flex; flex-direction: column; gap: 6px; }
.threebet-vs-or-view .tbvo-rp-inline .tbvo-pal-label { margin-bottom: 0; }
/* Header de Spot: titulo + RP% + Ante BB en una barra (2026-06-09) */
.threebet-vs-or-view .tbvo-spot-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.threebet-vs-or-view .tbvo-spot-head .tbvo-pal-title { margin: 0; }
.threebet-vs-or-view .tbvo-spot-head-controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.threebet-vs-or-view .tbvo-spot-head .tbvo-rp-inline { flex-direction: row; align-items: center; gap: 8px; }
.threebet-vs-or-view .tbvo-spot-head .tbvo-rp-inline .tbvo-pal-label { margin: 0; white-space: nowrap; }
.threebet-vs-or-view .tbvo-spot-head .tbvo-pal-num { width: 58px; }
.threebet-vs-or-view .tbvo-suggest-inline { display: inline-flex; align-items: center; gap: 6px; }
.threebet-vs-or-view .tbvo-suggest-btn { appearance: none; display: inline-flex; align-items: center; gap: 6px; background: var(--t-bg-input); color: var(--t-text-soft); border: 1px solid var(--t-border-strong); border-radius: 8px; padding: 6px 12px; cursor: pointer; font-size: .76rem; font-weight: 800; letter-spacing: .02em; transition: .12s ease; }
.threebet-vs-or-view .tbvo-suggest-btn:hover { border-color: rgba(110,207,240,.4); color: var(--t-text); }

/* === Panel Resultado full-width (pedagogico) - 2026-06-08 === */
.threebet-vs-or-view .tbvo-result { padding: 16px 20px; }
.threebet-vs-or-view .tbvo-result-head { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; width: 100%; margin: 0; padding: 6px 36px; background: transparent; border: 0; color: inherit; font: inherit; cursor: pointer; }
.threebet-vs-or-view .tbvo-result-chevron { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); display: inline-flex; color: var(--t-text-muted); transition: transform .18s ease; }
.threebet-vs-or-view .tbvo-result-chevron svg { width: 22px; height: 22px; }
.threebet-vs-or-view .tbvo-result-head.is-open .tbvo-result-chevron { transform: translateY(-50%) rotate(180deg); }
.threebet-vs-or-view .tbvo-result-body[hidden] { display: none; }
.threebet-vs-or-view .tbvo-result-body { margin-top: 14px; }
.threebet-vs-or-view .tbvo-result-headline { display: flex; align-items: baseline; gap: 12px; }
.threebet-vs-or-view .tbvo-result-label { font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--t-text-muted); }
.threebet-vs-or-view .tbvo-result-ev { font-family: 'Bebas Neue','Montserrat',sans-serif; font-size: 2.8rem; line-height: 1; letter-spacing: .02em; color: var(--t-text); font-variant-numeric: tabular-nums; }
.threebet-vs-or-view .tbvo-result-ev.is-good { color: var(--t-good); }
.threebet-vs-or-view .tbvo-result-ev.is-bad { color: var(--t-bad); }
.threebet-vs-or-view .tbvo-result-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; align-items: start; }
.threebet-vs-or-view .tbvo-result-lines { display: flex; flex-direction: column; }
.threebet-vs-or-view .tbvo-rl-row { display: grid; grid-template-columns: 1.6fr .7fr .9fr .9fr; gap: 8px; align-items: center; padding: 8px 4px; font-size: .86rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.threebet-vs-or-view .tbvo-rl-row .r { text-align: right; font-variant-numeric: tabular-nums; }
.threebet-vs-or-view .tbvo-rl-head { font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--t-text-muted); border-bottom: 1px solid var(--t-border); }
.threebet-vs-or-view .tbvo-rl-row .is-good { color: var(--t-good); }
.threebet-vs-or-view .tbvo-rl-row .is-bad { color: var(--t-bad); }
.threebet-vs-or-view .tbvo-rl-4bet em { font-style: normal; color: var(--t-warn); font-size: .76rem; margin-left: 2px; }
.threebet-vs-or-view .tbvo-rl-total { border-bottom: 0; border-top: 1px solid var(--t-border-strong); font-weight: 800; margin-top: 2px; }
.threebet-vs-or-view .tbvo-result-side { display: flex; flex-direction: column; gap: 12px; }
.threebet-vs-or-view .tbvo-4bet-deep { border: 1px solid rgba(245,165,36,.28); border-radius: 12px; background: rgba(245,165,36,.05); padding: 12px 14px; }
.threebet-vs-or-view .tbvo-4bet-deep-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.threebet-vs-or-view .tbvo-4bet-deep-title { font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--t-warn); }
.threebet-vs-or-view .tbvo-4bet-deep-sub { font-size: .7rem; color: var(--t-text-muted); text-align: right; }
.threebet-vs-or-view .tbvo-4bet-opt-val.is-good { color: var(--t-good); }
.threebet-vs-or-view .tbvo-4bet-opt-val.is-bad { color: var(--t-bad); }
.threebet-vs-or-view .tbvo-4bet-math { margin: 10px 0 0; font-size: .76rem; line-height: 1.5; color: var(--t-text-soft); }
@media (max-width: 880px) { .threebet-vs-or-view .tbvo-result-body { grid-template-columns: 1fr; } }

/* #6: cartas de la mesita con EqCardSVG (full) — la SVG ES la carta */
.threebet-vs-or-view .tbvo-tbl-card.in-seat.is-svg{
  background:none;
  border:none;
  box-shadow:none;
  border-radius:0;
  overflow:visible;
  padding:0;
}
.threebet-vs-or-view .tbvo-tbl-card.is-svg svg{
  display:block;
  width:100%;
  height:100%;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.45));
}
