.game-frame-wrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0f0f12;
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.game-frame-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #1a1a1f;
  border-bottom: 1px solid #2a2a32;
}
.game-frame-header .logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #e5e5ea;
  text-decoration: none;
}
.game-frame-header .logo:hover {
  color: #fff;
}
.game-frame-close {
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.08);
  color: #e5e5ea;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}
.game-frame-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.game-frame-area {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.game-frame-area iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: none;
  border-radius: 8px;
  background: #000;
}
