/* Slim Play subpage chrome. Game canvas + Buy/Guide stay in game.js. No cookie. */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  height: 100%;
  width: 100%;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  color: #f4eefc;
  user-select: none;
  touch-action: manipulation;
}
canvas#game {
  display: block;
  width: 100vw;
  height: 100vh;
  background: #000;
}
.play-chrome {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: min(280px, 46vw);
  pointer-events: none;
}
.play-chrome a,
.play-chrome .play-credit {
  pointer-events: auto;
}
.play-chrome .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  color: #f4eefc;
  background: rgba(7, 6, 10, .82);
  border: 1px solid #2a2438;
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
}
.play-chrome .brand img {
  border-radius: 10px;
  border: 1px solid #2a2438;
  display: block;
}
.play-back {
  color: #39ff88;
  text-decoration: underline;
  text-decoration-color: #39ff88;
  text-underline-offset: 2px;
  background: rgba(7, 6, 10, .82);
  border: 1px solid #2a2438;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.play-credit {
  margin: 0;
  font-size: 12px;
  color: #9b91b0;
  background: rgba(7, 6, 10, .82);
  border: 1px solid #2a2438;
  padding: 6px 12px;
  border-radius: 999px;
}
.play-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
