.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-31354 .elementor-element.elementor-element-691ca99 .elementor-heading-title{color:var( --e-global-color-text );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-31354 .elementor-element.elementor-element-21ebd87 .elementor-heading-title{color:var( --e-global-color-text );}:root{--page-title-display:none;}/* Start custom CSS */.game-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
}

/* Cover image and play button */
.game-cover {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.game-cover img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  padding: 0.6em 1em;
  border: none;
  border-radius: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  cursor: pointer;
}

/* Aspect ratio wrapper for 16:9 */
.game-frame-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}

.game-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Fullscreen mode */
:fullscreen .game-frame-wrapper,
:-webkit-full-screen .game-frame-wrapper {
  width: 100vw;
  height: 100vh;
  padding-top: 0;
}

:fullscreen .game-frame-wrapper iframe,
:-webkit-full-screen .game-frame-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Fullscreen button */
.fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 6px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 1.2rem;
}

/* Exit fullscreen button */
.exit-fs-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 6px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 1.2rem;
  display: none;
}/* End custom CSS */