/* popup */
.up {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2000; 
}
    .up:target {
    display: flex;
}

    .up-content {
        padding: 5px; 
        background-color: black; 
        display: flex; 
        justify-content: center;
        align-items: center;
    }

    iframe {
        border-radius: 10px; 
        border: none;
    }
    #video-overlay {
            border-radius: 10px; 
            pointer-events: none;
        }
.up-content {
    background-color: transparent;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2100; 
}
    .up-content img {
        max-width: 100%;
        height: auto;
    }
.up-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000; 
}

#game-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: none;
background-color: transparent;
  
}

.game-overlay-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}

.game-iframe-container {
  position: absolute;
  pointer-events: none; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 707px;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 2;
  clip-path: polygon(
    202px 164px,
    174px 359px,
    204px 566px,
    491px 577px,
    746px 564px,
    770px 364px,
    757px 162px,
    471px 125px
  );
  overflow: hidden;
}

#game-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 596px;
  height: 413px;
  border: none;
  background: #000;
  z-index: 2;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto; 
}