.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 1);
    z-index: 999999;
    display: flex;
    opacity: 0;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.custom-popup-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.custom-popup-modal {
    width: 100%;
    height: 100%;
}

.custom-popup-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
}

.custom-popup-header .close-btn {
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    transition: all 0.5s;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.custom-popup-body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-popup-body iframe {
    height: 80%;
    width: 84%;
}

/*=============================
    03. Preloader
===============================*/

#preloader {
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  left: 0;
  z-index: 9999;
  background-color: #000000;
}

#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid #fdf2f9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#preloader .loader .loader-container::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-top: 3px solid #F0B000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  text-align: center;
}

#preloader .loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  width: 40px;
}

#preloader.black-bg .loader-container,
#preloader.black2-bg .loader-container {
  border: 3px solid #1a1a1a;
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Play Button */

.circle {
  stroke: #F0B000;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0.3;
}

/* .button-play {
  background: linear-gradient(351.09deg, #F029A0 4.36%, #F0B000 117.5%); 
  border: none;
  border-radius: 50%;
  width: 120px; 
  height: 120px; 
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.button-play::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-30%, -50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 35px solid white;
}

.button-play:hover {
  background: linear-gradient(351.09deg, #F0B000 4.36%, #F029A0 117.5%);
} */

.game-details-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 20px;
    position: relative;
}

.game-details-container img
 {
    width: 100%;
    height: 460px;
    object-fit: contain;
}

.play-games {
    width: max-content;
}

/* .game-details-container .play-games {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */