* {
  outline: none;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Verdana, sans-serif;
}

body {
  margin: 0;
  background: #111;
}

.wrapper {
  max-width: 750px;
  margin: auto;
  background: #e0dede;
}

header {
  top: 0;
  background: #222;
  padding: 1rem;
  position: sticky;
  top: 0;
  display: flex;
  z-index: 5;
}
header .logo a {
  display: flex;
}
header .logo a img {
  max-width: 200px;
}
@media screen and (max-width: 500px) {
  header .logo a img {
    max-width: 190px;
  }
}
header .btn {
  margin: 0 0 0 auto;
}
header .btn button {
  border-radius: 0.3rem;
  border: none;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  background: #CCC;
  cursor: pointer;
  font-size: 13px;
}
header .btn button:hover {
  opacity: 0.85;
}

main {
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
main .Modal {
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}
main .Modal .Modal_Wrap {
  width: 100%;
  max-width: 750px;
  background: rgba(0, 0, 0, 0.6352941176);
  margin: auto;
  height: 100%;
  display: flex;
  padding: 1rem;
}
main .Modal .Modal_Wrap .Modal_Content {
  margin: auto;
  padding: 1rem;
  width: 100%;
  max-width: 450px;
  background: #000;
  border: 3px solid #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6352941176);
  border-radius: 10px;
}
main .Modal .Modal_Wrap .Modal_Content button.top_btn {
  position: absolute;
  right: 0;
  top: 0;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: 0;
  cursor: pointer;
}
main .Modal .Modal_Wrap .Modal_Content button.top_btn:hover {
  color: #fff;
}
main .Modal .Modal_Wrap .Modal_Content a {
  display: flex;
}
main .Modal .Modal_Wrap .Modal_Content a img {
  background: #fed943;
}
main .Modal .Modal_Wrap .Modal_Content img {
  width: 100%;
  max-width: 250px;
}
main .Modal .Modal_Wrap .Modal_Content button.bottom_btn {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2rem;
  cursor: pointer;
  background: #d4d4d4;
  padding: 0.5rem 0.8rem;
  border: 0;
}
main .Modal .Modal_Wrap .Modal_Content button.bottom_btn:hover {
  opacity: 0.85;
}
main .banner {
  border-radius: 10px;
}
main .banner .swiper-slide {
  display: flex;
}
main .banner img {
  width: 100%;
}
main .banner .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
main .banner .swiper-pagination-bullet[aria-current=true] {
  background: rgb(221, 202, 95);
}
main .broadcast {
  margin-top: 1rem;
  background: #111;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 10px;
  gap: 10px;
}
main .broadcast svg {
  width: 1.5rem;
  height: 1.5rem;
}
main .broadcast .broadcast_wrap {
  position: relative;
  overflow: hidden;
  height: 1.5rem;
  width: 100%;
}
main .broadcast .broadcast_wrap .broadcast_content {
  position: absolute;
}
main .broadcast .broadcast_wrap .broadcast_content span {
  text-wrap: nowrap;
  display: block;
  color: #fff;
  width: fit-contentt;
  animation: marquee 30s linear infinite;
}
main .broadcast:hover .broadcast_wrap .broadcast_content span {
  animation-play-state: paused;
}
main .button {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
main .button a {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
main .button a:first-child {
  background: #111;
  color: #fff;
}
main .button a:last-child {
  background: #222;
  color: #fff;
}
main .button a:hover {
  opacity: 0.85;
}
main .service {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
main .service .service_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111;
  border-radius: 15px;
  padding: 10px;
}
main .service .service_group svg {
  padding: 0 10px 10px 10px;
  width: 75px;
  height: 75px;
}
main .service .service_group .text p {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: block;
  zoom: 0.8;
}
main .service .service_group .text span {
  display: block;
  text-align: center;
  color: #aaa;
  text-transform: uppercase;
  font-size: 14px;
  zoom: 0.8;
}
@media screen and (max-width: 500px) {
  main .service {
    grid-template-columns: 1fr 1fr;
  }
}
main .games {
  position: relative;
  z-index: 3;
}
main .games #myBtnContainer {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
main .games #myBtnContainer .btn {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 7.2px;
  background: #bdbdbd;
}
main .games #myBtnContainer .btn.active {
  background: #111;
  color: #fff;
}
main .games .games_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
main .games .games_container .image {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px #aaa;
}
main .games .games_container .image .hover_btn {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.6823529412);
  display: flex;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: 1;
}
main .games .games_container .image .hover_btn svg {
  animation: pulse 1.3s linear infinite;
  margin: auto;
}
main .games .games_container .image .online_member {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  z-index: 1;
  padding: 0.3rem 0.8rem;
  background: #111;
  display: flex;
  border-radius: 0 0.5rem 0 0;
  align-items: center;
  gap: 0.5rem;
  zoom: 0.9;
}
main .games .games_container .image .online_member::after {
  margin-left: -0.3rem;
  content: "online";
  color: #fff;
  text-transform: uppercase;
  zoom: 0.7;
}
main .games .games_container .image .online_member i.online-member {
  width: 0.5rem;
  height: 0.5rem;
  background: #01fe01;
  border-radius: 15px;
  animation: light_online 1.5s linear infinite;
}
main .games .games_container .image .online_member span {
  color: #fff;
  font-weight: bold;
}
main .games .games_container .image img {
  transition: all 0.4s ease-in-out;
}
main .games .games_container .image:hover .hover_btn {
  opacity: 1;
  visibility: visible;
}
main .games .games_container .image:hover img {
  transform: scale(110%);
}
main .games .games_container img {
  width: 100%;
}
main .games .games_container .name {
  display: block;
  text-align: center;
  margin: 0.4rem 0 0 0;
}
main .games .games_container .filterDiv {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: none;
}
main .games .games_container .filterDiv.show {
  opacity: 1;
  visibility: visible;
  display: block;
}
@media screen and (max-width: 500px) {
  main .games .games_container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
main .floating_icon {
  position: fixed;
  bottom: 18%;
  right: 1rem;
  z-index: 3;
}
main .floating_icon a {
  display: block;
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 10;
}
main .floating_icon a svg, main .floating_icon a img {
  width: 100%;
  height: 100%;
}
main .floating_icon a:nth-child(2) {
  padding: 1rem;
}
main .floating_icon a svg {
  padding: 10px;
  border-radius: 10px;
  background: #111;
}

footer {
  padding: 1rem;
}
footer::before {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  border-top: 2px solid #aaa;
  border-bottom: 2px solid #ccc;
  margin-bottom: 1rem;
}
footer .article {
  text-align: center;
}
footer .article h1 {
  margin-top: 0;
  font-size: 1.45rem;
}
footer .article p {
  font-size: 0.9rem;
}
footer .credits {
  margin-top: 3rem;
  text-align: center;
  padding-bottom: 6rem;
}

.Mobile_button {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 6;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Mobile_button .Mobile_button_wrap {
  width: 100%;
  max-width: 750px;
  padding: 10px;
}
.Mobile_button .Mobile_button_wrap .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: #222;
  padding: 10px;
  border-radius: 10px;
}
.Mobile_button .Mobile_button_wrap .content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
.Mobile_button .Mobile_button_wrap .content a span {
  color: #aaa;
}
.Mobile_button .Mobile_button_wrap .content a:nth-child(1):hover svg path {
  stroke: #fff;
}
.Mobile_button .Mobile_button_wrap .content a:nth-child(2):hover svg path {
  fill: #fff;
}
.Mobile_button .Mobile_button_wrap .content a:nth-child(3):hover svg circle {
  stroke: #fff;
}
.Mobile_button .Mobile_button_wrap .content a:nth-child(3):hover svg path {
  stroke: #fff;
}
.Mobile_button .Mobile_button_wrap .content a:nth-child(4):hover svg path {
  stroke: #fff;
}
.Mobile_button .Mobile_button_wrap .content a:nth-child(5):hover svg path {
  fill: #fff;
}
.Mobile_button .Mobile_button_wrap .content a:hover span {
  color: #fff;
}
@media screen and (max-width: 500px) {
  .Mobile_button .Mobile_button_wrap .content span {
    font-size: 14px;
    zoom: 0.85;
  }
  .Mobile_button .Mobile_button_wrap .content svg {
    width: 28px;
    height: 28px;
  }
}
.Mobile_button .Mobile_button_wrap svg {
  width: 35px;
  height: 35px;
}

@keyframes pulse {
  50% {
    transform: scale(110%);
  }
}
@keyframes light_online {
  50% {
    opacity: 0.2;
  }
}
@keyframes marquee {
  100% {
    transform: translateX(-100%);
  }
}/*# sourceMappingURL=html-version.css.map */