/* ── Modal overlay ─────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  justify-content: center;
  align-items: center;
}
.modal-overlay.open { display: flex; }

.modal {
  background: linear-gradient(160deg, #1a4a2a, #0e3018);
  border: 1.5px solid rgba(255,215,0,.2);
  border-radius: 16px;
  padding: 16px 22px 22px;
  max-width: 760px;
  width: 94%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Modal header ──────────────────────────────────── */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.modal-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dir-badge {
  display: inline-block;
  width: 24px; height: 24px;
  line-height: 24px;
  text-align: center;
  background: rgba(255,215,0,.15);
  border-radius: 6px;
  font-size: .75rem;
}
.modal-count { font-size: .82rem; color: #aaa; }
.modal-count b { color: #ffd700; }
.modal-close {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #ccc;
  font-size: .85rem;
  padding: 5px 14px;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.modal-close:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── Suit rows in modal ────────────────────────────── */
.suit-row {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.suit-icon {
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  user-select: none;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.3));
}
.suit-icon.spades   { color: #ccc; }
.suit-icon.hearts   { color: #e74c5e; }
.suit-icon.diamonds { color: #e74c5e; }
.suit-icon.clubs    { color: #ccc; }

/* ── Mobile modal ──────────────────────────────────── */
@media (max-width: 768px) {
  .modal {
    padding: 12px 12px 16px;
    border-radius: 12px;
    width: 98%;
    max-height: 92vh;
  }
  .modal-header { margin-bottom: 8px; padding-bottom: 6px; }
  .modal-title { font-size: .9rem; gap: 6px; }
  .dir-badge { width: 20px; height: 20px; line-height: 20px; font-size: .65rem; }
  .modal-count { font-size: .72rem; }
  .modal-close { font-size: .75rem; padding: 4px 10px; }

  .suit-row { gap: 2px; margin-bottom: 3px; }
  .suit-icon { font-size: 1rem; width: 18px; }
}
