/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #140938;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  padding: 20px;
  gap: 20px;
}
@media (max-width: 991px) {
  .container {
    flex-direction: column;
    padding-top: 0px;
  }
}

/* Slider Section */
.slider-section {
  width: 100%;
  max-width: 50%;
  position: fixed;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .slider-section {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto;
    transform: translateY(0);
  }
}
.slider-section .owl-carousel .item img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

/* Logo Grid Section */
.logo-grid-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.main {
  width: 60%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 20px;
}
@media (max-width: 1650px) {
  .main {
    top: auto;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .main {
    width: 100%;
    max-width: 100%;
    position: relative;
    right: auto;
  }
}

.logo-box {
  width: 310px;
  height: 229px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  /* Front Face */
  /* Back Face */
}
@media (max-width: 1200px) {
  .logo-box {
    width: 250px;
    height: 186px;
  }
}
@media (max-width: 991px) {
  .logo-box {
    width: calc(33.33% - 15px);
    min-width: 150px;
  }
}
@media (max-width: 830px) {
  .logo-box {
    width: calc(50% - 10px);
  }
}
@media (max-width: 500px) {
  .logo-box {
    width: 100%;
  }
}
.logo-box:hover .box-inner {
  transform: rotateY(180deg);
}
.logo-box .box-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 70px 70px 10px 70px;
}
.logo-box .box-front,
.logo-box .box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: linear-gradient(to top, rgba(190, 51, 109, 0.0901960784), rgba(38, 10, 88, 0.4745098039));
  border: 2px solid #6d2572;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.logo-box .box-front {
  border-radius: 70px 70px 10px 70px;
}
.logo-box .box-front img.logo-img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-box .box-front .icon-link {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
}
.logo-box .box-back {
  transform: rotateY(180deg);
  background-color: rgba(20, 9, 56, 0.95);
  border: 2px solid #84358a;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 40px;
  align-items: stretch;
  align-content: stretch;
  justify-content: stretch;
  justify-items: stretch;
  gap: 0;
}
@media (max-width: 1200px) {
  .logo-box .box-back {
    border-radius: 20px;
  }
}
.logo-box .box-back .row-item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 25px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .logo-box .box-back .row-item {
    font-size: 18px;
    height: 61px;
  }
}
.logo-box .box-back .row-item:hover .button-play:before {
  transform: translateX(40px) scale(0.1);
  opacity: 0;
}
.logo-box .box-back .row-item:hover .button-play:after {
  transform: translateX(0px) scale(1);
  opacity: 1;
}
.logo-box .box-back .row-item:hover .button-download:before {
  transform: translateY(40px) scale(0.1);
  opacity: 0;
}
.logo-box .box-back .row-item:hover .button-download:after {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.logo-box .box-back .row-item:nth-child(1) {
  font-size: 40px;
  padding: 0 20px;
  justify-content: space-between;
}
.logo-box .box-back .row-item:nth-child(2) {
  background: linear-gradient(to top, #c38000, #8a00ad);
}
.logo-box .box-back .row-item:nth-child(2):hover {
  filter: brightness(150%);
}
.logo-box .box-back .row-item:nth-child(3) {
  background: linear-gradient(to top, #10839c, #8e24d2);
}
.logo-box .box-back .row-item:nth-child(3):hover {
  filter: brightness(150%);
}
.logo-box .box-back .row-item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-box .box-back .row-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.logo-box .box-back .logo-small {
  width: 55px !important;
  height: 55px !important;
}
.logo-box .box-back .button-play {
  width: 78px;
  height: 69px;
  background-image: url("../images/button-play.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
.logo-box .box-back .button-play::before, .logo-box .box-back .button-play::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon-play.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 47px;
  height: 49px;
  top: 13px;
  left: 23px;
  transition: all 0.3s ease-in-out;
}
.logo-box .box-back .button-play::after {
  opacity: 0;
  transform: translateX(-40px) scale(2.5);
}
.logo-box .box-back .button-download {
  width: 78px;
  height: 69px;
  background-image: url("../images/button-download.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
.logo-box .box-back .button-download::before, .logo-box .box-back .button-download::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon-download.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 44px;
  height: 51px;
  top: 13px;
  left: 23px;
  transition: all 0.3s ease-in-out;
}
.logo-box .box-back .button-download::after {
  opacity: 0;
  transform: translateY(-40px) scale(2.5);
}

.logo {
  position: fixed;
  top: 4%;
  width: 43%;
  left: 0;
  text-align: right;
  z-index: 20;
}
@media (max-width: 1700px) {
  .logo {
    width: 40%;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .logo {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .logo {
    width: 100%;
    padding-top: 20px;
  }
}
.logo img {
  width: 110px;
}
@media (max-width: 1500px) {
  .logo img {
    width: 160px;
  }
}
@media (max-width: 991px) {
  .logo img {
    width: 220px;
  }
}
@media (max-width: 500px) {
  .logo img {
    width: 80px;
  }
}

.vpn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.vpn .content {
  background: linear-gradient(to top, rgba(210, 35, 175, 0.6), rgba(108, 21, 215, 0.4));
  border: 2px solid #8f1cb0;
  border-radius: 100px;
  padding: 0px 20px 0px 0px;
  gap: 10px;
  min-height: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.5);
}
.vpn .content span {
  text-shadow: 0 3px 4px rgba(34, 21, 48, 0.9);
  font-size: 20px;
  flex: 1;
}
@media (max-width: 1200px) {
  .vpn .content span {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .vpn .content span {
    font-size: 14px;
  }
}
.vpn a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease;
  outline: 0px solid transparent;
  box-shadow: 0 3px 8px rgba(214, 27, 106, 0.7);
}
.vpn a:hover {
  outline: 5px solid rgba(255, 89, 172, 0.4117647059);
}
.vpn a img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .head {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .head {
    display: block;
  }
}

.popup {
  position: fixed;
  top: 5%;
  left: 10%;
  width: 80%;
  height: 90%;
  background-color: rgba(8, 5, 16, 0.9);
  z-index: 1000;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.75), inset 0 21px 20px rgba(97, 70, 101, 0.38);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 10px;
}
@media (max-width: 991px) {
  .popup {
    width: 100%;
    left: 0;
  }
}

.close-popup {
  font-size: 60px;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  line-height: 25px;
  padding: 15px 15px 0 0;
}

.popup-content {
  padding: 10px;
  font-size: 18px;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}
.popup-content::-webkit-scrollbar {
  width: 4px;
}
.popup-content::-webkit-scrollbar-track {
  background: transparent;
}
.popup-content::-webkit-scrollbar-thumb {
  background: rgba(240, 229, 253, 0.2588235294);
  border-radius: 10px;
}
.popup-content::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.popup-content p,
.popup-content h2,
.popup-content h3 {
  margin-top: 15px;
}

.qr-code {
  width: 240px;
  height: 240px;
  border-radius: 30px;
  border: 15px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  overflow: hidden;
}
.qr-code img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-download {
  cursor: pointer;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  color: #fff;
  transition: all 0.2s ease;
  text-align: center;
  background: url(../images/btn-download.png) no-repeat 0 0/100% 100%;
  width: 415px;
  height: 111px;
  text-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  animation: btn-download 0.8s infinite ease-in-out;
}
.btn-download:hover {
  filter: brightness(150%);
}
@media (max-width: 768px) {
  .btn-download {
    width: 300px;
    height: 80px;
  }
}
.btn-download.animation-off {
  animation: none;
}
.btn-download .ready {
  position: relative;
  text-transform: uppercase;
}
.btn-download .ready:hover .icon:after {
  transition-duration: 0.5s;
  transform: scale(1.5);
}
.btn-download .ready:hover .text {
  transition-duration: 0.5s;
  letter-spacing: 5px;
}
.btn-download .count {
  position: relative;
}
.btn-download .count .text {
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 768px) {
  .btn-download .count .text {
    font-size: 24px;
    padding-left: 30px;
  }
}
.btn-download .count .icon {
  left: 10px;
}
.btn-download .count .icon:before {
  width: 75px;
  height: 75px;
  background: url(../images/loading.png) no-repeat 0 0/100% 100%;
  top: 10px;
  animation: loading 0.3s infinite linear;
}
@media (max-width: 768px) {
  .btn-download .count .icon:before {
    width: 50px;
    height: 50px;
  }
}
.btn-download .count .icon:after {
  top: 25px;
  left: 16px;
  animation: downloading 0.5s infinite linear;
}
@media (max-width: 768px) {
  .btn-download .count .icon:after {
    left: 7px;
  }
}
.btn-download .icon {
  width: 111px;
  height: 111px;
  position: absolute;
  top: 0;
  left: 20px;
}
.btn-download .icon:before {
  content: " ";
  width: 78px;
  height: 69px;
  background-image: url(../images/button-download-2.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 15px;
  left: 0px;
}
@media (max-width: 768px) {
  .btn-download .icon:before {
    width: 60px;
    height: 50px;
  }
}
.btn-download .icon:after {
  content: " ";
  width: 44px;
  height: 51px;
  background-image: url(../images/icon-download-2.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 29px;
  left: 23px;
  transition: all 0.1s ease;
}
@media (max-width: 768px) {
  .btn-download .icon:after {
    width: 36px;
    height: 36px;
    top: 26px;
    left: 18px;
  }
}
.btn-download .text {
  margin-left: 10px;
  font-size: 40px;
  width: 100%;
  padding-left: 60px;
  height: 90px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease;
}
@media (max-width: 768px) {
  .btn-download .text {
    font-size: 30px;
    height: 72px;
  }
}

@keyframes btn-download {
  50% {
    filter: brightness(130%);
    transform: scale(1.03);
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes downloading {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    transform: translateY(0px);
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}
.popup.popup-version {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  width: 95vw;
  max-width: 1000px;
  height: auto;
  transform: translate(-50%, -50%);
  padding: 0;
}
.popup.web .ic-play {
  display: block;
}
.popup.app .ic-dl {
  display: block;
}
.popup .ic-play, .popup .ic-dl {
  display: none;
}
.popup .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}
.popup .head h3 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
}
.popup .head button {
  width: 40px;
  height: 40px;
  border-radius: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  background: transparent;
  color: #fff;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}
.popup .head button:hover {
  border-color: rgba(255, 255, 255, 0.5058823529);
}
.popup .body {
  padding: 15px;
}

@media (min-width: 900px) {
  .version-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (min-width: 900px) {
  .version-grid .column {
    flex: 1;
  }
}
.version-grid .column + .column {
  margin-top: 20px;
}
@media (min-width: 900px) {
  .version-grid .column + .column {
    margin-top: 0;
  }
}
.version-grid .button-game {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, #f35a1d, #f7ba13);
  border-radius: 10px;
  border: none;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.1725490196);
  cursor: pointer;
  position: relative;
}
.version-grid .button-game.new {
  background: linear-gradient(to top, #2b9915, #6cc721);
}
.version-grid .button-game img {
  margin-top: 5px;
}
.version-grid .button-game .new-tag {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 42px;
  height: 18px;
  animation: new-button 1s infinite ease-in-out;
}

.version-content {
  padding: 5px 0 5px 0px;
  font-size: 18px;
}

.new-row {
  color: #66ff00;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 4px 0;
}
.new-row .new-tag {
  width: 42px;
  height: 18px;
  animation: new-tag 500ms infinite ease-in-out;
}

.new-tag {
  width: 57px;
  height: 26px;
  background: url(../images/new-tag.png) no-repeat 0 0/100% 100%;
  display: block;
}

.invalid-row {
  display: flex;
  gap: 5px;
  color: #777777;
  margin: 4px 0;
}

.valid-row {
  margin: 4px 0;
}

#dropup-web {
  background: linear-gradient(to bottom, #110822, #552e13);
}
#dropup-web:before {
  border-top-color: #552e13;
}

#dropup-download {
  background: linear-gradient(to bottom, #110822, #225513);
  left: auto;
  right: 1vw;
}
@media (min-width: 500px) {
  #dropup-download {
    left: auto;
    right: calc(50% - 250px);
  }
}
@media (min-width: 600px) {
  #dropup-download {
    right: calc(50% - 300px);
  }
}
#dropup-download:before {
  border-top-color: #225513;
  left: 75%;
}

@keyframes new-button {
  50% {
    filter: brightness(150%);
    transform: scale(1.2);
  }
}
@keyframes new-tag {
  50% {
    filter: brightness(150%);
  }
}/*# sourceMappingURL=style.css.map */