/* ─────────────────────────────────────────────
   iframe.css — shared iframe embed styles
   Used by: index.html (widget) + game pages
   ───────────────────────────────────────────── */

/* ── Small widget (home page hero) ── */
.inline-game-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}
.game-shell {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}
.inline-game-frame {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-height: 80vh;
  border: none;
  display: block;
  flex-shrink: 0;
}

/* ── Full game page embed ── */
.game-page-wrap {
  max-width: 700px;
  margin: 1.75rem auto 0;
  padding: 0 1.5rem;
}
.game-page-frame {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 480px) {
  .inline-game-wrap,
  .game-page-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ── Game controls toolbar ─────────────────────── */
.game-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: #13151f;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toolbar-right {
  display: flex;
  gap: 0.5rem;
}
.ctrl-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.ctrl-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #f1f5f9;
}
.ctrl-btn.active,
.ctrl-btn.liked {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.3);
  color: #f97316;
}

/* ── Theater mode ──────────────────────────────── */
body.theater-active {
  overflow: hidden;
}
body.theater-active .game-shell {
  position: fixed;
  inset: 0;
  z-index: 9999;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #000;
}
body.theater-active .inline-game-frame {
  flex: 1;
  min-height: 0;
  aspect-ratio: auto;
  max-height: none;
}

/* ── Native Fullscreen ─────────────────────────── */
.game-shell:fullscreen,
.game-shell:-webkit-full-screen {
  border-radius: 0;
  border: none;
  background: #000;
}
.game-shell:fullscreen .inline-game-frame,
.game-shell:-webkit-full-screen .inline-game-frame {
  flex: 1;
  min-height: 0;
  aspect-ratio: auto;
  max-height: none;
}
