.game-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 12, 0.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.game-overlay__frame {
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  background: #0f0d0c;
  border: 1px solid #2f2a27;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.game-overlay__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.game-overlay-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  [data-mobile-full] {
    width: 100%;
    display: block;
  }
}
