.game-modal { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.9); align-items: center; justify-content: center; }
.game-modal.active { display: flex; }
.game-modal__inner { position: relative; width: 90vw; height: 80vh; max-width: 1200px; background: #000; border-radius: 16px; overflow: hidden; }
.game-modal__close { position: absolute; top: 16px; right: 16px; background: #d46cff; color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; }
.game-modal__iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
    .game-modal__inner { width: 95vw; height: 70vh; }
}
