@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

button {
  border: none;
  outline: none;
  -webkit-transition: .5s;
  transition: .5s;
}

input {
  border: none;
  outline: none;
}

i {
  -webkit-transition: .5s;
  transition: .5s;
}

li {
  list-style: none;
}

img {
  -webkit-transition: .5s;
  transition: .5s;
}

span {
  -webkit-transition: .5s;
  transition: .5s;
}

:root {
  --body: rgb(15, 15, 15);
  --main-color: rgb(238, 192, 94);
}

body {
  background-color: var(--body);
  color: white;
  font-family: 'Source Sans Pro';
}

.game {
  z-index: 1001;
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}

.game .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 900px;
}

.game .game-tabs {
  width: 28%;
  height: 70vh;
}

.game .game-tabs h1 {
  font-size: 45px;
}

.game .game-step {
  width: 68%;
  height: 70vh;
  background-color: gray;
  overflow-y: scroll;
  scrollbar-width: none;
  border-radius: 10px;
}

nav {
  height: 70px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.781);
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 1000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9);
}

nav .menu-icon {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav .menu-icon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav .menu-icon img {
  width: 40px;
  border-radius: 100%;
}

nav .menu-user {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
}

nav .menu-user span {
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.315);
  margin: 0px 10px 0px 10px;
}

nav .menu-user button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(128, 128, 128, 0.288);
  border: 1px solid rgba(255, 255, 255, 0.03);
  height: 40px;
  padding: 0px 25px 0px 25px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Source Sans Pro';
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
}

nav .menu-user button i {
  margin-right: 10px;
}

nav .menu-user button:hover {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

nav .menu {
  height: 100%;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
}

nav .menu .menu-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(128, 128, 128, 0.288);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

nav .menu .menu-open:hover {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

nav .menu.active .menu-list {
  left: 0px;
}

nav .menu .menu-list {
  position: fixed;
  left: -400px;
  height: 100vh;
  width: 300px;
  background-color: rgba(15, 15, 15, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0;
  padding: 80px 0px 80px 0px;
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.863);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.863);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-transition: .5s;
  transition: .5s;
}

nav .menu .menu-list::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

nav .menu .menu-list::-webkit-scrollbar-thumb {
  width: 0px;
}

nav .menu .menu-list .menu-list-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: rgba(128, 128, 128, 0.1);
  color: rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

nav .menu .menu-list .menu-list-close:hover {
  border: 1px solid rgba(255, 0, 0, 0.445);
  color: red;
}

nav .menu .menu-list .menu-list-logo {
  text-align: center;
  margin-bottom: 40px;
}

nav .menu .menu-list .menu-list-logo img {
  width: 180px;
}

nav .menu .menu-list .menu-list-content.active span {
  background-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.719);
}

nav .menu .menu-list .menu-list-content.active span i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

nav .menu .menu-list .menu-list-content.active .menu-dropdown-content {
  visibility: visible;
  max-height: 400px;
  opacity: 1;
  overflow: visible;
}

nav .menu .menu-list .menu-list-content span {
  width: 100%;
  height: 50px;
  padding: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.418);
  cursor: pointer;
}

nav .menu .menu-list .menu-list-content span:hover {
  color: rgba(255, 255, 255, 0.719);
}

nav .menu .menu-list .menu-list-content span i {
  font-size: 12px;
  color: #574c3e;
}

nav .menu .menu-list .menu-list-content .menu-link {
  width: 100%;
  height: 50px;
  padding: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.418);
  cursor: pointer;
}

nav .menu .menu-list .menu-list-content .menu-link:hover {
  color: rgba(255, 255, 255, 0.719);
}

nav .menu .menu-list .menu-list-content .menu-link i {
  font-size: 12px;
  color: #574c3e;
}

nav .menu .menu-list .menu-list-content .menu-dropdown-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

nav .menu .menu-list .menu-list-content .menu-dropdown-content li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.01);
}

nav .menu .menu-list .menu-list-content .menu-dropdown-content li {
  width: 100%;
}

nav .menu .menu-list .menu-list-content .menu-dropdown-content li a {
  width: 100%;
  color: #75684f;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 35px 25px 35px;
  font-size: 17px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav .menu .menu-list .menu-list-content .menu-dropdown-content li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

nav .menu .menu-list .menu-list-content .menu-dropdown-content li a i {
  font-size: 12px;
}

.tabs .tab-nav ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs .tab-nav li span {
  cursor: pointer;
}

.tabs .tab {
  display: none;
  -webkit-animation: tab 1s;
          animation: tab 1s;
}

.tabs .tab.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes tab {
  0% {
    -webkit-transform: translatex(30px);
            transform: translatex(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translatex(0);
            transform: translatex(0);
    opacity: 1;
  }
}

@keyframes tab {
  0% {
    -webkit-transform: translatex(30px);
            transform: translatex(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translatex(0);
            transform: translatex(0);
    opacity: 1;
  }
}

.bg-header {
  position: absolute;
  width: 100%;
  height: 768px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background: url(../images/bg/header2.jpg) center/cover no-repeat;
  top: 0;
  z-index: -1;
}

.bg-header .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#0f0f0f));
  background: linear-gradient(rgba(0, 0, 0, 0), #0f0f0f);
  -webkit-backdrop-filter: blur(0.5px);
          backdrop-filter: blur(0.5px);
}

@-webkit-keyframes fly {
  0% {
    top: 100px;
    right: 100px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: -200px;
    opacity: 1;
    right: -150px;
  }
}

@keyframes fly {
  0% {
    top: 100px;
    right: 100px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: -200px;
    opacity: 1;
    right: -150px;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes side-animation {
  0% {
    left: -450px;
  }
  100% {
    left: 450px;
  }
}

@keyframes side-animation {
  0% {
    left: -450px;
  }
  100% {
    left: 450px;
  }
}

@-webkit-keyframes text-top1 {
  0% {
    text-shadow: 0px 0px 0px #f7cc41;
  }
  50% {
    text-shadow: 0px 0px 20px #f7cc41;
  }
  100% {
    text-shadow: 0px 0px 0px #f7cc41;
  }
}

@keyframes text-top1 {
  0% {
    text-shadow: 0px 0px 0px #f7cc41;
  }
  50% {
    text-shadow: 0px 0px 20px #f7cc41;
  }
  100% {
    text-shadow: 0px 0px 0px #f7cc41;
  }
}

header {
  padding-bottom: 70px;
}

header .container {
  padding-top: 200px;
}

header .header-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .header-news .header-news-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

header .header-news .header-news-title h1 {
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-news .header-news-title h1 span {
  width: 12px;
  height: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 3px solid rgba(255, 255, 255, 0.301);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 15px;
  margin-top: 1px;
}

header .header-news .header-news-title a {
  color: rgba(255, 255, 255, 0.5);
  width: 35px;
  height: 35px;
  background-color: rgba(15, 15, 15, 0.753);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.055);
}

header .header-news .header-news-title a:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

header .header-news .header-content {
  width: 31%;
  height: 100%;
  position: relative;
}

header .header-news .header-content .header-content-link {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
  z-index: 10;
}

header .header-news .header-content .header-content-link:hover .link-img {
  top: -20px;
}

header .header-news .header-content .header-content-link:hover a {
  border: 1px solid rgba(208, 126, 255, 0.712);
}

header .header-news .header-content .header-content-link:hover a i {
  color: white;
}

header .header-news .header-content .header-content-link:hover a::before {
  left: 100px;
}

header .header-news .header-content .header-content-link .link-img {
  position: absolute;
  right: -100px;
  top: -5px;
  z-index: 1;
  -webkit-transition: .5s;
  transition: .5s;
  pointer-events: none;
}

header .header-news .header-content .header-content-link .link-img img {
  width: 320px;
}

header .header-news .header-content .header-content-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  height: 80px;
  background-color: rgba(93, 48, 119, 0.747);
  border: 1px solid rgba(168, 59, 231, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  padding-left: 50px;
  position: relative;
  overflow: hidden;
}

header .header-news .header-content .header-content-link a i {
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.404);
}

header .header-news .header-content .header-content-link a::before {
  content: '';
  position: absolute;
  left: 200px;
  top: 0;
  -webkit-transition: .5s;
  transition: .5s;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  -webkit-filter: blur(20px);
          filter: blur(20px);
}

header .header-news .header-content .header-content-server {
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.301);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.301);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
  position: relative;
}

header .header-news .header-content .header-content-server .server {
  padding: 25px;
  background-color: rgba(15, 15, 15, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0px 0px 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

header .header-news .header-content .header-content-server .server:hover .server-open .line {
  background-color: white;
}

header .header-news .header-content .header-content-server .server:hover .server-open .line2 {
  background-color: white;
}

header .header-news .header-content .header-content-server .server:hover .server-open .line3 {
  background-color: white;
}

header .header-news .header-content .header-content-server .server.active {
  background-color: rgba(15, 15, 15, 0.9);
}

header .header-news .header-content .header-content-server .server.active .server-open .line {
  margin-bottom: 0px;
  height: 1px;
  -webkit-transform: rotate(48deg);
          transform: rotate(48deg);
  width: 25px;
}

header .header-news .header-content .header-content-server .server.active .server-open .line2 {
  margin-bottom: 0px;
  height: 1px;
  -webkit-transform: rotate(-48deg);
          transform: rotate(-48deg);
  width: 25px;
  margin-bottom: 1px;
}

header .header-news .header-content .header-content-server .server.active .server-open .line3 {
  display: none;
}

header .header-news .header-content .header-content-server .server.active .server-list {
  max-height: 300px;
  overflow: visible;
  visibility: visible;
  opacity: 1;
}

header .header-news .header-content .header-content-server .server.active .server-list ul {
  padding: 10px 0px 15px 0px;
}

header .header-news .header-content .header-content-server .server .server-list {
  position: absolute;
  width: 100.7%;
  background-color: rgba(15, 15, 15, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  left: -1px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: none;
  border-radius: 0px 0px 5px 5px;
  top: 65px;
  z-index: 100;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

header .header-news .header-content .header-content-server .server .server-list ul {
  -webkit-transition: .5s;
  transition: .5s;
  padding: 0px 0px 0px 0px;
}

header .header-news .header-content .header-content-server .server .server-list ul li {
  padding: 12px 25px 12px 25px;
}

header .header-news .header-content .header-content-server .server .server-list ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-news .header-content .header-content-server .server .server-open div {
  -webkit-transition: .5s;
  transition: .5s;
}

header .header-news .header-content .header-content-server .server .server-open .line {
  width: 20px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

header .header-news .header-content .header-content-server .server .server-open .line2 {
  width: 20px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

header .header-news .header-content .header-content-server .server .server-open .line3 {
  width: 20px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
}

header .header-news .header-content .header-content-server .server .server-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-news .header-content .header-content-server .server .online-number {
  color: greenyellow;
  text-decoration: underline;
}

header .header-news .header-content .header-content-server .server .online {
  width: 8px;
  height: 8px;
  border: 2.5px solid greenyellow;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  margin-top: 2px;
}

header .header-news .header-content .header-content-server .download {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 90px;
  position: relative;
  background-color: rgba(145, 112, 64, 0.932);
  border-radius: 5px 5px 0px 0px;
  text-transform: uppercase;
  color: #25160d;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 2px;
  overflow: hidden;
  border-top: 1px solid #ffd258;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

header .header-news .header-content .header-content-server .download:hover {
  background-color: rgba(190, 149, 87, 0.932);
}

header .header-news .header-content .header-content-server .download:hover span {
  text-shadow: 0px 0px 10px white;
  font-size: 30px;
}

header .header-news .header-content .header-content-server .download:hover .effect3 img {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

header .header-news .header-content .header-content-server .download span {
  z-index: 2;
  -webkit-animation: scale 2s infinite linear;
          animation: scale 2s infinite linear;
}

header .header-news .header-content .header-content-server .download .effect {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fly 10s infinite linear;
          animation: fly 10s infinite linear;
  z-index: 1;
}

header .header-news .header-content .header-content-server .download .effect img {
  -webkit-filter: brightness(500%);
          filter: brightness(500%);
  width: 100%;
}

header .header-news .header-content .header-content-server .download .effect2 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fly 10s 5s infinite linear;
          animation: fly 10s 5s infinite linear;
  opacity: 0;
  z-index: 1;
}

header .header-news .header-content .header-content-server .download .effect2 img {
  width: 100%;
  -webkit-filter: brightness(500%);
          filter: brightness(500%);
}

header .header-news .header-content .header-content-server .download .effect3 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}

header .header-news .header-content .header-content-server .download .effect3 img {
  width: 300px;
  -webkit-animation: rotate 25s infinite linear;
          animation: rotate 25s infinite linear;
}

header .header-news .header-content .header-content-server .download::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -5px;
  height: 90px;
  z-index: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  background: linear-gradient(120deg, rgba(224, 176, 74, 0.541), rgba(255, 227, 166, 0.514), rgba(224, 176, 74, 0.521));
}

header .header-news .header-content .header-news-shadow {
  height: 219.9px;
  bottom: 0;
  width: 99.9%;
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}

header .header-news .header-content .swiper-wrapper {
  width: 100%;
  height: 220px;
}

header .header-news .header-news-swiper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 11px;
}

header .header-news .header-news-swiper .header-news-slide {
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  background-color: black;
  border-radius: 10px;
}

header .header-news .header-news-swiper .header-news-slide:hover .header-news-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.5;
}

header .header-news .header-news-swiper .header-news-slide .header-news-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(29, 29, 29, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 20px 0px 20px;
}

header .header-news .header-news-swiper .header-news-slide .header-news-text p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

header .header-news .header-news-swiper .header-news-slide .header-news-img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .header-news .header-news-swiper .header-news-slide .header-news-img .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.034)), color-stop(rgba(255, 255, 255, 0)), to(#0c0c0c));
  background: linear-gradient(rgba(0, 0, 0, 0.034), rgba(255, 255, 255, 0), #0c0c0c);
  z-index: 1;
}

header .header-news .header-news-swiper .header-news-slide .header-news-img img {
  height: 100%;
  opacity: 1;
}

header .header-news .header-news-swiper .header-news-control {
  z-index: 100;
  background-color: rgba(2, 2, 2, 0.747);
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(255, 255, 255, 0.397);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid rgba(255, 255, 255, 0.02);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.363);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.363);
}

header .header-news .header-news-swiper .header-news-control:hover {
  color: white;
}

header .header-news .header-news-swiper .swiper-button-prev {
  top: 30px;
  right: 46px;
  border-radius: 5px 0px 0px 5px;
}

header .header-news .header-news-swiper .swiper-button-next {
  top: 30px;
  right: 10px;
  border-radius: 0px 5px 5px 0px;
}

header .header-news .header-news-swiper .swiper-button-disabled {
  opacity: 0.7;
}

header .header-news .header-news-list {
  position: relative;
}

header .header-news .header-news-list ul {
  width: 100%;
  background-color: rgba(26, 26, 26, 0.781);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.185);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.185);
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 220px;
}

header .header-news .header-news-list ul li:not(:last-child) {
  margin-bottom: 23px;
}

header .header-news .header-news-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-news .header-news-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-news .header-news-list ul li a:hover p {
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5);
}

header .header-news .header-news-list ul li a:hover .tag {
  background-color: red;
  color: white;
}

header .header-news .header-news-list ul li .news-data {
  color: gray;
}

header .header-news .header-news-list ul li .news-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-news .header-news-list ul li .news-text p {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 80%;
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
}

header .header-news .header-news-list ul li .tag {
  color: gray;
  width: 18px;
  height: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 2px solid #911717;
  margin-right: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: red;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
}

header .header-news .header-news-list ul li .tag span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .header-news .header-news-main {
  width: 64%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

header .header-news .header-news-main .news-main-content {
  width: 49%;
  background-color: black;
  border-radius: 10px;
}

header .header-logo {
  text-align: center;
  margin-bottom: 100px;
}

header .header-logo img {
  width: 300px;
}

@-webkit-keyframes width {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes width {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@-webkit-keyframes width-out {
  from {
    width: 100%;
  }
  to {
    width: 5%;
  }
}

@keyframes width-out {
  from {
    width: 100%;
  }
  to {
    width: 5%;
  }
}

.features {
  height: 600px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 0px 0px 200px rgba(0, 0, 0, 0.9);
          box-shadow: 0px 0px 200px rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.features .swiper-pagination-bullet {
  width: 120px !important;
  height: 5px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 0 !important;
}

.features .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.192) !important;
}

.features .swiper-pagination-bullet-active {
  width: 200px !important;
  height: 5px !important;
  background-color: rgba(255, 255, 255, 0.192) !important;
  border-radius: 0 !important;
  position: relative;
}

.features .swiper-pagination-bullet-active::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: white;
  -webkit-animation: width 10s infinite;
          animation: width 10s infinite;
  left: 0;
  -webkit-transition: .5s;
  transition: .5s;
  pointer-events: none;
}

.features .swiper-pagination {
  bottom: 80px !important;
}

.features .features-slide {
  height: 100%;
  color: white;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.336)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0.336), black);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 90px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  text-align: center;
}

.features .features-slide img {
  width: 150px;
  margin-bottom: 30px;
}

.features .features-slide h1 {
  font-size: 60px;
}

.features .features-slide .features-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
}

.features .features-slide .features-bg video {
  opacity: 0.7;
}

.shop {
  padding-top: 100px;
  padding-bottom: 110px;
}

.shop .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.shop .title h1 {
  font-size: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop .title h1 span {
  width: 12px;
  height: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 3px solid rgba(255, 255, 255, 0.301);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 15px;
  margin-top: 4px;
}

.shop .title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.shop .title a:hover {
  color: white;
}

.shop .title a:hover i {
  color: white;
  margin-left: 15px;
}

.shop .title a i {
  margin-left: 7px;
  padding-top: 3.5px;
  color: rgba(255, 255, 255, 0.3);
}

.shop .shop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shop .shop-item .shop-item-list {
  width: 23.5%;
  background-color: rgba(37, 37, 37, 0.5);
  border-radius: 10px;
  text-align: center;
}

.shop .shop-item .shop-item-list:hover .item {
  padding-bottom: 50px;
  border: 1px solid rgba(93, 48, 119, 0.747);
}

.shop .shop-item .shop-item-list:hover .item .item-button {
  bottom: 0;
}

.shop .shop-item .shop-item-list:hover .item .item-img {
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
}

.shop .shop-item .shop-item-list:hover .item .item-img img {
  width: 35px;
}

.shop .shop-item .shop-item-list .item {
  height: 300px;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid rgba(93, 48, 119, 0);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0px 40px 0px 40px;
  position: relative;
  overflow: hidden;
}

.shop .shop-item .shop-item-list .item .item-button {
  position: absolute;
  -webkit-transition: .5s;
  transition: .5s;
  bottom: -60px;
  height: 60px;
  background-color: rgba(93, 48, 119, 0.747);
  color: white;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0px 0px 10px 10px;
}

.shop .shop-item .shop-item-list .item .item-button:hover::before {
  width: 100%;
}

.shop .shop-item .shop-item-list .item .item-button::before {
  content: '';
  position: absolute;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-transition: .5s;
  transition: .5s;
}

.shop .shop-item .shop-item-list .item .item-info {
  color: white;
  width: 100%;
}

.shop .shop-item .shop-item-list .item .item-info p {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.shop .shop-item .shop-item-list .item .item-info .item-info-price {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.068);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 40px;
}

.shop .shop-item .shop-item-list .item .item-info .item-info-price span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-color: #63228f;
  border-radius: 100%;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
  font-size: 12px;
}

.shop .shop-item .shop-item-list .item .item-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3));
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.02);
          box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.02);
  margin-bottom: 35px;
  -webkit-transition: .5s;
  transition: .5s;
}

.shop .shop-item .shop-item-list .item .item-img img {
  width: 50px;
}

.rank {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 80px;
}

.rank .rank-more a {
  color: rgba(255, 255, 255, 0.473);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rank .rank-more a:hover {
  color: white;
}

.rank .rank-more a:hover i {
  margin-left: 10px;
}

.rank .rank-more a i {
  margin-left: 5px;
  padding-top: 1px;
}

.rank .rank-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.rank .rank-title h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rank .rank-title h1 span {
  width: 12px;
  height: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 3px solid rgba(255, 255, 255, 0.301);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 15px;
  margin-top: 1px;
}

.rank .rank-title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rank .rank-title ul li:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rank .rank-title ul li {
  color: rgba(255, 255, 255, 0.336);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rank .rank-title ul li span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rank .rank-title ul li span::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px white;
          box-shadow: 0px 0px 10px white;
  bottom: -5px;
  -webkit-transition: .5s;
  transition: .5s;
}

.rank .rank-title ul li.active {
  color: white;
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.562);
}

.rank .rank-title ul li.active span::before {
  width: 100%;
}

.rank .rank-title ul li:hover {
  color: white;
}

.rank .rank-players {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(24, 24, 24, 0.815);
  border-radius: 0px 0px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.rank .rank-players .player:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.rank .rank-players .top1 {
  border-radius: 0px 0px 0px 0px;
  border-top: 2px solid #705722;
  position: relative;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.rank .rank-players .top1 .player-name {
  color: white !important;
}

.rank .rank-players .top1 .top-animate {
  width: 100%;
  height: 100%;
  padding: 17px 30px 17px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  -webkit-animation: text-top1 2s infinite linear;
          animation: text-top1 2s infinite linear;
}

.rank .rank-players .top1 .top-animate .rank-img {
  -webkit-animation: scale 2s infinite;
          animation: scale 2s infinite;
}

.rank .rank-players .top1 .top-animate::after {
  -webkit-transition: .5s;
  transition: .5s;
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 0px 0px 0px 10px;
  background: rgba(199, 181, 78, 0.05);
  height: 100%;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(148, 108, 56, 0), rgba(199, 181, 78, 0.2), rgba(148, 108, 56, 0));
  -webkit-animation: side-animation 2s linear infinite;
          animation: side-animation 2s linear infinite;
  -webkit-filter: blur(40px);
          filter: blur(40px);
}

.rank .rank-players .top1:hover::before {
  width: 100%;
}

.rank .rank-players .top1::before {
  -webkit-transition: .5s;
  transition: .5s;
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  border-radius: 0px 0px 0px 10px;
  background: rgba(199, 181, 78, 0.05);
  height: 100%;
  pointer-events: none;
}

.rank .rank-players .top2 {
  border-radius: 0px 0px 0px 0px;
  border-top: 2px solid #4b4b4b;
  position: relative;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.rank .rank-players .top2:hover .player-name {
  color: white;
}

.rank .rank-players .top2:hover::before {
  width: 100%;
}

.rank .rank-players .top2::before {
  -webkit-transition: .5s;
  transition: .5s;
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  background: rgba(99, 99, 99, 0.08);
  height: 100%;
  pointer-events: none;
}

.rank .rank-players .top3 {
  border-radius: 0px 0px 0px 0px;
  border-top: 2px solid #6b4027;
  position: relative;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.rank .rank-players .top3:hover .player-name {
  color: white;
}

.rank .rank-players .top3:hover::before {
  width: 100%;
}

.rank .rank-players .top3::before {
  -webkit-transition: .5s;
  transition: .5s;
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  border-radius: 0px 0px 10px 0px;
  background: rgba(105, 71, 40, 0.1);
  height: 100%;
  pointer-events: none;
}

.rank .rank-players .player {
  width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.rank .rank-players .player:hover .player-info {
  bottom: 140%;
  opacity: 1;
  visibility: visible;
}

.rank .rank-players .player .top-normal {
  width: 100%;
  height: 100%;
  padding: 17px 30px 17px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rank .rank-players .player .player-info {
  position: absolute;
  bottom: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  width: 100%;
  height: 70px;
  background-color: rgba(36, 36, 36, 0.712);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 5px;
  padding: 0px 30px 0px 30px;
  border: 1px solid rgba(255, 255, 255, 0.082);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
}

.rank .rank-players .player .player-info::before {
  content: '';
  width: 20px;
  height: 10px;
  background-color: rgba(36, 36, 36, 0.712);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  position: absolute;
  top: 100%;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.rank .rank-players .player .player-info .level {
  position: relative;
}

.rank .rank-players .player .player-info .level span {
  color: rgba(255, 255, 255, 0.37);
}

.rank .rank-players .player .player-info .level .p-level {
  color: white;
}

.rank .rank-players .player .player-info .level .m-level {
  position: absolute;
  bottom: 105%;
  color: red;
  right: 0;
  font-size: 12px;
}

.rank .rank-players .player .player-name {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.445);
}

.rank .rank-players .player .rank-img {
  padding-top: 7px;
}

.rank .rank-players .player .rank-img img {
  width: 40px;
  margin-right: 20px;
}

.follow {
  height: 200px;
  background: url(../images/bg/bg_pet.jpg) top/cover fixed no-repeat;
  -webkit-box-shadow: 0px 0px 140px rgba(0, 0, 0, 0.404);
          box-shadow: 0px 0px 140px rgba(0, 0, 0, 0.404);
}

.follow .follow-content {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 15, 15, 0.9)), to(rgba(12, 12, 12, 0.712)));
  background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(12, 12, 12, 0.712));
}

.follow .follow-content .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.follow .follow-content .title h1 {
  font-size: 35px;
}

.follow .follow-content .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.follow .follow-content .links a:not(:last-child) {
  margin-right: 15px;
}

.follow .follow-content .links a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(255, 255, 255, 0.548);
  border-radius: 100%;
  font-size: 20px;
}

.follow .follow-content .links a:hover {
  -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
          box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0px 80px 0px;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .lang {
  position: relative;
  width: 250px;
  height: 50px;
  background-color: rgba(34, 34, 34, 0.836);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-transition: .5s;
  transition: .5s;
}

footer .lang.active {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer .lang.active span i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

footer .lang.active .lang-dropdown {
  opacity: 1;
  max-height: 400px;
  visibility: visible;
  overflow: visible;
}

footer .lang span {
  padding: 0px 30px 0px 30px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.562);
  -webkit-transition: .5s;
  transition: .5s;
}

footer .lang span:hover {
  color: white;
}

footer .lang span i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.253);
}

footer .lang .lang-dropdown {
  position: absolute;
  bottom: 125%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

footer .lang .lang-dropdown a:not(:last-child) {
  margin-bottom: 10px;
}

footer .lang .lang-dropdown a {
  width: 100%;
  padding: 0px 30px 0px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(34, 34, 34, 0.836);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.425);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

footer .lang .lang-dropdown a:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer .logo {
  margin-right: 60px;
}

footer .footer .logo img {
  width: 140px;
  opacity: 0.2;
}

footer .footer .text div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

footer .footer .text div a:not(:last-child) {
  margin-right: 50px;
}

footer .footer .text div a {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
}

footer .footer .text p {
  color: rgba(255, 255, 255, 0.171);
}

.container {
  width: 1220px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }
  nav .menu-user span {
    display: none;
  }
  nav .menu-user button:not(:last-child) {
    margin-right: 5px;
  }
  nav .menu-user button {
    padding: 0px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  nav .menu-user button p {
    display: none;
  }
  nav .menu-user button i {
    margin: 0;
  }
  footer {
    text-align: center;
  }
  footer .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer .logo {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  footer .footer .text {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  footer .footer .text div {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer .text a {
    margin-right: 0;
  }
  .follow .follow-content .title {
    display: none;
  }
  .follow .follow-content .links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .shop {
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .shop .container {
    width: 100% !important;
  }
  .shop .title {
    padding: 0px 30px 0px 30px;
  }
  .shop .shop-item {
    overflow-x: scroll;
    padding-left: 30px;
    padding-bottom: 40px;
  }
  .shop .shop-item .shop-item-list {
    width: 350px;
    margin-right: 15px;
  }
  .features .swiper-pagination-bullet {
    width: 50px !important;
  }
  .features .swiper-pagination-bullet-active {
    width: 80px !important;
  }
  .features .features-slide h1 {
    font-size: 30px;
  }
  .features .features-slide img {
    width: 120px;
  }
  header {
    padding-bottom: 20px;
  }
  header .header-logo img {
    width: 200px;
  }
  header .header-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header .header-news .header-content {
    width: 100%;
    margin-bottom: 40px;
  }
  .rank .rank-more {
    text-align: center;
  }
  .rank .rank-title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .rank .rank-title h1 {
    width: 100%;
    margin-bottom: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rank .rank-title ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .rank .rank-players {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .rank .rank-players .player {
    width: 100%;
  }
}

@media (max-width: 1220px) {
  .container {
    width: 90%;
    margin: 0 auto;
  }
}

@media (min-width: 1920px) {
  .features .features-bg video {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */