/* Page-specific styles for the PLO4 simulator.
   Layered on top of /styles.css (site theme). */

/* The simulator needs more horizontal room than the standard 720px detail
   article so the player rows + card palette can sit side-by-side. */
article.detail.plo4-page {
  max-width: 1100px;
}
/* Keep prose paragraphs and lists readable inside the wider article */
article.detail.plo4-page > p,
article.detail.plo4-page > ul,
article.detail.plo4-page > ol,
article.detail.plo4-page > h2,
article.detail.plo4-page > .download-box,
article.detail.plo4-page > .back,
article.detail.plo4-page > .meta,
article.detail.plo4-page > h1 {
  max-width: 720px;
}

.plo-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.plo-section h2 {
  font-family: var(--mono);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bone);
  margin-bottom: 0.4rem;
  padding-left: 0;
  border-left: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.plo-section h2::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  border-radius: 50%;
}

.plo-section .blurb {
  color: var(--bone-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 60ch;
}

/* The "table" container holding the deal-and-play widget */
.plo-table {
  background:
    radial-gradient(ellipse at center, #0e1f1a 0%, #050a08 75%),
    var(--black);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

/* Player rows */
.plo-player-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.4rem;
  border-radius: 2px;
  transition: background 0.25s, box-shadow 0.25s;
}

.plo-player-row.winner {
  background: rgba(226, 29, 44, 0.12);
  box-shadow: inset 0 0 0 1px var(--red), 0 0 24px -4px rgba(255, 36, 54, 0.5);
}

.plo-player-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  width: 5.5rem;
  flex-shrink: 0;
}
.plo-player-row.winner .plo-player-label { color: var(--red-hot); }

.plo-player-cards {
  display: flex;
  gap: 0.35rem;
}

/* Result column sits immediately after the cards (no margin-left:auto)
   and stacks a big 3D-extruded percentage over a small mono caption. */
.plo-player-result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 0.6rem;
  min-width: 7rem;
  line-height: 1;
}

.plo-player-result-pct {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #ff3949;
  /* Stacked text-shadows produce a vertical extrusion / chiseled look */
  text-shadow:
    0 1px 0 #b71826,
    0 2px 0 #931620,
    0 3px 0 #6f111a,
    0 4px 0 #4a0810,
    0 5px 0 #2a0810,
    0 7px 10px rgba(0, 0, 0, 0.7);
}

.plo-player-result-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone-faded);
  margin-top: 0.45rem;
  /* Long hand descriptions wouldn't fit on one line — let them wrap to two
     or get truncated rather than push the row width. */
  max-width: 14rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plo-player-row.winner .plo-player-result-pct {
  color: #ff5e6c;
  text-shadow:
    0 1px 0 #b71826,
    0 2px 0 #931620,
    0 3px 0 #6f111a,
    0 4px 0 #4a0810,
    0 5px 0 #2a0810,
    0 7px 14px rgba(255, 36, 54, 0.55);
}
.plo-player-row.winner .plo-player-result-sub {
  color: var(--bone);
}

/* Board */
.plo-board {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin: 1.25rem 0 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.plo-board .board-cards {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.plo-board-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bone-faded);
  margin-right: 0.4rem;
}

/* Playing cards.
   Layout: rank in the top-left as a label, suit fills the remaining space
   as a large centered symbol.
   Note: inline-flex (not flex) so cards stay inline-level — important for
   the board row, where the parent isn't a flex container. */
.pc {
  display: inline-flex;
  flex-direction: column;
  width: 46px;
  height: 64px;
  background: #f5f0e6;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 2px 4px 3px;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
  user-select: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
.pc.red   { color: #c8121f; }
.pc.dark  { color: #1a1a1a; }
.pc.face-down {
  background:
    repeating-linear-gradient(45deg, #4a0810 0 8px, #6a0c14 8px 16px);
  border-color: #1a1a1a;
}
.pc.empty {
  background: transparent;
  border: 1px dashed var(--line);
  box-shadow: none;
}
.pc.highlight {
  box-shadow:
    0 0 0 2px var(--red-hot),
    0 0 18px var(--red-hot),
    0 2px 0 rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.pc-rank {
  font-size: 1.4rem;
  line-height: 0.95;
  align-self: flex-start;
}
.pc-suit {
  font-size: 2.1rem;
  line-height: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Pull the suit up slightly so it visually sits centered in the
     space below the rank rather than dead-center of the whole card. */
  margin-top: -2px;
}

/* Larger card variant for the board */
.pc-lg {
  width: 54px;
  height: 76px;
  padding: 3px 5px 4px;
}
.pc-lg .pc-rank { font-size: 1.65rem; }
.pc-lg .pc-suit { font-size: 2.55rem; }

/* Deal controls */
.plo-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.plo-btn {
  font-family: var(--mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--red);
  color: var(--black);
  padding: 0.65rem 1.1rem;
  border: none;
  border-radius: 2px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.plo-btn:hover:not(:disabled) {
  background: var(--red-hot);
  box-shadow: 0 0 20px rgba(255, 36, 54, 0.55);
  transform: translateY(-1px);
}
.plo-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.plo-btn.secondary {
  background: transparent;
  color: var(--bone-dim);
  border: 1px solid var(--line-hi);
}
.plo-btn.secondary:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
  box-shadow: none;
}

.plo-status {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--bone-faded);
  margin-left: auto;
}

/* Equity calculator */
.plo-equity {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 1.5rem;
}

.plo-equity-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bone-dim);
  margin-bottom: 0.6rem;
  display: block;
}

.plo-card-inputs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* +/- counter for player count */
.plo-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.5rem;
}
.plo-counter-btn {
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid var(--line-hi);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  padding: 0;
}
.plo-counter-btn:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 12px rgba(226, 29, 44, 0.35);
}
.plo-counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.plo-counter-value {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  min-width: 1.5rem;
  text-align: center;
}

/* Board row sits above the player list with a subtle visual distinction. */
.board-host {
  margin: 1.25rem 0 0.85rem;
}
.board-row {
  /* Faint green felt feel without competing with the player rows */
  border-left-color: var(--yellow, #e8a93b) !important;
  background: linear-gradient(
    to right,
    rgba(45, 70, 50, 0.12),
    rgba(20, 20, 20, 0) 65%
  ), var(--black-soft);
}
.board-row .player-row-label {
  color: var(--bone);
}
/* Visual separator between flop / turn / river groups */
.board-sep {
  display: inline-block;
  width: 1px;
  height: 1.6rem;
  background: var(--line-hi);
  margin: 0 0.35rem;
  align-self: center;
}
.board-input::placeholder {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* Per-player row in the multiway equity calculator */
.player-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
}

.player-row {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.player-row-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  width: 4.5rem;
  flex-shrink: 0;
}

.player-row-inputs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.player-row-inputs .plo-card-input {
  width: 3.4rem;
  padding: 0.45rem 0.25rem;
  font-size: 0.95rem;
}

.player-row-preview {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.player-row-preview {
  /* Disable mobile defaults that conflict with our long-press gesture:
     iOS text-selection callout, double-tap-to-zoom, and selection on hold. */
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
  touch-action: manipulation;
}

.player-row-preview .pc {
  width: 36px;
  height: 50px;
  padding: 1px 3px 2px;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.18s, border-color 0.18s;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
  touch-action: manipulation;
}
.player-row-preview .pc .pc-rank { font-size: 1.05rem; }
.player-row-preview .pc .pc-suit { font-size: 1.65rem; }

.player-row-preview .pc:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px var(--red),
    0 4px 12px rgba(255, 36, 54, 0.35),
    0 2px 0 rgba(0,0,0,0.4);
}
.player-row-preview .pc.empty:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 0 12px rgba(226, 29, 44, 0.35);
}
.player-row-preview .pc.selected {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 2px var(--red-hot),
    0 0 18px rgba(255, 36, 54, 0.55),
    0 2px 0 rgba(0,0,0,0.4);
}
.player-row-preview .pc.empty.selected {
  border: 1.5px solid var(--red-hot);
  background: rgba(226, 29, 44, 0.1);
}

/* Per-player result rows */
.plo-equity-table {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.equity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.5rem 0;
}

.equity-row-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  width: 4.5rem;
  flex-shrink: 0;
}

.equity-row-bar {
  height: 22px;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.equity-row-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-deep), var(--red-hot));
  width: 0;
  transition: width 0.4s ease-out;
  box-shadow: 0 0 12px rgba(255, 36, 54, 0.35);
}
.equity-row-bar-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.55rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--bone);
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  pointer-events: none;
}

.equity-row-cards {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--bone-dim);
  white-space: nowrap;
}
.equity-row-cards .accent { color: #ff5e6c; }

.equity-row.winner .equity-row-label,
.equity-row.winner .equity-row-cards { color: var(--bone); }
.equity-row.winner .equity-row-bar { border-color: var(--red); }

/* Two-column layout: player list + controls on the left, palette on the right */
.plo-equity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}
.plo-equity-grid > .left  { min-width: 0; }
.plo-equity-grid > .right { position: sticky; top: 1rem; }

/* Card palette */
.plo-palette {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.85rem;
}
.plo-palette-hint {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bone-faded);
  margin-bottom: 0.6rem;
  text-align: center;
  line-height: 1.4;
}
.plo-palette-hint .accent { color: var(--red); }

.plo-palette-grid {
  display: grid;
  grid-template-columns: auto repeat(13, auto);
  gap: 3px;
  align-items: center;
}

.plo-palette-suit {
  font-size: 1.05rem;
  width: 1.2rem;
  text-align: center;
  color: var(--bone-dim);
}
.plo-palette-suit.red { color: #ff5e6c; }

.plo-palette-card {
  width: 1.85rem;
  height: 2.2rem;
  background: #f5f0e6;
  border: 1px solid #1a1a1a;
  border-radius: 3px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.1s, box-shadow 0.15s, filter 0.15s;
  user-select: none;
}
.plo-palette-card.red { color: #c8121f; }
.plo-palette-card:hover:not(.used):not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px var(--red-hot), 0 4px 12px rgba(255, 36, 54, 0.4);
  z-index: 2;
}
.plo-palette-card.used {
  filter: grayscale(1) brightness(0.35);
  cursor: not-allowed;
  pointer-events: none;
}

/* Selected slot indicator */
.plo-card-input.selected {
  border-color: var(--red);
  box-shadow:
    0 0 0 2px rgba(226, 29, 44, 0.4),
    0 0 16px rgba(255, 36, 54, 0.5);
  background: rgba(226, 29, 44, 0.08);
}

/* Per-player Clear button sits beside Random */
.player-row-inputs .btn-clear {
  font-size: 0.78rem;
}

/* Radial card picker (long-press) — glass theme.
   Each wedge is a <g> with three children: .bg (main shape), .rim (outer
   highlight crescent), .shadow (inner recessed crescent). CSS swaps the
   gradient fill on the .bg child when the group gains .active / .disabled. */
.pie-picker {
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.65));
  user-select: none;
  /* Frost what's behind the picker — works on the SVG's transparent corners
     as well as through the translucent wedges. */
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-radius: 50%;
}
.pie-picker svg {
  overflow: visible;
}

/* Suit ring wedges */
.pie-suit-wedge        { cursor: pointer; }
.pie-suit-wedge .bg {
  fill: url(#g-wedge);
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
  transition: fill 0.15s ease, stroke 0.15s ease, filter 0.15s ease;
}
.pie-suit-wedge .rim {
  fill: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}
.pie-suit-wedge .shadow {
  fill: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.pie-suit-wedge.active .bg {
  fill: url(#g-wedge-active);
  stroke: rgba(255, 200, 210, 0.4);
  filter: brightness(1.08);
}
.pie-suit-wedge.active .rim {
  fill: rgba(255, 255, 255, 0.65);
}
.pie-suit-wedge.active .shadow {
  fill: rgba(80, 5, 12, 0.55);
}

.pie-suit-label {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  fill: var(--bone);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.7));
}
.pie-suit-label.red { fill: #ff5e6c; }

/* Rank ring wedges */
.pie-rank-wedge       { cursor: pointer; }
.pie-rank-wedge .bg {
  fill: url(#g-wedge);
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
  transition: fill 0.15s ease, stroke 0.15s ease, filter 0.15s ease;
}
.pie-rank-wedge .rim {
  fill: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.pie-rank-wedge .shadow {
  fill: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.pie-rank-wedge.active .bg {
  fill: url(#g-wedge-active);
  stroke: rgba(255, 200, 210, 0.45);
  filter: brightness(1.12);
}
.pie-rank-wedge.active .rim {
  fill: rgba(255, 255, 255, 0.7);
}
.pie-rank-wedge.active .shadow {
  fill: rgba(80, 5, 12, 0.55);
}
.pie-rank-wedge.disabled .bg {
  fill: url(#g-wedge-disabled);
  stroke: rgba(255, 255, 255, 0.03);
}
.pie-rank-wedge.disabled .rim,
.pie-rank-wedge.disabled .shadow {
  opacity: 0.15;
}
.pie-rank-wedge.disabled { cursor: not-allowed; }
/* Cursor over a taken card — keep it disabled-looking but with a hint
   of the red glow to acknowledge the hover. */
.pie-rank-wedge.disabled.active .bg {
  fill: url(#g-wedge-disabled);
  stroke: rgba(226, 29, 44, 0.3);
  filter: brightness(1);
}

.pie-rank-label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  fill: var(--bone);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.7));
}
.pie-rank-label.disabled {
  fill: var(--bone-faded);
  opacity: 0.4;
  text-decoration: line-through;
  filter: none;
}

/* Center dome */
.pie-center-bg {
  fill: url(#g-center);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
}
.pie-center-sheen {
  fill: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.pie-center-text {
  font-family: var(--mono);
  font-size: 14px;
  fill: var(--bone);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.8));
}
.pie-center-text.red { fill: #ff5e6c; }
.pie-center-text.taken {
  fill: var(--red);
  text-decoration: line-through;
}

/* When viewport gets narrow, stack palette below */
@media (max-width: 920px) {
  .plo-equity-grid {
    grid-template-columns: 1fr;
  }
  .plo-equity-grid > .right { position: static; }
  .plo-palette {
    overflow-x: auto;
  }
  .plo-palette-card {
    width: 2rem;
    height: 2.4rem;
  }
}

.plo-card-input {
  width: 4rem;
  background: var(--black-soft);
  border: 1px solid var(--line-hi);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 1rem;
  text-align: center;
  padding: 0.55rem 0.3rem;
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plo-card-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(226, 29, 44, 0.25);
}
.plo-card-input.error {
  border-color: var(--red);
  background: rgba(226, 29, 44, 0.1);
}

.plo-preview-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 1rem;
  min-height: 64px;
}

.plo-trials-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.plo-trials-row input[type="range"] {
  flex: 1;
  min-width: 200px;
  accent-color: var(--red);
}

.plo-trials-value {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--red);
  min-width: 4rem;
}

.plo-progress {
  flex: 1;
  height: 6px;
  background: var(--black-soft);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-width: 200px;
}
.plo-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red-deep), var(--red-hot));
  width: 0;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px var(--red);
}

.plo-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.9rem;
  white-space: pre-wrap;
  color: var(--bone);
  line-height: 1.65;
  min-height: 6rem;
}

.plo-result .accent { color: var(--red-hot); }
.plo-result .dim    { color: var(--bone-faded); }
.plo-result .verdict-good { color: #36e07f; }
.plo-result .verdict-bad  { color: var(--red); }
.plo-result .equity-big {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--red-hot);
  text-shadow: 0 0 18px rgba(255, 36, 54, 0.4);
  display: inline-block;
  margin: 0.25rem 0;
}

/* Responsive */
@media (max-width: 700px) {
  .pc { width: 40px; height: 56px; padding: 2px 3px 3px; }
  .pc .pc-rank { font-size: 1.2rem; }
  .pc .pc-suit { font-size: 1.85rem; }
  .pc-lg { width: 46px; height: 64px; padding: 2px 4px 3px; }
  .pc-lg .pc-rank { font-size: 1.4rem; }
  .pc-lg .pc-suit { font-size: 2.15rem; }
  .plo-player-label { width: 4rem; font-size: 0.7rem; }
  .plo-player-result { font-size: 0.75rem; }
  .plo-board-label { display: none; }
}
