/* ==================== ИГРОВОЙ СТОЛ ==================== */
.table {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 4px 4px 0;

  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"),
    radial-gradient(ellipse 90% 75% at 50% 45%,
      var(--felt-light) 0%,
      var(--felt) 50%,
      var(--felt-dark) 100%);

  box-shadow:
    inset 0 0 0 1px var(--wood-dark),
    inset 0 0 0 3px var(--wood-light),
    inset 0 0 0 14px var(--wood),
    inset 0 0 0 15px var(--wood-dark),
    inset 0 0 160px 20px rgba(0,0,0,.45);
}

[data-theme="neon"] .table {
  box-shadow:
    inset 0 0 0 1px #ff0080,
    inset 0 0 0 3px #00e5ff,
    inset 0 0 0 14px var(--wood),
    inset 0 0 0 15px #00e5ff,
    inset 0 0 40px rgba(0,229,255,.35),
    inset 0 0 160px 20px rgba(0,0,0,.6);
}

[data-theme="paper"] .table {
  box-shadow:
    inset 0 0 0 1px var(--wood-dark),
    inset 0 0 0 3px var(--wood-light),
    inset 0 0 0 14px var(--wood),
    inset 0 0 0 15px var(--wood-dark),
    inset 0 0 140px 20px rgba(139,106,61,.3);
}

/* ==================== КОЛОДА + КОЗЫРЬ ==================== */
.deck-area {
  position: absolute;
  top: calc(12px * var(--scale));
  left: calc(12px * var(--scale));
  z-index: 10;
  pointer-events: none;
}
.deck-wrapper {
  position: relative;
  width: calc(var(--card-w) + var(--card-h) * 1.05);
  height: calc(var(--card-h) + var(--card-w) * 0.9);
}
.deck-stack {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--card-w);
  height: var(--card-h);
  z-index: 3;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.6));
}
.deck-stack .card { position: absolute; top: 0; left: 0; }
.trump-under {
  position: absolute;
  top: calc(var(--card-h) * 0.55);
  left: calc(var(--card-w) * 0.55);
  width: var(--card-h);
  height: var(--card-w);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trump-under .card {
  width: var(--card-w);
  height: var(--card-h);
  transform: rotate(90deg);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.6));
}

/* ==================== СИДЕНЬЯ ==================== */
.seat {
  position: absolute;
  padding: calc(6px * var(--scale)) calc(10px * var(--scale));
  border-radius: calc(10px * var(--scale));
  font-size: calc(11px * var(--scale));
  text-align: center;
  background: rgba(0,0,0,.6);
  color: #fff;
  min-width: calc(80px * var(--scale));
  z-index: 10;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
[data-theme="paper"] .seat { background: rgba(0,0,0,.18); color: #333; }
.seat.active { outline: 3px solid var(--acc); box-shadow: 0 0 20px rgba(241,196,15,.6); }
.seat.out    { opacity: .35; text-decoration: line-through; }
.seat.offline { opacity: .6; border: 1px dashed #e74c3c; }

.seat .name { order: 1; font-weight: 700; font-size: calc(12px * var(--scale)); }
.seat .avatar {
  order: 2;
  width: calc(44px * var(--scale));
  height: calc(44px * var(--scale));
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(26px * var(--scale));
  border: 2px solid rgba(255,255,255,.3);
  margin: 2px 0;
}
.seat.active .avatar { border-color: var(--acc); box-shadow: 0 0 16px rgba(241,196,15,.8); }
.seat .state { order: 3; font-size: calc(10px * var(--scale)); opacity: .9; font-style: italic; font-weight: 600; }
.seat .state.beat    { color: #2ecc71; }
.seat .state.think   { color: #f1c40f; }
.seat .state.pickup  { color: #e74c3c; }
.seat .state.move    { color: #3498db; }
.seat .state.out     { color: #888; }
.seat .badge-off, .seat .pass-badge {
  order: 4; font-size: calc(10px * var(--scale)); font-weight: 700; color: #e74c3c;
}

.seat.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.seat.left {
  top: calc(200px * var(--scale));
  left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.seat.right {
  top: calc(200px * var(--scale));
  right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* ==================== ПОЛЕ БОЯ ==================== */
.center {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  max-width: 80%;
  justify-content: center;
  align-items: center;
  z-index: 5;
  padding: 6px;
}
.slot {
  position: relative;
  width: calc(var(--card-w) * 1.15);
  height: calc(var(--card-h) * 1.15);
  animation: fieldIn .25s ease-out;
}
.slot .card {
  width: calc(var(--card-w) * 1.15) !important;
  height: calc(var(--card-h) * 1.15) !important;
  position: absolute;
  top: 0;
  left: 0;
  transition: top .2s, left .2s, transform .2s;
}
@keyframes fieldIn {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.slot .card.beaten {
  top: calc(-14px * var(--scale));
  left: calc(22px * var(--scale));
  transform: rotate(6deg);
  z-index: 2;
  box-shadow: 0 6px 14px rgba(0,0,0,.85);
  outline: 3px solid #2ecc71;
  outline-offset: -3px;
}
.slot.tappable { cursor: pointer; }
.slot.tappable .card:first-child {
  outline: 3px dashed rgba(241,196,15,.8);
  outline-offset: -3px;
}
.slot.drag-over { outline: 4px solid #2ecc71; outline-offset: -4px; border-radius: 8px; }

/* ==================== НАСТРОЙКА ==================== */
.settings-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(40px * var(--scale));
  height: calc(40px * var(--scale));
  border-radius: 0 0 0 calc(10px * var(--scale));
  background: rgba(0,0,0,.7);
  color: #fff;
  border: none;
  font-size: calc(20px * var(--scale));
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme="paper"] .settings-btn { background: rgba(0,0,0,.2); color: #333; }

/* ==================== ПОДСКАЗКА ==================== */
.actions {
  display: flex;
  gap: 6px;
  padding: 2px 8px;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0,0,0,.35);
  min-height: 22px;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: -4px;
}
[data-theme="paper"] .actions { background: rgba(0,0,0,.12); }
.hint {
  font-size: calc(11px * var(--scale));
  color: var(--acc);
  font-weight: 600;
  padding: 1px 10px;
  text-align: center;
  width: 100%;
}

/* ==================== НИЖНЯЯ ПОЛОСА ==================== */
.bottom-bar {
  position: relative;
  width: 100%;
  height: calc(var(--card-h) + 40px);
  background: transparent;
  flex-shrink: 0;
  overflow: visible;
  z-index: 15;
}

.hand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: transparent;
  overflow: visible;
  pointer-events: none;
  touch-action: none;
}
.hand .card {
  position: absolute;
  bottom: calc(8px * var(--scale));
  left: 50%;
  margin-left: calc(var(--card-w) / -2);
  pointer-events: auto;
  transform-origin: center bottom;
  transition: transform .18s ease-out;
  cursor: grab;
  touch-action: none;
  will-change: transform;
}
.hand .card:active { cursor: grabbing; }

/* ==================== ИКОНКИ СВАЙПОМ СЛЕВА ==================== */
.swipe-icons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  transition: transform .25s ease-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 10px 12px 10px;
  background: rgba(0,0,0,.9);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 300;
  box-shadow: 4px 0 20px rgba(0,0,0,.7);
  width: fit-content;
  pointer-events: auto;
}
.swipe-icons.show {
  transform: translate(0, -50%);
}
.swipe-icons .icon-btn {
  width: calc(46px * var(--scale));
  height: calc(46px * var(--scale));
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: calc(22px * var(--scale));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
  padding: 0;
  transition: transform .12s, background .12s;
}
.swipe-icons .icon-btn:active { transform: scale(.9); background: rgba(255,255,255,.25); }
.swipe-icons .icon-btn.active { background: var(--acc); color: #000; }

.swipe-trigger {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 64px;
  background: rgba(0,0,0,.7);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 299;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 0 10px rgba(0,0,0,.5);
  transition: background .15s;
}
.swipe-trigger:active { background: rgba(0,0,0,.9); }
.swipe-trigger.hidden { display: none; }

/* ==================== КНОПКА ДЕЙСТВИЯ ==================== */
.action-center {
  position: absolute;
  bottom: calc(100px * var(--scale));
  right: calc(8px * var(--scale));
  width: calc(100px * var(--scale));
  height: calc(100px * var(--scale));
  border-radius: calc(100px * var(--scale));
  border: none;
  font-weight: 900;
  font-size: calc(11px * var(--scale));
  cursor: pointer;
  background: radial-gradient(circle at 40% 40%, #56d4ff 0%, #3498db 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(52,152,219,.7), inset 0 -4px 8px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  padding: 6px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  z-index: 30;
}
.action-center:active { transform: scale(.95); }
.action-center.b1 { background: radial-gradient(circle at 40% 40%, #f7d154 0%, #f39c12 100%); color: #000; text-shadow: none; }
.action-center.b2 { background: radial-gradient(circle at 40% 40%, #b6bec2 0%, #7f8c8d 100%); color: #000; text-shadow: none; }
.action-center.b3 { background: radial-gradient(circle at 40% 40%, #ff6b6b 0%, #c0392b 100%); }
.action-center.b4 { background: radial-gradient(circle at 40% 40%, #bb6bd9 0%, #8e44ad 100%); }
.action-center.b5 { background: radial-gradient(circle at 40% 40%, #5dade2 0%, #2874a6 100%); }

.extra-actions {
  position: absolute;
  bottom: calc(200px * var(--scale));
  right: calc(8px * var(--scale));
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  z-index: 25;
}
.extra-actions button {
  min-width: calc(100px * var(--scale));
  padding: calc(8px * var(--scale)) calc(12px * var(--scale));
  border-radius: calc(8px * var(--scale));
  border: 2px solid rgba(255,255,255,.4);
  font-weight: 800;
  font-size: calc(11px * var(--scale));
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.6);
  line-height: 1.1;
}
.extra-actions button:active { transform: scale(.95); }
.extra-actions .b1 { background: #f39c12; color: #000; }
.extra-actions .b4 { background: #8e44ad; color: #fff; }

/* ==================== ПАНЕЛЬ СМАЙЛОВ — СЛЕВА ==================== */
.emoji-bar {
  position: fixed !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: inline-grid !important;
  grid-template-columns: auto auto !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
  gap: 0 !important;
  padding: 6px 6px 6px 2px;
  background: rgba(0,0,0,.9);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 200;
  box-shadow: 4px 0 20px rgba(0,0,0,.8);
  max-height: 55vh;
  overflow-y: auto;
  width: fit-content !important;
  max-width: 80px;
}
.emoji-bar button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emoji-bar button:active { background: rgba(255,255,255,.2); }

/* ==================== МОДАЛКА СВЕДЕНИЙ ==================== */
.info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.info-modal-inner {
  background: rgba(0,0,0,.95);
  color: #fff;
  border: 2px solid var(--acc);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.8);
}
.info-modal-inner h3 { margin: 0 0 16px; font-size: 20px; color: var(--acc); }
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 15px;
}
.info-row:last-of-type { border-bottom: none; }
.info-row b { color: var(--acc); }
.info-modal-close {
  margin-top: 18px;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  background: var(--acc);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

/* ==================== ОКНО ОЖИДАНИЯ ==================== */
.waiting {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.8);
  border: 2px solid var(--acc);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  min-width: 260px;
  max-width: 90vw;
  z-index: 50;
}
[data-theme="paper"] .waiting { background: rgba(255,255,255,.9); }
.waiting-title { font-size: 13px; opacity: .8; margin-bottom: 4px; }
.waiting-code {
  font-size: 42px; font-weight: 900; letter-spacing: 8px;
  color: var(--acc); margin: 4px 0 12px;
  font-family: 'Courier New', monospace;
}
[data-theme="paper"] .waiting-code { color: #b8860b; }
.copy-btn {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; cursor: pointer; margin-bottom: 14px; font-weight: 600;
}
.waiting-info { font-size: 14px; margin-bottom: 10px; }
.waiting-players { display: flex; flex-direction: column; gap: 4px; margin: 8px 0 12px; font-size: 13px; }
.waiting-player { padding: 6px 10px; background: rgba(255,255,255,.08); border-radius: 6px; }
.waiting-player.host { background: rgba(241,196,15,.2); }
.waiting-hint { font-size: 12px; opacity: .7; margin-top: 8px; }
.start-big {
  padding: 14px 24px; font-size: 16px; border-radius: 12px;
  margin-top: 8px; width: 100%;
  background: var(--acc); color: #000;
  font-weight: 700; border: none; cursor: pointer;
}

/* ==================== НОВОЕ ЛОББИ ==================== */
.waiting {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.88);
  border: 2px solid var(--acc);
  border-radius: 18px;
  padding: 22px 20px 20px;
  text-align: center;
  width: 92vw;
  max-width: 380px;
  z-index: 50;
  box-shadow: 0 12px 40px rgba(0,0,0,.7);
  animation: lobbyIn .35s cubic-bezier(.2,.8,.3,1);
}
[data-theme="paper"] .waiting { background: rgba(255,255,255,.95); }

@keyframes lobbyIn {
  0%   { opacity: 0; transform: translate(-50%, calc(-50% + 16px)) scale(.92); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.waiting-label {
  font-size: 11px;
  opacity: .65;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.waiting-code {
  background: none;
  border: none;
  font-family: 'Courier New', monospace;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--acc);
  cursor: pointer;
  padding: 4px 14px;
  border-radius: 12px;
  transition: background .15s, transform .12s;
  margin-bottom: 14px;
  -webkit-tap-highlight-color: transparent;
}
.waiting-code:active {
  background: rgba(241,196,15,.18);
  transform: scale(.97);
}
[data-theme="paper"] .waiting-code { color: #b8860b; }
[data-theme="paper"] .waiting-code:active { background: rgba(184,134,11,.12); }

.waiting-players-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.wp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s;
  animation: wpIn .25s ease-out backwards;
}
.wp-card:nth-child(1) { animation-delay: 0ms; }
.wp-card:nth-child(2) { animation-delay: 40ms; }
.wp-card:nth-child(3) { animation-delay: 80ms; }
.wp-card:nth-child(4) { animation-delay: 120ms; }
@keyframes wpIn {
  from { opacity: 0; transform: translateY(6px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wp-card.host {
  background: rgba(241,196,15,.12);
  border-color: rgba(241,196,15,.35);
}
.wp-card.wp-empty { opacity: .35; }
[data-theme="paper"] .wp-card { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.08); }

.wp-avatar {
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.15);
}
[data-theme="paper"] .wp-avatar { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.12); }

.wp-name {
  font-size: 12px;
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
}
.wp-host {
  font-size: 9px;
  background: var(--acc);
  color: #000;
  padding: 1px 6px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.waiting-status {
  font-size: 13px;
  opacity: .8;
  margin-bottom: 10px;
  font-weight: 600;
}
.dots { display: inline-block; }
.dots span {
  animation: dotBlink 1.2s infinite;
  display: inline-block;
}
.dots span:nth-child(2) { animation-delay: .2s; }
.dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotBlink {
  0%, 60%, 100% { opacity: .2; }
  30% { opacity: 1; }
}

.waiting-hint { font-size: 12px; opacity: .7; margin-top: 6px; }
.start-big {
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 12px;
  margin-top: 6px;
  width: 100%;
  background: var(--acc);
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(241,196,15,.4);
  transition: transform .12s;
}
.start-big:active { transform: scale(.97); }

/* ==================== ЛОГОТИП В ЛОББИ ==================== */
.lobby-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(241,196,15,.4));
}

/* ==================== ВОДЯНОЙ ЗНАК НА СТОЛЕ ==================== */
.field-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-width: 240px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ==================== ИНДИКАТОР КОЗЫРЯ (когда колода пуста) ==================== */
.trump-reminder {
  width: calc(var(--card-w) * 1.05);
  height: calc(var(--card-h) * 1.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--card-h) * 0.72);
  line-height: 1;
  opacity: 0.7;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.6));
  user-select: none;
  pointer-events: none;
  font-weight: 900;
  transition: opacity .3s;
}
.trump-reminder.red { color: #e74c3c; }
.trump-reminder.black { color: #eee; }
[data-theme="paper"] .trump-reminder.black { color: #222; }

/* ==================== ГОЛОСОВОЙ ЧАТ ==================== */
.icon-btn.voice-on {
  background: #2ecc71 !important;
  color: #000 !important;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
}
.icon-btn.voice-muted {
  background: #e74c3c !important;
  color: #fff !important;
}

/* Пульс аватарки когда говорит */
.seat.speaking .avatar {
  animation: speakPulse 0.9s ease-in-out infinite;
}
@keyframes speakPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.85); }
  70%  { box-shadow: 0 0 0 16px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.seat.speaking .name::after {
  content: ' 🎤';
  font-size: 0.9em;
  opacity: 0.9;
}

/* ==================== ИНДИКАТОР КОЗЫРЯ (когда колода пуста) ==================== */
.trump-reminder {
  width: calc(var(--card-w) * 1.05);
  height: calc(var(--card-h) * 1.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--card-h) * 0.72);
  line-height: 1;
  opacity: 0.7;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.6));
  user-select: none;
  pointer-events: none;
  font-weight: 900;
  transition: opacity .3s;
}
.trump-reminder.red   { color: #e74c3c; }
.trump-reminder.black { color: #eee; }
[data-theme="paper"] .trump-reminder.black { color: #222; }