html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.play-body {
  margin: 0;
  background: #120b12;
}

.play-shell {
  position: fixed;
  inset: 0;
}

#gameFrame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.float-actions {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-actions a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.float-actions a:hover {
  transform: scale(1.08);
}

.play-overlay {
  position: fixed;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 154, 162, 0.9);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  z-index: 50;
}
