.player-container-wrp {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.game-actions {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  height: 44px;
  background: linear-gradient(135deg, rgba(37, 42, 52, 0.9), rgba(75, 85, 102, 0.8));
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4px;
}
.game-actions .hide {
  display: none !important;
}
.game-actions .game-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.game-actions .icon {
  width: 32px;
  height: 32px;
  margin-right: 4px;
}
.game-actions .icon img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.game-actions .title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.main-play {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 7px 10px 4px rgba(93, 107, 132, 0.3019607843);
}
.main-play iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.main-play .mobile-nav {
  position: absolute;
  top: 40px;
  left: 0px;
  width: 44px;
  height: 44px;
  justify-content: center;
  background-color: #fff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 10000;
  display: flex;
  align-items: center;
}
.main-play .mobile-nav svg {
  width: 20px;
  height: 20px;
  margin-right: 2px;
}
.main-play .mobile-nav:active {
  cursor: grabbing;
}
.main-play #mobile-nav.hide {
  display: none !important;
}

.ios-exit-button {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ios-exit-button svg {
  width: 24px;
  height: 24px;
  margin: 8px;
  color: #fff;
}
.ios-exit-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

#game_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: rgb(255, 255, 255);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
  transition: all 0.5s ease;
}
#game_background.hide {
  opacity: 0;
  visibility: hidden;
}

.img-game-bg {
  position: absolute;
  top: -10px;
  height: calc(110% + 20px);
  width: 100%;
  left: 0px;
  z-index: 1;
  animation: moveBackground 5s linear infinite alternate;
}
.img-game-bg.hide {
  display: none;
}
@keyframes moveBackground {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.img-game {
  width: 60px;
  height: 60px;
  min-height: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.img-game:hover {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .img-game {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
  }
}

.name-game {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 480px) {
  .name-game {
    font-size: 20px;
    padding: 0 20px;
    margin-bottom: 0px;
  }
}

.play-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  perspective: 1000px;
}
@media (max-width: 480px) {
  .play-button-container {
    padding: 0.5rem;
  }
}
.play-button-container .play-button {
  position: relative;
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Arial Black", "Arial", sans-serif;
  outline: none;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.play-button-container .button-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background: linear-gradient(145deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 0 #d4621a, 0 12px 20px rgba(255, 107, 53, 0.4), 0 6px 6px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(145deg, #ff6b35, #f7931e), linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 768px) {
  .play-button-container .button-content {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 480px) {
  .play-button-container .button-content {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
.play-button-container .button-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.play-button-container .button-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}
.play-button-container .play-button:hover .button-content {
  transform: translateY(-6px);
  box-shadow: 0 12px 0 #d4621a, 0 16px 25px rgba(255, 107, 53, 0.6), 0 8px 8px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 107, 53, 0.5);
  background: linear-gradient(145deg, #ff7849, #ff8c32);
}
.play-button-container .play-button:hover .button-shine {
  left: 100%;
}
.play-button-container .play-button:hover .button-text {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.play-button-container .play-button:active .button-content {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 #d4621a, 0 6px 15px rgba(255, 107, 53, 0.4), 0 3px 3px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, #e55a2e, #e0731a);
}
.play-button-container .play-button:focus .button-content {
  box-shadow: 0 8px 0 #d4621a, 0 12px 20px rgba(255, 107, 53, 0.4), 0 6px 6px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(255, 107, 53, 0.4);
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 0 #d4621a, 0 12px 20px rgba(255, 107, 53, 0.4), 0 6px 6px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 0 #d4621a, 0 15px 25px rgba(255, 107, 53, 0.6), 0 8px 8px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 107, 53, 0.3);
  }
}
.play-button-container .play-button.pulse .button-content {
  animation: pulse 2s ease-in-out infinite;
}
.play-button-container .play-button.green .button-content {
  background: linear-gradient(145deg, #4caf50, #45a049);
  box-shadow: 0 8px 0 #3d8b40, 0 12px 20px rgba(76, 175, 80, 0.4), 0 6px 6px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}
.play-button-container .play-button.green:hover .button-content {
  background: linear-gradient(145deg, #5cbf60, #4fb052);
  box-shadow: 0 12px 0 #3d8b40, 0 16px 25px rgba(76, 175, 80, 0.6), 0 8px 8px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1), 0 0 20px rgba(76, 175, 80, 0.5);
}
.play-button-container .play-button.blue .button-content {
  background: linear-gradient(145deg, #2196f3, #1976d2);
  box-shadow: 0 8px 0 #1565c0, 0 12px 20px rgba(33, 150, 243, 0.4), 0 6px 6px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}
.play-button-container .play-button.blue:hover .button-content {
  background: linear-gradient(145deg, #42a5f5, #2196f3);
  box-shadow: 0 12px 0 #1565c0, 0 16px 25px rgba(33, 150, 243, 0.6), 0 8px 8px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1), 0 0 20px rgba(33, 150, 243, 0.5);
}
.play-button-container .play-button.purple .button-content {
  background: linear-gradient(145deg, #9c27b0, #7b1fa2);
  box-shadow: 0 8px 0 #6a1b9a, 0 12px 20px rgba(156, 39, 176, 0.4), 0 6px 6px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}
.play-button-container .play-button.purple:hover .button-content {
  background: linear-gradient(145deg, #ba68c8, #9c27b0);
  box-shadow: 0 12px 0 #6a1b9a, 0 16px 25px rgba(156, 39, 176, 0.6), 0 8px 8px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1), 0 0 20px rgba(156, 39, 176, 0.5);
}
.play-button-container .play-button:disabled .button-content {
  background: linear-gradient(145deg, #ccc, #999);
  box-shadow: 0 4px 0 #777, 0 6px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  transform: none;
}
.play-button-container .play-button:disabled:hover .button-content {
  transform: none;
  box-shadow: 0 4px 0 #777, 0 6px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.loading_game {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 42, 52, 0.95);
  z-index: 100;
}
.loading_game:after {
  content: "";
  width: 50px;
  height: 50px;
  border: 4px solid #4b5566;
  border-top: 4px solid #e4ff09;
  border-radius: 50%;
  animation: loading-spin 1s linear infinite;
}
.loading_game.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.link-game.playopen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #000;
}
.link-game.playopen .main-play {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.link-game.playopen .main-play iframe {
  border-radius: 0;
}
.link-game.playopen-ios {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #000;
}
.link-game.playopen-ios .main-play {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.link-game.playopen-ios .main-play iframe {
  border-radius: 0;
}
.link-game.playopen-ios .ios-exit-button {
  display: block;
}
.link-game.playsafari {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #000;
}
.link-game.playsafari .main-play {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.link-game.playsafari .main-play iframe {
  border-radius: 0;
}

.ios-fullscreen-body {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.ios-fullscreen-active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
}
.ios-fullscreen-active .main-play {
  border-radius: 0 !important;
}
.ios-fullscreen-active .main-play iframe {
  border-radius: 0 !important;
}

.hiddenOverflow {
  overflow: hidden;
}

.orientation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(37, 42, 52, 0.95);
  color: #fff;
  text-align: center;
  z-index: 10000;
}
.orientation.show {
  display: flex;
}
.orientation h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
.orientation p {
  font-size: 16px;
  color: #4b5566;
}

.closegame {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}
.closegame .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.closegame .close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.closegame.hideCl {
  opacity: 0;
  pointer-events: none;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.btn-fullscreen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  outline: none;
}
.btn-fullscreen svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.btn-fullscreen svg path {
  fill: #fff;
}
.btn-fullscreen:active {
  transform: scale(0.95);
}
@media (max-width: 768px) {
  .btn-fullscreen svg {
    width: 18px;
    height: 18px;
  }
}

.player-container-wrp.fullscreen-active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
  background: #000;
}
.player-container-wrp.fullscreen-active .player-container {
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.player-container-wrp.fullscreen-active .player-container .main-play {
  border-radius: 0 !important;
}
.player-container-wrp.fullscreen-active .player-container .main-play iframe {
  border-radius: 0 !important;
}
.player-container-wrp.fullscreen-active .game-actions {
  position: absolute;
  top: 0;
  right: 0;
  max-width: none;
  width: auto;
  z-index: 10000;
  background: transparent;
  display: none;
}
.player-container-wrp.fullscreen-active .game-actions .btn-fullscreen {
  border-radius: 0 0 0 8px;
  width: 44px;
  height: 44px;
}
.player-container-wrp.fullscreen-active .ios-exit-button {
  display: block !important;
}
.player-container-wrp.ios-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  max-height: 100vh !important;
  z-index: 9999 !important;
  background: #000;
}
.player-container-wrp.ios-fullscreen .player-container {
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.player-container-wrp.ios-fullscreen.landscape .game-actions {
  display: none !important;
}

body.fullscreen-locked {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

body.ios-fullscreen-locked {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  -webkit-overflow-scrolling: touch !important;
}

/*# sourceMappingURL=player.css.map */
