@charset "UTF-8";
.bloq_grid .link a, .community_block .link a, .index_games .link a, .index_first .link a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.bloq_grid .link a:hover::before, .community_block .link a:hover::before, .index_games .link a:hover::before, .index_first .link a:hover::before {
  background-color: #8b5cf6;
  left: 0;
  top: 0;
}
.bloq_grid .link a:hover span, .community_block .link a:hover span, .index_games .link a:hover span, .index_first .link a:hover span {
  color: #8b5cf6;
  background-color: #fff;
  top: 4px;
  left: 4px;
}
.bloq_grid .link a::before, .community_block .link a::before, .index_games .link a::before, .index_first .link a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.bloq_grid .link span, .community_block .link span, .index_games .link span, .index_first .link span {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #8b5cf6;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

html {
  min-height: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 12px;
  font-family: "Barlow", Arial, sans-serif;
  text-align: left;
  color: #000;
  background-color: #0f1024;
  overflow-y: overlay;
  overflow-x: clip;
  position: relative;
  touch-action: pan-y;
}

body.overflow {
  overflow: clip;
}

/* Custom scrollbar styles */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 2px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

:root {
  --app-height: 100%;
}

input, select, textarea {
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #fff;
  font-family: "Barlow", Arial, sans-serif;
}

/* Hide images with an empty src attribute */
img[src=""] {
  display: none;
}

img {
  max-width: 100%;
}

/* Full link element styles */
a.full_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

a {
  color: #1B69DE;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.main_header {
  width: 100%;
  height: 120px;
  font-size: 0;
  background-color: rgba(34, 27, 69, 0.25);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.main_header.show_me {
  height: 70px;
  background-color: rgba(34, 27, 69, 0.9);
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.1), 0 0 7px 0 rgba(0, 0, 0, 0.1);
}
.main_header.show_me .header_right {
  height: 70px;
}
.main_header.show_me .header_contact {
  height: 0;
}
.main_header.show_me .main_nav a {
  padding: 26px 20px;
}
.main_header section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px 20px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.logo {
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.logo a {
  display: inline-block;
  width: 180px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  background-image: url(../img/logo.webp);
}

.header_right {
  width: calc(100% - 280px);
  height: 120px;
  padding: 0 0 0 8px;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_right::before {
  content: "";
  display: block;
  width: 1px;
  height: 110%;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  top: -5%;
  transform: rotate(30deg);
}

.header_contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 0 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header_contact ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header_contact li {
  padding: 0 0 0 24px;
  margin: 0 48px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 20px;
}
.header_contact li.phone {
  background-image: url(../img/phone_icon.svg);
}
.header_contact li.location {
  background-image: url(../img/location_icon.svg);
}
.header_contact li a {
  color: currentColor;
  text-decoration: none;
}
.header_contact li a:hover {
  text-decoration: underline;
}

.social_links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0;
}
.social_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 0 0 24px;
  color: #fff;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.social_links a:hover {
  transform: translate(0, -2px);
}
.social_links a::before {
  content: "";
  display: block;
  width: 1px;
  height: 140%;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  right: -14px;
  top: -20%;
  transform: rotate(30deg);
}
.social_links img {
  width: 18px;
  height: 18px;
}
.social_links svg {
  width: 18px;
  height: 18px;
}
.social_links path {
  fill: currentColor;
}

.main_nav {
  height: 72px;
  font-size: 0;
  text-align: right;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.main_nav li {
  padding: 0 0 0 1px;
  display: inline-block;
}
.main_nav a {
  display: flex;
  align-items: center;
  height: auto;
  padding: 28px 20px 28px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.main_nav a:hover {
  color: #8b5cf6;
}

.toggler {
  display: none;
  padding: 0 0 0 32px;
  margin: 0 0 0 32px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.toggler strong {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
}
.toggler span {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
}
.toggler em {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.toggler em + em {
  top: calc(50% - 7px);
  width: 50%;
  left: 50%;
}
.toggler em + em + em {
  top: auto;
  left: 0;
  bottom: calc(50% - 7px);
}
.toggler.active em:first-child {
  width: 0;
  left: calc(50% - 0px);
}
.toggler.active em:first-child + em {
  width: 100%;
  left: 0;
  top: calc(50% - 1px);
}
.toggler.active em:first-child + em + em {
  width: 100%;
  bottom: calc(50% - 1px);
}
.toggler.active_second em:first-child + em {
  transform: rotate(135deg);
}
.toggler.active_second em:first-child + em + em {
  transform: rotate(225deg);
}

.index_first {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  min-height: 100vh;
  font-size: 0;
  position: relative;
}
.index_first .bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.index_first .bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.index_first .bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 16, 36, 0.9) 0%, rgba(15, 16, 36, 0.2) 100%);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.index_first section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.index_first h1 {
  padding: 0 0 24px;
  font-size: 86px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
  font-family: "Oswald";
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #8b5cf6;
}
.index_first p {
  font-size: 24px;
  line-height: 1.5;
  color: #8b5cf6;
  font-weight: 400;
  font-family: "Oswald";
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
}
.index_games {
  padding: 80px 0 120px;
}
.index_games section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.index_games header {
  padding: 0 0 48px;
  text-align: center;
  color: #fff;
}
.index_games h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Oswald";
  font-weight: 300;
}
.index_games h2 {
  padding: 6px 0 0;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}
.index_games .link {
  padding: 48px 0 0;
  text-align: center;
}

.games_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px 32px;
  font-size: 0;
}
.games_grid article {
  position: relative;
}
.games_grid article:hover h3 {
  opacity: 1;
  transform: scale(1);
}
.games_grid article:hover span::before {
  top: -8px;
}
.games_grid article:hover span::after {
  top: 0;
}
.games_grid article > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.games_grid img {
  width: 100%;
}
.games_grid .image {
  position: relative;
}
.games_grid h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  padding: 0 24px;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Oswald";
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 16px;
  top: 16px;
  opacity: 0;
  transform: scale(0.4);
  transition: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.games_grid span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 18px;
}
.games_grid span::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: calc(100% - 12px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.games_grid span::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 24px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 6px;
  top: 18px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.who_wrapper {
  padding: 0 0 80px;
}
.who_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.who_sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px;
}
.who_sides .image {
  padding: 0 48px 48px 64px;
  font-size: 0;
  position: relative;
}
.who_sides .image img {
  box-shadow: 0 0 0 6px #221b45;
}
.who_sides .image img + img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.who_sides .info {
  width: 140px;
  padding: 32px 24px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-family: "Oswald";
  background-color: #8b5cf6;
  box-shadow: inset 0 0 0 6px #221b45;
  position: absolute;
  left: 0;
  top: 48px;
}
.who_sides .info p {
  padding: 0 0 12px;
  font-size: 40px;
  font-weight: 600;
}
.who_sides .info span {
  line-height: 1.3;
}
.who_sides .inner {
  padding: 0 0 0 24px;
}
.who_sides header {
  padding: 0 0 48px;
  color: #fff;
}
.who_sides h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Oswald";
  font-weight: 300;
}
.who_sides h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}
.who_sides h5 {
  font-size: 16px;
  line-height: 1.4;
}
.who_sides ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 32px;
}
.who_sides li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.who_sides .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: #8b5cf6;
  border-radius: 50%;
}
.who_sides .inset {
  width: calc(100% - 70px);
  padding: 0 0 0 20px;
  color: #fff;
}
.who_sides h3 {
  padding: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}
.who_sides p {
  font-size: 16px;
  line-height: 1.3;
}

.players_wrapper {
  padding: 0 0 80px;
}
.players_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.players_wrapper header {
  padding: 0 0 48px;
  color: #fff;
  text-align: center;
}
.players_wrapper h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Oswald";
  font-weight: 300;
}
.players_wrapper h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}

.players_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
}
.players_grid figure {
  padding: 40px 24px;
  border: 6px solid #221b45;
  text-align: center;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.1) 50%, #8b5cf6 50%);
  position: relative;
}
.players_grid figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(115deg, black 0%, transparent 35%, transparent 65%, black 100%);
  mask-image: linear-gradient(115deg, black 0%, transparent 35%, transparent 65%, black 100%);
  pointer-events: none;
}
.players_grid .image {
  padding: 0 0 48px;
  position: relative;
}
.players_grid figcaption {
  position: relative;
}
.players_grid h3 {
  padding: 0 0 24px;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-family: "Oswald";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.players_grid ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.players_grid li img {
  border-radius: 50%;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.8);
}
.players_grid li a {
  display: inline-block;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.players_grid li a:hover {
  transform: translate(0, -4px);
}

.community_wrapper {
  padding: 40px 0 120px;
}
.community_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.community_block {
  font-size: 0;
  position: relative;
}
.community_block article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../img/community_bg.webp);
  position: relative;
}
.community_block header {
  padding: 0 0 24px;
  color: #fff;
}
.community_block h4 {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.community_block h2 {
  font-size: 28px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}
.community_block p {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.community_block .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  padding: 40px;
}
.community_block em {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 18px;
}
.community_block em::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: calc(100% - 12px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.community_block em::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 24px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 6px;
  top: 18px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.bloqs_wrapper {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../img/bloqs_bg.webp);
  position: relative;
}
.bloqs_wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #2b1f4f 0%, rgba(43, 31, 79, 0.8) 50%, #2b1f4f 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.bloqs_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.bloqs_wrapper header {
  padding: 0 0 40px;
  color: #fff;
  text-align: center;
}
.bloqs_wrapper h4 {
  padding: 0 0 4px;
  font-size: 18px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Oswald";
}
.bloqs_wrapper h2 {
  font-size: 40px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}

.bloq_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
  font-size: 0;
}
.bloq_grid article {
  padding: 12px;
  background-color: rgba(34, 27, 69, 0.75);
  backdrop-filter: blur(4px);
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.25);
}
.bloq_grid .inner {
  padding: 24px 12px 20px;
  color: #fff;
}
.bloq_grid h3 {
  padding: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}
.bloq_grid ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 20px;
  font-size: 16px;
}
.bloq_grid li {
  padding: 2px 0 2px 48px;
  position: relative;
}
.bloq_grid li:first-child {
  padding: 0;
}
.bloq_grid li:first-child::before {
  display: none;
}
.bloq_grid li::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 24px;
  top: 0;
}
.bloq_grid p {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.footer_first {
  padding: 0 0 40px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../img/footer_bg.webp);
  position: relative;
}
.footer_first section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px 0;
  position: relative;
}
.footer_first .logo {
  padding: 0 0 16px;
}
.footer_first article {
  min-width: 240px;
}
.footer_first h3 {
  padding: 0 0 24px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.footer_first h5 {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

.footer_contacts {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_contacts ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer_contacts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_contacts li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_contacts .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
}
.footer_contacts p {
  width: calc(100% - 40px);
  padding: 0 0 0 16px;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
}
.footer_contacts p a {
  color: currentColor;
  text-decoration: none;
}
.footer_contacts p a:hover {
  text-decoration: underline;
}

.games_list {
  font-size: 0;
}
.games_list article {
  display: grid;
  grid-template-columns: 80px calc(100% - 80px);
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 0;
  padding: 0 0 12px;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.games_list article:last-child {
  border: none;
}
.games_list article:hover h4 {
  color: #8b5cf6;
}
.games_list article:hover .image {
  box-shadow: 0 0 3px 1px rgba(139, 92, 246, 0.6);
}
.games_list article:hover img {
  transform: scale(1.1) rotate(5deg);
}
.games_list .image {
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.games_list .image img {
  width: 100%;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.games_list h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.games_list a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.disclamer h3 {
  padding: 0 0 12px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.disclamer p {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.subscribe_form {
  max-width: 600px;
}
.subscribe_form div {
  margin: 0 0 24px;
  position: relative;
}
.subscribe_form input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin: 0 0 16px;
  border: none;
  border: 1px solid #221b45;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background-color: #221b45;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.subscribe_form input:focus {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.subscribe_form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.subscribe_form .button {
  padding: 2px 0 0 4px;
}
.subscribe_form .button button {
  display: inline-block;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  text-decoration: none;
}
.subscribe_form .button button:hover::before {
  background-color: #8b5cf6;
  left: 0;
  top: 0;
}
.subscribe_form .button button:hover span {
  color: #8b5cf6;
  background-color: #fff;
  top: 4px;
  left: 4px;
}
.subscribe_form .button button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.subscribe_form .button span {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #8b5cf6;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.copyright {
  padding: 0 0;
  background-color: rgba(255, 255, 255, 0.05);
}
.copyright p {
  padding: 24px 20px;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.copyright strong {
  font-weight: 500;
}

.inner_first {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 40px;
  padding: 280px 0 120px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  position: relative;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1);
}
.inner_first.compact {
  padding: 180px 0 30px;
}
.inner_first.compact section {
  position: static;
}
.inner_first.compact h1 {
  font-size: 36px;
}
.inner_first section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.inner_first h1 {
  padding: 0 0 12px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  font-family: "Oswald";
  text-transform: uppercase;
}
.inner_first h3 {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 12px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1px;
}
.inner_first ul {
  font-size: 16px;
  line-height: 1.5;
  color: #8b5cf6;
  font-weight: 400;
  text-transform: uppercase;
}
.inner_first ul a {
  color: #fff;
  text-decoration: none;
}
.inner_first li {
  display: inline-block;
}
.inner_first li:last-child::after {
  display: none;
}
.inner_first li::after {
  content: "/";
  display: inline-block;
  margin: 0 8px;
  color: #fff;
}
.inner_first p {
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #8b5cf6;
  position: absolute;
  right: 0;
  top: 120px;
}
.inner_first p strong {
  color: #fff;
}
.inner_first .date {
  padding: 0 0 8px;
}
.inner_first time {
  display: inline-block;
  padding: 0 0 0 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-image: url(../img/date_icon%EF%B9%96v=2.svg);
  background-size: 20px;
}

.video_wrapper {
  padding: 80px 0;
}
.video_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.video_wrapper header {
  padding: 0 0 48px;
  color: #fff;
  text-align: center;
}
.video_wrapper h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Oswald";
  font-weight: 300;
}
.video_wrapper h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}

.video_block {
  border: 8px solid #221b45;
  font-size: 0;
  position: relative;
}
.video_block a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  background-image: url(../img/play_icon.svg);
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  border-radius: 50%;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.video_block a:hover::before {
  transform: scale(1.3);
}
.video_block a:hover::after {
  transform: scale(1.6);
}
.video_block a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: inset 0 0 1px 10px rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.video_block a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: inset 0 0 1px 0 #fff;
  border-radius: 50%;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.partners_wrapper {
  padding: 80px 0;
}
.partners_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.partners_wrapper header {
  padding: 0 0 32px;
  color: #fff;
  text-align: center;
}
.partners_wrapper h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Oswald";
  font-weight: 300;
}
.partners_wrapper h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}

.partners_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 32px;
  font-size: 0;
  text-align: center;
}
.partners_grid img {
  height: 64px;
}

.contacts_first {
  padding: 120px 0;
  background: radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(34, 27, 69, 0.5) 0%, transparent 60%);
}
.contacts_first section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.contacts_first header {
  padding: 0 0 32px;
  color: #fff;
  text-align: center;
}
.contacts_first h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #8b5cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Oswald";
  font-weight: 300;
}
.contacts_first h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}

.contacts_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
  text-align: center;
  color: #fff;
}
.contacts_grid article {
  padding: 40px 20px;
  background-color: #221b45;
  position: relative;
  border-radius: 4px;
}
.contacts_grid .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #8b5cf6;
  border-radius: 50%;
  position: relative;
}
.contacts_grid .icon::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(139, 92, 246, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-name: ripple;
  animation-duration: 2s;
  animation-delay: 0.3s;
  animation-iteration-count: infinite;
}
.contacts_grid .icon::after {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(139, 92, 246, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-name: ripple;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}
.contacts_grid h3 {
  padding: 24px 0 4px;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Oswald";
}
.contacts_grid h3 a {
  color: currentColor;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.contacts_grid h3 a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.contacts_grid p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.contacts_grid p a {
  color: currentColor;
  text-decoration: none;
}
.contacts_grid p a:hover {
  text-decoration: underline;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
.contacts_second {
  padding: 110px 0;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/contact_bg.webp);
  background-attachment: fixed;
}
.contacts_second section {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.contacts_second h2 {
  padding: 0 0 40px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Oswald";
  text-align: center;
  color: #fff;
}

.form_side {
  max-width: 900px;
  margin: 0 auto;
}

.form_item {
  position: relative;
  text-align: center;
}
.form_item input {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  background-color: rgba(34, 27, 69, 0.6);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_item input:focus {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: #fff !important;
}
.form_item textarea {
  display: block;
  width: 100%;
  height: 160px;
  padding: 16px 20px;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  background-color: rgba(34, 27, 69, 0.6);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_item textarea:focus {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: #fff !important;
}
.form_item .button {
  padding: 2px 0 0 4px;
}
.form_item .button button {
  display: inline-block;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  text-decoration: none;
}
.form_item .button button:hover::before {
  background-color: #8b5cf6;
  left: 0;
  top: 0;
}
.form_item .button button:hover span {
  color: #8b5cf6;
  background-color: #fff;
  top: 4px;
  left: 4px;
}
.form_item .button button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_item .button span {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #8b5cf6;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_item span {
  position: relative;
}

.form_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.form_grid .form_item {
  width: calc(50% - 12px);
}
.form_grid .form_item.full {
  width: 100%;
}

.games_wrapper {
  padding: 40px 0 120px;
  background: radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(34, 27, 69, 0.5) 0%, transparent 60%);
}
.games_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.simple_wrapper {
  padding: 40px 0;
  overflow: hidden;
  background: radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(34, 27, 69, 0.5) 0%, transparent 60%);
  background-attachment: fixed;
}
.simple_wrapper section {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

.simple_text {
  padding: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-color: #221b45;
  position: relative;
}
.simple_text h3 {
  padding: 0 0 12px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.simple_text p {
  padding: 0 0 16px;
  color: #fff;
}
.simple_text ul {
  padding: 0 0 16px;
}
.simple_text li {
  padding: 0 0 0 16px;
  margin: 0 0 8px;
  position: relative;
}
.simple_text li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #8b5cf6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.simple_text figure {
  width: calc(100% + 64px);
  margin: 0 0 16px -32px;
  font-size: 0;
  position: relative;
}
.simple_text figure img {
  width: 100%;
}
.simple_text figcaption {
  max-width: calc(100% - 64px);
  padding: 8px 16px;
  font-size: 12px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 32px;
  bottom: 12px;
  backdrop-filter: blur(6px);
}
.simple_text strong {
  font-weight: 700;
}
.simple_text em {
  font-style: italic;
}
.simple_text dl {
  margin: 0 0 24px;
  padding: 12px 0;
  font-size: 14px;
  border-left: 2px solid #fff;
  background-color: #8b5cf6;
}
.simple_text dt {
  padding: 0 0 0 12px;
  font-weight: 500;
  color: #fff;
}
.simple_text dd {
  padding: 0 0 8px 24px;
  color: #fff;
  font-weight: 400;
}
.simple_text blockquote {
  position: relative;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  padding: 20px 20px;
  margin: 0 0 20px;
  border-left: 4px solid #fff;
  background: #8b5cf6;
}
.simple_text blockquote::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 10px;
  font-size: 3rem;
  color: #fff;
  font-family: serif;
}
.simple_text blockquote::after {
  content: "”";
  position: absolute;
  bottom: -24px;
  right: 10px;
  font-size: 3rem;
  color: #fff;
  font-family: serif;
}

.index_gradient {
  background: radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(34, 27, 69, 0.5) 0%, transparent 60%);
  background-attachment: fixed;
}

.disclamer_wrapper {
  padding: 80px 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.disclamer_wrapper section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.disclamer_wrapper header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 40px;
}
.disclamer_wrapper h2 {
  padding: 0 0 8px;
  font-size: 40px;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Oswald";
}
.disclamer_wrapper h4 {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  letter-spacing: 1px;
}
.disclamer_wrapper .image {
  text-align: center;
}
.disclamer_wrapper .image img {
  width: 400px;
}

.game_wrapper {
  height: 100vh;
  font-size: 0;
  position: relative;
}
.game_wrapper iframe {
  width: 100%;
  height: 100vh;
}