html {
  overflow: hidden;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  z-index: -2;
  overflow: hidden;
}
#popupGame {
  width: calc(100vh * 750 / 1334);
  height: 100vh;
  overflow: hidden !important;
  margin: 0 auto;
}
#LoaderContainer {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  height: 2rem;
  width: 2rem;
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  border-width: 4px;
  border-style: solid;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  --tw-border-opacity: 1;
  border-top-color: rgb(239 68 68 / var(--tw-border-opacity));
}

@media (min-width: 1280px) {
  .spinner {
    height: 3rem;
    width: 3rem;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none !important;
}

.left {
  position: absolute;
  width: 60%;
  height: 100%;
  left: -40px;
  z-index: -1;
}
.menu-item{
  transition: .2s;
}
.menu-item:hover{
  transform: scale(1.1);
}
.nap:hover{
  transform: scale(1.1);
}
.right {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  height: 100%;
  right: -40px;
  z-index: -1;
}
.header {
  display: flex;
  align-items: center;
  position: absolute;
  gap: 50px;
  left: 60px;
}

.logo {
  position: relative;
  top: 20px;
}

.menu {
  display: flex;
  gap: 41px;
  z-index: 2;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.description {
  display: block;
}

.qr {
  display: block;
}

.menu-line {
  position: absolute;
  top: 57px;
  right: 60px;
  z-index: -1;
}

.nap {
  display: block;
  transition: .2s;
  margin-bottom: 20px;
}

.nap-tb {
  display: none;
}
@media (min-width: 1360px) and (max-width: 1820px) {
  .menu{
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .logo{
    width: 150px;
  }
  .header{
    width: 50%;
    gap: 10px;
    top: 10px;
  }
  .menu-line{
    display: none;
  }
}
@media screen and (max-width: 1360px) {
  .menu{
    gap: 10px;
  }
  .menu-item{
    width: 50px;
  }
  .logo{
    width: 100px;
  }
  .menu-line{
    display: none;
  }
  .header{
    gap: 10px;
    top: 2%
  }
}
@media (min-width: 768px) and (max-width: 1240px) {
  .logo, .menu-line, .qr, .nap {
    display: none;
  }
  #popupGame {
    width: calc(100vh * 750 /1334);
  }
  .menu {
    display: flex;
    flex-direction: column;
    gap: 41px;
    z-index: 2;
  }
  
  .header {
    top: 50px;
    display: flex;
    flex-direction: column;
  }
  
  .nap-tb {
    display: unset;
  }

  .menu-item:hover{
    transform: scale(1.1);
  }
  .nap-tb:hover{
    transform: scale(1.1);
  }
}
@media (max-width: 768px) {
  #popupGame {
    width: 100%;
    height: 100svh;
  }
  .left{
    display: none;
  }
  .right{
    display: none;
  }
  .nap {
    display: none;
  }
}