  /* Game preview modal — full-page overlay with iframe of the same SPA
     focused on a specific #game/<id>. Used from admin audit log. */
  .game-preview-back {
    position: fixed; inset: 0;
    z-index: 1500;
    background: rgba(8, 12, 10, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
  }
  .game-preview-box {
    width: 100%;
    max-width: 1280px;
    height: 100%;
    max-height: 92vh;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--r-lg);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .game-preview-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 12px;
    background: rgba(20, 30, 26, 0.6);
    border-bottom: 1px solid var(--border-2);
    flex-shrink: 0;
  }
  .game-preview-link {
    font-size: 12px;
    color: #b6dbef;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--r-sm);
    transition: background 0.12s ease;
  }
  .game-preview-link:hover {
    background: rgba(95, 168, 211, 0.15);
    text-decoration: underline;
  }
  .game-preview-close {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border: 1px solid var(--border-2);
    background: rgba(40, 50, 46, 0.6);
    color: var(--text);
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
  }
  .game-preview-close:hover {
    background: rgba(140, 60, 50, 0.55);
    color: #ffd4c4;
  }
  .game-preview-frame {
    flex: 1;
    width: 100%; height: 100%;
    border: 0;
    background: var(--bg, #0d0d0a);
    display: block;
  }

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .game-preview-back {
    padding: 0;
  }

  .game-preview-box {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* Кнопка закрытия: тап-таргет 44px */
  .game-preview-close {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .game-preview-bar {
    padding: 6px 10px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
  }
}
