/* ============================================================
   Guess the Date — arcade-skin overrides
   chrome.css provides .topbar/.brand/.icon-button/.modal-backdrop.
   This file only carries per-game accent + topbar/footer positioning.
   ============================================================ */

:root { --accent: var(--tone-indigo-fg); --accent-hover: #3730a3; }
[data-theme="dark"] { --accent: var(--tone-indigo-fg); --accent-hover: #c7d2fe; }

/* Arcade topbar — full-width, slim, above the game's own .container. */
.arcade-topbar {
  max-width: 880px;
  margin: 0 auto;
  padding: 12px clamp(14px, 4vw, 24px);
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
}

/* Arcade footer — slim centered backlink. */
.arcade-footer {
  padding: 16px clamp(14px, 4vw, 24px) 24px;
  text-align: center;
  font-size: 13px;
  color: var(--fg-subtle);
  border-top: 1px solid var(--border);
  max-width: 880px;
  margin: 24px auto 0;
}
.arcade-footer a {
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 600;
}
.arcade-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}
