/* games.css — modal/layout para games.html */
.game-modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,.7); z-index:1000; }
.game-modal.show { display:flex; }
.game-panel { background:#151b24; border-radius:16px; padding:1em; max-width:760px; width:100%; box-shadow:0 8px 40px #0009; position:relative; }
.close-game { position:absolute; top:.4em; right:.6em; background:transparent; color:#fff9; border:none; font-size:1.6em; cursor:pointer; }
#game-container { display:flex; flex-direction:column; align-items:center; justify-content:center; }
.game-message { display:flex; gap:.6em; align-items:center; justify-content:center; margin-top:.6em; flex-wrap:wrap; }
