* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.clear {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

body,
html {
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  width: 1100px;
  height: auto;
  margin: 0 auto;
}

header {
  width: 1100px;
  background: #f7f7f5;
  border: 1px solid #000;
  margin-bottom: 10px;
  position: relative;
}

.logo {
  float: left;
  margin: 0;
  color: #f2d295;
}

.logo_top {
  max-width: 250px;
  height: auto;
}

.register-area {
  float: left;
  margin: 0 25px 0 75px;
  border: none;
  box-shadow: none;
}

.register-area-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #444444;
  font-weight: bold;
  transition: 0.1s box-shadow;
}

.register-area__reg-btn {
  background: linear-gradient(45deg, #ffd700, #c5a100);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  color: #ffffff;

  font-size: 16px;
  cursor: pointer;
  outline: none;
}

.register-area__reg-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.register-area__reg-btn:hover::before {
  left: 100%;
}

.register-area__reg-btn:hover {
  background: linear-gradient(45deg, #c5a100, #ffd700);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.register-area__enter-btn {
  background: linear-gradient(180deg, #01c365, #017a3b);
  border-radius: 4px;

  font-size: 16px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  outline: none;
}

.register-area__enter-btn:hover {
  background: linear-gradient(180deg, #017a3b, #01c365);
  box-shadow: 0 4px 15px rgba(1, 124, 59, 0.4);
  transform: scale(1.05);
}

.register-area__down-btn {
  background: linear-gradient(180deg, #00bfff, #0000ff);
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 2s ease;
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25%,
  75% {
    transform: scale(1.05);
  }
}

.register-area__down-btn:hover {
  background: linear-gradient(180deg, #0000ff, #00bfff);
  animation: none;
  box-shadow: 0 4px 15px rgba(0, 0, 255, 0.4);
  transform: scale(1.05);
  transition: transform 0.3s ease, background 2s ease, box-shadow 0.3s ease;
}

.social-area {
  float: left;
  text-align: center;
  margin: 24px auto 0;
}

.social-area li {
  display: inline-block;
}

.social-area ul {
  padding-left: 5px;
  float: left;
}

.social-area li a {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0;

  transition: background 0.5s ease-out;
}

.social-area li + li {
  margin: 0;
}

li.fb a {
  background-position: 0 0;
}

li.gpl a {
  background-position: -40px 0;
}

li.mru a {
  background-position: -80px 0;
}

li.ok a {
  background-position: -120px 0;
}

li.tw a {
  background-position: -160px 0;
}

li.vk a {
  background-position: -200px 0;
}

li a:hover {
  opacity: 0.85;
}

.header-nav {
  width: 1100px;
  height: 54px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #000;
  margin-bottom: 10px;
  text-align: center;
}

.h-menu {
  list-style-type: none;
  font-size: 0;
}

.h-menu li {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
}

.h-menu li > a,
.h-menu li > span {
  display: block;
  text-align: center;
  text-shadow: 0 -2px 1px #000, -2px 0 1px #000, 0 2px 1px #000,
    2px 0 1px #444444;
  text-transform: uppercase;
  color: #f2d295;
  margin: 0 19px;
  font-weight: normal;
  text-decoration: none;
  line-height: 54px;
}

.h-menu li > a:hover,
.h-menu li > span {
  color: #f00;
}

.clubs {
  width: 1100px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #000;
  margin-bottom: 10px;
  text-align: center;
}

.clubs-area {
  padding-left: 5px;
}

.clubs-item {
  display: inline-block;
}

.clubs-item a {
  width: 180px;
  height: 125px;
  display: block;
  margin: 13px 25px;
  background: url("img/clubs_both.png.html") no-repeat;
}

.clubs li + li {
  margin: 0;
}

.clubs-item_vu a {
  background-position: 0 5px;
}

.clubs-item_vus a {
  background-position: -197px 5px;
}

.clubs-item_gms a {
  width: 230px;
  background-position: -389px 5px;
}

.clubs-item_gmsd a {
  width: 230px;
  background-position: -631px 5px;
}

.clubs-item_vu a:hover {
  background-position: 0 -133px;
  opacity: 1;
}

.clubs-item_vus a:hover {
  background-position: -197px -134px;
  opacity: 1;
}

.clubs-item_gms a:hover {
  background-position: -389px -135px;
  opacity: 1;
}

.clubs-item_gmsd a:hover {
  background-position: -631px -134px;
  opacity: 1;
}

main {
  width: 1100px;
  height: auto;
  position: relative;
}

main .btn_download {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  padding: 0 33px;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #444444;
  font-weight: bold;
  transition: 0.1s box-shadow;
  background-color: #00a2ff;
  background-image: linear-gradient(
    to bottom,
    #00a2ff 0,
    #00a2ff 45%,
    #0092e6 50%,
    #002d47 100%
  );
  box-shadow: inset 1px 1px 1px #00a2ff, inset -1px -1px 1px #00a2ff;
  margin-top: 5px;
}

main .btn_download:hover {
  background-color: #006199;
  background-image: linear-gradient(
    to top,
    #00a2ff 0,
    #00a2ff 45%,
    #0092e6 50%,
    #002d47 100%
  );
  box-shadow: inset 1px 1px 40px #00a2ff, inset -1px -1px 40px #00a2ff;
  text-decoration: none;
}

main .btn_download:visited,
main .btn_download:link {
  color: #444444;
  text-decoration: none;
}

.content {
  float: right;
  height: auto;
  background: #f7f7f5;
  border: 1px solid #000;
  margin-bottom: 10px;
  padding: 18px;
}

.content h2,
.content h3,
.content h4 {
  text-transform: uppercase;
  color: #444444;
  font-weight: bold;
}

.content h1 {
  display: block;
  font-size: 35px;
  color: #444444;
  line-height: 25px;
  font-weight: normal;
  padding: 20px 0;
  text-align: center;
}

.content h2 {
  font-size: 25px;
  text-align: center;
  padding: 20px 0;
}

picture img {
  display: block;
  margin: 15px auto;
  max-width: 100%;
}

.content h3,
.content h4 {
  font-size: 18px;
}

.content p {
  font-size: 16px;
  color: #444444;
  margin: 10px 0;
  line-height: 1.4em;
}

.content ul,
.content ol {
  margin: 10px 0;
}

.content ul li,
.content ol li {
  font-size: 16px;
  color: #444444;
  margin: 0 0 0 40px;
  line-height: 1.3em;
}

.content a {
  color: #f2d295;
  text-decoration: underline;
}

.content a:hover {
  color: #eab551;
  text-decoration: none;
}

.content a:visited {
  color: #faefd9;
  text-decoration: underline;
}

.games {
  margin: 0 0 30px;
  text-align: center;
}

.games .slot-name {
  color: #444444;
  margin: 0;
  font-size: 14px;
  overflow: hidden;
  #444444-space: nowrap;
  text-overflow: ellipsis;
}

.games .slot {
  width: 206px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 18px 15px;
  border: 8px solid #444444;
  background: #444444;
  text-align: center;
  transition: box-shadow 1s ease-out;
  box-shadow: 0px 0px 0px 1px #e8b762;
}

.games .slot img {
  opacity: 1;
  width: 190px;
  height: 124px;
  margin-bottom: 8px;
}

.games .slot a {
  color: #444444;
}

.games .slot a:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 34px;
  left: 15px;
  text-decoration: none;
  width: 160px;
  text-align: center;
  height: 32px;
  font-size: 14px;
  line-height: 30px;
  background: linear-gradient(to bottom, #08a000, #0a4f00);
  border: 1px solid #e8b762;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3),
    -1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.games .slot a:nth-child(3):hover {
  background: #fc5254;
}

.games .slot a:nth-child(3) {
  opacity: 0;
  position: absolute;
  top: 70px;
  left: 15px;
  text-decoration: none;
  width: 160px;
  text-align: center;
  height: 32px;
  font-size: 14px;
  line-height: 30px;
  background: linear-gradient(to bottom, #c60000, #6e0000);
  border: 1px solid #e8b762;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3),
    -1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.games .slot a:nth-child(2):hover {
  border-color: #21df0e;
  background: linear-gradient(to bottom, #21df0e, #409213);
}

.games .slot:hover {
  background: #255d27;
  transition: box-shadow 0.5s ease-in;
  box-shadow: 0px 0px 5px 2px #e8b762;
}

.games .slot:hover a:nth-child(2) {
  opacity: 1;
}

.games .slot:hover a:nth-child(3) {
  opacity: 1;
}

.games .slot:hover img {
  background: #444444;
  opacity: 0.5;
}

.games-has-btn {
  padding: 5px 0;
  width: 100%;
  text-align: center;
}

.s-game__btn,
.loadmore,
.mybtn {
  display: inline-block;
  vertical-align: middle;
  padding: 0 30px;
  margin: 15px auto;
  min-width: 280px;
  height: 40px;
  line-height: 40px;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  outline: 0;
  #444444-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  text-decoration: none !important;
  color: #444444 !important;
  font-size: 18px;
  box-sizing: border-box;
  box-shadow: inset 1px 1px 1px #e9b963, inset -1px -1px 1px #e9b963;
  cursor: pointer;
}

.loadmore {
  background-color: #c00;
  background-image: linear-gradient(to bottom, #c00 0%, #680000 100%);
}

.loadmore:hover {
  background-color: #680000;
  background-image: linear-gradient(to top, #c00 0%, #680000 100%);
}

.loadmore:disabled {
  opacity: 0.4;
  cursor: default;
}

.mybtn {
  background-color: #08a000;
  background-image: linear-gradient(to bottom, #08a000, #0a4f00);
}

.mybtn:hover,
.mybtn:active {
  background-color: #0a4f00;
  background-image: linear-gradient(to top, #08a000, #0a4f00);
}

.wp-pagenavi {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #444444;
  text-align: center;
  margin: 0 0 20px 0;
}

.wp-pagenavi span,
.wp-pagenavi a {
  border-radius: 5px;
  background-clip: padding-box;
  padding: 3px 8px !important;
  border: 1px solid #9cf !important;
  color: #444444;
  margin: 0 3px !important;
}

.wp-pagenavi a:hover {
  background-color: #01015b;
}

.wp-pagenavi span.current {
  background-color: #01015b;
}

.xcrambs {
  line-height: 35px;
  font-size: 18px;
  color: #f2d295;
}

.xcrambs a {
  line-height: 35px;
  font-size: 18px;
  color: #f2d295;
  text-decoration: underline;
}

.xcrambs a:hover {
  text-decoration: none;
}

.frame-place {
  width: 750px;
  margin: 10px auto 0;
}

.frame-place iframe {
  width: 100%;
  height: 585px;
  border-color: #e6db55;
}

a.real-game {
  display: block;
  width: 100%;
  height: 70px;
  margin: 20px auto;
  background-image: linear-gradient(
    to top,
    #fc1402 0%,
    #db0c04 25%,
    #ba0606 45%,
    #910403 55%,
    #bd0705 100%
  );
  border-radius: 5px;
  background-clip: padding-box;
  box-shadow: inset 0 2px 5px #444444;
  text-shadow: 0.5px 0.9px 1px rgba(0, 0, 2, 0.75);
  color: #444444;
  font-size: 40px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 70px;
}

@media (max-width: 768px) {
  a.real-game {
    font-size: 24px;
  }
}

a.real-game:hover {
  background: #bd0705;
  color: #444444;
}

h1.error-h1 {
  display: inline-block;
  float: left;
  width: 300px;
  height: 180px;
  font-size: 180px;
  line-height: 180px;
  color: #f2d295;
  border: none;
  background: none;
}

p.error-right {
  width: 400px;
  padding-top: 20px;
  float: right;
}

.sidebar {
  float: left;
  width: 302px;
}

.sidebar-block {
  text-align: center;
  padding: 18px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #000;
  margin-bottom: 10px;
}

.heading {
  display: block;
  height: 45px;
  color: #444444;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 -2px 1px #412c07, -2px 0 1px #412c07, 0 2px 1px #412c07,
    2px 0 1px #412c07;
  line-height: 45px;
  vertical-align: middle;
  background: #89652c;
  border: 1px solid #eac892;
}

.wn-wr {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.wn {
  height: 20000em;
  position: relative;
}

.wn a img {
  width: 73px;
  height: 48px;
  position: absolute;
  top: 15px;
  left: 5px;
  padding: 5px;
  border: 1px solid #e6db55;
}

.wn a p {
  position: absolute;
  color: #ccc;
  font-size: 14px;
}

.int-args p:nth-child(1) {
  display: block;
  width: 100%;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  background-image: linear-gradient(to top, #44befd 0%, #00157c 100%);
  border: 1px solid #000026;
  position: absolute;
  left: 0;
  line-height: 30px;
}

.wn a p:nth-child(2) {
  top: 10px;
  left: 80px;
}

.wn a p:nth-child(3) {
  bottom: 5px;
  left: 80px;
}

.wn a p:nth-child(3) span {
  color: #f33;
  padding-left: 22px;
}

.wn a p:nth-child(4) {
  top: 30px;
  left: 80px;
}

.wn a p:nth-child(4) span {
  color: #1486ef;
  padding-left: 45px;
}

.int-args a {
  display: block;
  width: 100%;
  height: 70px;
  position: relative;
}

footer {
  width: 1100px;
  margin: 4px auto;
  position: relative;
  background: #f7f7f5;
  border: 1px solid #000;
  margin-bottom: 10px;
}

.footer-nav {
  width: 1100px;
  padding: 10px 0;
  text-align: center;
}

.up_button {
  position: fixed;
  right: 20px;
  bottom: 50px;
  color: #444444;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.up_button:hover {
  background: #444444;
}

.up_button:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-bottom: 10px solid #1b1e17;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  margin: 0 auto;
}

.f-menu {
  list-style-type: none;
  font-size: 0;
}

.f-menu li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}

.f-menu li > a {
  color: #444444;
  text-decoration: none;
}

.f-menu li > a,
.f-menu li > span {
  display: block;
  text-align: center;
  text-shadow: 0 -2px 1px #000, -2px 0 1px #000, 0 2px 1px #000,
    2px 0 1px #444444;
  text-transform: uppercase;
  margin: 0 20px;
  font-weight: normal;
  line-height: 34px;
}

.f-menu li > a:after,
.f-menu li > span:after {
  content: "|";
  margin-left: 37px;
}

.f-menu li:last-child > a:after,
.f-menu li:last-child > span:after {
  content: "";
  margin-left: 0;
}

.f-menu li > a:hover,
.f-menu li > span {
  color: #f00;
}

.f-menu li > a:hover:after,
.f-menu li > span:after {
  color: #444444;
}

.footer-info {
  display: block;
  text-align: center;
  color: #444444;
  font-size: 14px;
  margin: 15px auto;
}

.footer-info a {
  color: #c6afb0 !important;
}

#nav-icon {
  width: 30px;
  height: 25px;
  margin: 0;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  position: absolute;
  z-index: 5;
  right: 11px;
  top: 15px;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #444444;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 9px;
}

#nav-icon span:nth-child(3) {
  top: 18px;
}

#nav-icon.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

@media (max-width: 1100px) {
  .wrapper {
    max-width: 940px;
  }

  header,
  .header-nav,
  main,
  footer,
  .footer-nav {
    width: 100%;
  }

  header {
    display: flex;
    flex-wrap: wrap;
  }

  #nav-icon {
    display: block;
  }

  .header-nav {
    min-height: 50px;
    position: relative;
    z-index: 5;
  }

  .h-menu {
    display: none;
    padding-top: 50px;
    background: #444444;
    border: 1px solid #000;
  }

  .h-menu.show {
    display: block;
  }

  .h-menu li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .games .slot {
    margin: 10px auto;
  }

  .sidebar {
    max-width: 260px;
  }

  .content {
    max-width: calc(100% - 270px);
  }

  .social-area {
    width: 100%;
  }

  .register-area {
    margin: 0 auto;
  }

  .frame-place {
    width: 100%;
  }

  h1.error-h1 {
    float: none;
    width: 100%;
    text-align: center;
  }

  p.error-right {
    width: 100%;
    float: none;
    text-align: center;
  }

  .wn a p:nth-child(4) {
    display: none;
  }

  .games .slot a:nth-child(2) {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
  }
}

@media (max-width: 1024px) {
  .frame-place iframe {
    display: none;
  }

  .games .slot a:nth-child(3) {
    display: none;
  }

  .social-area {
    padding-bottom: 10px;
  }
}

@media (max-width: 940px) {
  .wrapper {
    max-width: 720px;
  }

  .sidebar {
    display: none;
  }

  .content {
    min-width: 100%;
  }

  .f-menu li > a:after,
  .f-menu li > span:after {
    content: initial;
  }
}

@media (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }

  .register-area {
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .f-menu li {
    display: block;
  }

  h1.error-h1 {
    font-size: 150px;
  }

  .logo {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 500px) {
  header {
    flex-direction: column;
  }

  .download-link {
    order: 1;
  }

  .register-area {
    display: flex;
    flex-direction: column;
    max-width: 300px;
  }

  .register-area a {
    margin: 5px 0;
  }
}

body .custom-rating {
  display: block;
}

.custom-rating .custom-rating-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.custom-rating em {
  display: block;
  width: 100%;
  text-align: center;
  color: #444444;
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.crumbs li {
  margin-left: 0 !important;
  font-size: 18px !important;
  padding-right: 5px !important;
}

.crumbs li span span {
  font-size: 18px;
  color: #f2d295;
}

.comment-form > p {
  display: flex;
}

.comment-form > p label {
  width: 150px;
}

.comment-form > p input,
.comment-form > p textarea {
  padding: 10px;
  resize: none;
  width: 100%;
  background: none;
  border: 1px solid #000;
  outline: 0;
  color: #444444;
}

.comment-form > p input::-webkit-input-placeholder,
.comment-form > p input::-ms-input-placeholder,
.comment-form > p input:-moz-placeholder,
.comment-form > p input::placeholder,
.comment-form > p textarea::-webkit-input-placeholder,
.comment-form > p textarea::-ms-input-placeholder,
.comment-form > p textarea:-moz-placeholder,
.comment-form > p textarea::placeholder {
  color: #444444;
}

.comment-form > p textarea {
  height: 80px;
}

.comment-form .form-submit {
  text-align: center;
}

.comment-form .form-submit #submit {
  background-image: linear-gradient(
    to top,
    #f93 0%,
    #ffd256 100%,
    #ffb50c 100%
  );
  width: 150px;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}

.comment-form .form-submit #submit:hover {
  background-image: linear-gradient(
    to bottom,
    #f93 0%,
    #ffd256 100%,
    #ffb50c 100%
  );
}

.commentlist {
  list-style: none;
  padding-left: 0;
}

.commentlist > li {
  border-bottom: 1px solid #0091f6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.commentlist > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.commentlist li > div {
  display: flex;
}

.commentlist li .vcard {
  margin-right: 15px;
}

.commentlist li cite.fn {
  width: 100%;
}

.commentlist li p {
  width: 100%;
  font-size: 16px;
  margin-bottom: 0;
}

.commentlist li .reply a {
  color: #b51b1b;
}

.commentlist .children {
  list-style: none;
  margin-top: 10px;
  padding-left: 55px;
}

.sidebar-button {
  display: block;
  font-size: 16px;
  color: #444444;
  background: #6bcd4d;
  text-align: center;
  padding: 15px 30px;
  margin: 15px auto;
  text-decoration: none;
  border: 1px solid #e9b963;
}

.sidebar-button:hover {
  filter: brightness(80%);
}

.btn-content {
  width: 100%;
  text-align: center;
  margin: 25px 0;
}

.btn-content .register-area-btn {
  margin: 0 !important;
  color: #ffffff;
  text-decoration: none;
}

.no-btn .logo {
  float: none;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.no-btn .games .slot a:nth-child(2) {
  top: 50%;
  transform: translateY(-100%);
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
}

.sitemap-page ul li {
  margin-bottom: 10px;
}

.add_rating {
  display: flex;
  margin: 10px 0;
}

.add_rating > div:first-child {
  margin-right: 25px;
  color: #444444;
}

.rate-rating.rate--easy {
  text-align: center;
  display: block;
  justify-content: center;
  max-width: 110px;
}

.rate-rating.rate--easy input {
  opacity: 0;
  display: none;
}

.star-rating {
  font-size: 0;
}

.rate-rating {
  display: inline-block;
  font-size: 1rem;
}

.rate-rating:after {
  content: "";
  display: table;
  clear: both;
}

.star-rating__ico {
  float: right;
  padding-left: 2px;
  cursor: pointer;
  color: #ffb50c;
}

.star-rating__ico:last-child {
  padding-left: 0;
}

.star-rating__input {
  display: none;
}

.star-rating__ico:hover:before,
.star-rating__ico:hover ~ .star-rating__ico:before,
.star-rating__input:checked ~ .star-rating__ico:before {
  content: "\f005";
}

.rating_user {
  display: flex;
  align-items: center;
}

.text_user_rating {
  margin-left: 15px;
}

.s-game {
  max-width: 800px;
  margin: 0 auto;
  display: none;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .s-game {
    display: block;
  }
}

.s-game__inner {
  position: relative;
  background-color: #444444;
}

.s-game__inner:after {
  content: "";
  display: block;
  padding-top: 75%;
}

.s-game__entry,
.s-game__inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.s-game__inner iframe {
  border: 0;
  outline: 0;
}

.s-game__img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  filter: blur(10px);
}

.s-game__btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}

.s-game__btn button {
  background-color: #c00;
  background-image: linear-gradient(to bottom, #c00 0%, #680000 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  line-height: 33px;
  color: #444444;
  text-transform: uppercase;
  box-shadow: inset 1px 1px 1px #e9b963, inset -1px -1px 1px #e9b963;
  border: none;
  cursor: pointer;
}

.s-game__btn:hover {
  opacity: 0.8;
}

.download-link {
  max-width: 200px;
  margin: 0 auto;
}

.download-link img:hover {
  outline: 1px solid #9ec632;
  box-shadow: 0px 0px 65px -7px #e9b963;
}

.crumbs {
  list-style-type: none;
  padding-left: 0;
  left: 0;
  float: none;
}

.crumbs.single {
  position: relative;
  left: 40px;
  padding: 10px 0;
}

.crumbs li:first-child {
  display: inline-block;
  margin-left: 0px !important;
}

.crumbs li {
  display: inline-block;
  margin: 0 0 0 10px !important;
}

.crumbs li a {
  color: #f00;
  text-decoration: none;
}

.crumbs li a:hover {
  text-decoration: underline;
}

.crumbs li span.crumbs__curr {
  cursor: default;
  color: #444444;
}

.crumbs li b {
  color: #444444;
}

.content a.green_txt {
  color: #c5ff4c;
}

.logo-strong {
  width: 273px;
  color: #f2d295;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content a.apk-btn {
  color: #444444;
}

#toc_container {
  margin: 15px 0;
}

#toc_container ul {
  list-style: none;
}

#toc_container ul a {
  text-decoration: none;
}

table {
  width: 100%;
  border-spacing: 5px;
}

table td {
  padding: 10px;
}

body {
  --wp--preset--color--#f7f7f5: #444444fff;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--#444444: #444444fff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(
    135deg,
    rgba(6, 147, 227, 1) 0%,
    rgb(155, 81, 224) 100%
  );
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(
    135deg,
    rgb(122, 220, 180) 0%,
    rgb(0, 208, 130) 100%
  );
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(
    135deg,
    rgba(252, 185, 0, 1) 0%,
    rgba(255, 105, 0, 1) 100%
  );
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(
    135deg,
    rgba(255, 105, 0, 1) 0%,
    rgb(207, 46, 46) 100%
  );
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(
    135deg,
    rgb(238, 238, 238) 0%,
    rgb(169, 184, 195) 100%
  );
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(
    135deg,
    rgb(74, 234, 220) 0%,
    rgb(151, 120, 209) 20%,
    rgb(207, 42, 186) 40%,
    rgb(238, 44, 130) 60%,
    rgb(251, 105, 98) 80%,
    rgb(254, 248, 76) 100%
  );
  --wp--preset--gradient--blush-light-purple: linear-gradient(
    135deg,
    rgb(255, 206, 236) 0%,
    rgb(152, 150, 240) 100%
  );
  --wp--preset--gradient--blush-bordeaux: linear-gradient(
    135deg,
    rgb(254, 205, 165) 0%,
    rgb(254, 45, 45) 50%,
    rgb(107, 0, 62) 100%
  );
  --wp--preset--gradient--luminous-dusk: linear-gradient(
    135deg,
    rgb(255, 203, 112) 0%,
    rgb(199, 81, 192) 50%,
    rgb(65, 88, 208) 100%
  );
  --wp--preset--gradient--pale-ocean: linear-gradient(
    135deg,
    rgb(255, 245, 203) 0%,
    rgb(182, 227, 212) 50%,
    rgb(51, 167, 181) 100%
  );
  --wp--preset--gradient--electric-grass: linear-gradient(
    135deg,
    rgb(202, 248, 128) 0%,
    rgb(113, 206, 126) 100%
  );
  --wp--preset--gradient--midnight: linear-gradient(
    135deg,
    rgb(2, 3, 129) 0%,
    rgb(40, 116, 252) 100%
  );

  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1),
    6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
  gap: 0.5em;
}

body .is-layout-flow > .alignleft {
  float: left;
  margin-inline-start: 0;
  margin-inline-end: 2em;
}

body .is-layout-flow > .alignright {
  float: right;
  margin-inline-start: 2em;
  margin-inline-end: 0;
}

body .is-layout-flow > .aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

body .is-layout-constrained > .alignleft {
  float: left;
  margin-inline-start: 0;
  margin-inline-end: 2em;
}

body .is-layout-constrained > .alignright {
  float: right;
  margin-inline-start: 2em;
  margin-inline-end: 0;
}

body .is-layout-constrained > .aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

body
  .is-layout-constrained
  > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}

body .is-layout-constrained > .alignwide {
  max-width: var(--wp--style--global--wide-size);
}

body .is-layout-flex {
  display: flex;
}

body .is-layout-flex {
  flex-wrap: wrap;
  align-items: center;
}

body .is-layout-flex > * {
  margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

.has-#f7f7f5-color {
  color: var(--wp--preset--color--#f7f7f5) !important;
}

.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-#444444-color {
  color: var(--wp--preset--color--#444444) !important;
}

.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}

.has-#f7f7f5-background-color {
  background-color: var(--wp--preset--color--#f7f7f5) !important;
}

.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-#444444-background-color {
  background-color: var(--wp--preset--color--#444444) !important;
}

.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-#f7f7f5-border-color {
  border-color: var(--wp--preset--color--#f7f7f5) !important;
}

.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-#444444-border-color {
  border-color: var(--wp--preset--color--#444444) !important;
}

.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: var(
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple
  ) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: var(
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan
  ) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: var(
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange
  ) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: var(
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red
  ) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: var(
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray
  ) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
  background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
  background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
  background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
  background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
  background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
  background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
  background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}

.wp-block-navigation a:where(:not(.wp-element-button)) {
  color: inherit;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

.wp-block-pullquote {
  font-size: 1.5em;
  line-height: 1.6;
}
td,
td,
tr,
table,
tbody {
  color: #444444;
  border: 1px dotted #444444;
}
