@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

img {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit"), url("../fonts/OutfitRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit"), url("../fonts/OutfitMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit"), url("../fonts/OutfitBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit"), url("../fonts/OutfitExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #0B0F1A;
  --color-whitedark: #0E131E;
  --color-white: #fff;
  --color-pink: #9260FE;
  --color-pink90: rgba(146,96,254, 0.9);
  --color-pinkhover: #7338f3;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--color-white);
  background: var(--color-dark);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 600px 600px at 5% 5%, rgba(139, 92, 246, 0.12) 0%, transparent 70%), radial-gradient(ellipse 500px 500px at 95% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  pointer-events: none;
}

::-moz-selection {
  background: var(--color-pink);
  color: #fff;
}

::selection {
  background: var(--color-pink);
  color: #fff;
}

::-moz-selection {
  background: var(--color-pink);
  color: #fff;
}

main {
  width: 100%;
  position: relative;
  margin-top: 10px;
}
@media (max-width: 1179px) {
  main {
    margin-top: 67px;
  }
}
@media (max-width: 380px) {
  main {
    margin-top: 100px;
  }
}

.container-x1 {
  max-width: 1880px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  position: relative;
}

.default-button {
  padding-left: 22px;
  padding-right: 22px;
  height: 50px;
  border: 2px solid var(--color-pink);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.32px;
  background: unset;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.default-button > img {
  margin-right: 10px;
  max-width: 21px;
}
.default-button.b-catalog {
  background: var(--color-pink);
  transition: unset;
}
.default-button.b-black {
  background: rgba(255, 255, 255, 0.1);
  border: unset;
}
.default-button.b-blackmore {
  background: rgba(255, 255, 255, 0.05);
  border: unset;
}
.default-button.b-form {
  background: var(--color-pink);
  border: 0;
}
.default-button:hover {
  background: var(--color-pink);
}
.default-button:hover.b-form {
  background: var(--color-pinkhover);
}
@media (max-width: 770px) {
  .default-button > P {
    display: none;
  }
  .default-button:not(.b-catalog) > img {
    margin: 0;
  }
  .default-button.b-catalog {
    width: 100%;
  }
}

.button-50,
.button-39 {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: solid 2px var(--color-pink);
  transition: all 0.3s ease;
}
.button-50:before,
.button-39:before {
  content: "";
  width: 18px;
  height: 18px;
}
.button-50.chat:before,
.button-39.chat:before {
  background: url(../images/chat.svg) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 570px) {
  .button-50.chat,
  .button-39.chat {
    display: none;
  }
}
.button-50.burgermenu,
.button-39.burgermenu {
  margin-left: 10px;
}
.button-50.burgermenu:before,
.button-39.burgermenu:before {
  background: url(../images/burger.svg) no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 17px;
}
.button-50.burgermenu.b-active:before,
.button-39.burgermenu.b-active:before {
  background: url(../images/close.svg) no-repeat;
  background-size: 100% 100%;
  width: 16.2px;
  height: 16.2px;
}
@media (min-width: 1180px) {
  .button-50.burgermenu,
  .button-39.burgermenu {
    display: none;
  }
}
.button-50.telegram:before,
.button-39.telegram:before {
  background: url(../images/telegram.svg) no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}
.button-50.vk:before,
.button-39.vk:before {
  background: url(../images/vk.svg) no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}
.button-50.email:before,
.button-39.email:before {
  background: url(../images/email.svg) no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}
.button-50:hover,
.button-39:hover {
  background: var(--color-pink);
}

.button-39 {
  width: 39px;
  height: 39px;
}

header {
  width: 100%;
  position: relative;
  z-index: 23;
}
header .header-navbar {
  width: 100%;
  height: 80px;
  border-radius: 20px;
  background: var(--color-whitedark);
  padding-left: 21px;
  padding-right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-navbar .nav-left,
header .header-navbar .nav-right {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
header .header-navbar .navbar-brand {
  margin-right: 70px;
  width: 163px;
  height: 39px;
  position: relative;
}
header .header-navbar .navbar-brand > img {
  width: 100%;
  height: 100%;
}
@media (max-width: 770px) {
  header .header-navbar .navbar-brand {
    margin-right: 5px;
  }
}
header .header-navbar .my-payments {
  padding-left: 31px;
  padding-right: 31px;
  height: 50px;
  border-radius: 6px;
  border: 2px solid var(--color-pink);
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 10px;
  color: #fff;
  font-weight: 400;
  transition: all 0.3s ease;
}
header .header-navbar .my-payments:hover {
  background: var(--color-pink);
}
@media (max-width: 770px) {
  header .header-navbar .my-payments {
    display: none;
  }
}
header .header-navbar .dropdown-list {
  display: flex;
  margin-right: 10px;
}
header .header-navbar .dropdown-list > li {
  margin-right: 10px;
  border-radius: 6px;
  background: #111A25;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0);
  cursor: pointer;
}
header .header-navbar .dropdown-list > li:last-child {
  margin-right: 0;
}
header .header-navbar .dropdown-list > li:hover {
  border: 1px solid #561DD0;
  border-radius: 6px 6px 2px 2px;
}
header .header-navbar .dropdown-list > li > p {
  text-align: center;
}
header .header-navbar .dropdown-list > li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -3px;
}
header .header-navbar .dropdown-list > li .dropdown {
  position: absolute;
  top: 51px;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 2px 2px 6px 6px;
  background: #111A25;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
header .header-navbar .dropdown-list > li .dropdown > li {
  margin-bottom: 4px;
  text-align: center;
  position: relative;
  width: 100%;
}
header .header-navbar .dropdown-list > li .dropdown > li:last-child {
  margin-bottom: 0;
}
header .header-navbar .dropdown-list > li .dropdown > li > a {
  width: 100%;
  display: block;
}
header .header-navbar .dropdown-list > li .dropdown > li:hover > a {
  color: var(--color-pink);
}
header .header-navbar .dropdown-list > li .dropdown:hover {
  opacity: 1;
  pointer-events: all;
}
header .header-navbar .dropdown-list > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 570px) {
  header .header-navbar .dropdown-list {
    display: none;
  }
}
header .catalogline-navbar {
  width: 100%;
  height: 80px;
  border-radius: 20px;
  background: var(--color-whitedark);
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 21px;
  padding-right: 18px;
  /*
  @include f380 {
      flex-direction: column;
  }
  */
}
header .catalogline-navbar > .nav-left, header .catalogline-navbar > .nav-right {
  display: flex;
  align-items: center;
  width: 100%;
}
header .catalogline-navbar > .nav-right {
  margin-left: 21px;
  width: unset;
  text-wrap: nowrap;
}
@media (max-width: 380px) {
  header .catalogline-navbar > .nav-right {
    margin-left: unset;
    width: 100%;
    position: relative;
    margin-top: 10px;
  }
}
header .catalogline-navbar .catalog-wrapper {
  position: relative;
}
header .catalogline-navbar .catalog-wrapper .catalog-list-wrapper {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  padding-top: 10px;
  position: absolute;
  top: 45px;
}
header .catalogline-navbar .catalog-wrapper .catalog-list {
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--color-pink90);
  width: -moz-max-content;
  width: max-content;
  display: flex;
  border-radius: 10px;
}
@media (max-width: 770px) {
  header .catalogline-navbar .catalog-wrapper .catalog-list {
    flex-direction: column;
  }
}
header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block {
  width: 257px;
}
@media (max-width: 380px) {
  header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block {
    width: 180px;
  }
}
@media (max-width: 770px) {
  header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block {
    margin-bottom: 20px;
  }
  header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block:last-child {
    margin-bottom: 0px;
  }
}
header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block .name-block {
  font-weight: 700;
  width: 100%;
  white-space: nowrap;
  font-size: 18px;
}
header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block .list-block {
  margin-top: 10px;
}
header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block .list-block > li {
  font-size: 17px;
  line-height: 15px;
  margin-bottom: 15px;
  letter-spacing: 0.28px;
}
header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block .list-block > li:hover {
  text-decoration: underline;
}
header .catalogline-navbar .catalog-wrapper .catalog-list .catalog-block .list-block > li:last-child {
  margin-bottom: 0px;
}
header .catalogline-navbar .catalog-wrapper.show .catalog-list-wrapper {
  opacity: 1;
  pointer-events: auto;
}
header .catalogline-navbar .search-wrapper {
  width: 100%;
  position: relative;
  margin-left: 17px;
  margin-right: 21px;
}
@media (max-width: 1179px) {
  header .catalogline-navbar .search-wrapper {
    left: 0;
    bottom: -60px;
    margin: 0;
    position: absolute;
    margin-left: unset;
    margin-right: unset;
  }
}
@media (max-width: 380px) {
  header .catalogline-navbar .search-wrapper {
    bottom: -90px;
  }
}
header .catalogline-navbar .search-wrapper:last-child {
  margin-right: unset;
}
header .catalogline-navbar .search-result {
  width: 100%;
  padding-top: 21px;
  padding-bottom: 21px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #0E131E;
  position: absolute;
  top: 55px;
}
header .catalogline-navbar .search-result .search-list .search-item {
  display: flex;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding-left: 21px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .catalogline-navbar .search-result .search-list .search-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
header .catalogline-navbar .search-result .search-list .search-item .game-img {
  width: 150px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .catalogline-navbar .search-result .search-list .search-item .game-img .out-of-stock {
  position: absolute;
  background: #c0392b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
header .catalogline-navbar .search-result .search-list .search-item .game-img > img {
  width: 150px;
  border-radius: 8px;
}
header .catalogline-navbar .search-result .search-list .search-item .game-info {
  margin-left: 20px;
}
header .catalogline-navbar .search-result .search-list .search-item .game-info .game-name {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  margin-bottom: 9px;
}
header .catalogline-navbar .search-result .search-list .search-item .game-info .game-price {
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 8px;
  background: #0B0F1A;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  height: 39px;
  width: -moz-fit-content;
  width: fit-content;
}
header .catalogline-navbar .search-result .search-list .search-item .game-info .game-price > span {
  margin-right: 10px;
  text-decoration-line: line-through;
  opacity: 0.5;
}
header .catalogline-navbar .search-game {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 21px;
  padding-right: 21px;
  position: relative;
}
header .catalogline-navbar .search-game .search-button {
  height: 30px;
  width: 30px;
  position: absolute;
  right: 10px;
  background: unset;
  border: unset;
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
header .catalogline-navbar .search-game .search-button:hover {
  opacity: 0.6;
}
header .catalogline-navbar .search-game > input {
  width: 100%;
  background: 0;
  border: none;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.32px;
  font-weight: 500;
  box-shadow: 0;
  outline: none;
}
header .catalogline-navbar .button-list {
  display: flex;
}
@media (max-width: 380px) {
  header .catalogline-navbar .button-list {
    width: 100%;
    position: relative;
  }
}
header .catalogline-navbar .button-list > .default-button {
  margin-right: 16px;
}
@media (max-width: 380px) {
  header .catalogline-navbar .button-list > .default-button {
    width: 100%;
  }
}
header .catalogline-navbar .button-list > .default-button:last-child {
  margin-right: 0;
}

.wrapper-burgermenu {
  background: red;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-dark);
  padding-top: 238px;
  display: none;
  z-index: 22;
}
.wrapper-burgermenu.b-active {
  display: block;
}
.wrapper-burgermenu .menu-list {
  text-align: center;
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 70px;
}
.wrapper-burgermenu .menu-list > li {
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 10px;
  position: relative;
  line-height: 40px;
}
.wrapper-burgermenu .menu-list > li a {
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
}
.wrapper-burgermenu .menu-list > li:hover a {
  color: var(--color-pink);
}
.wrapper-burgermenu .menu-list > li:last-child {
  margin-bottom: 0;
}
.wrapper-burgermenu .social-list {
  display: flex;
  position: absolute;
  bottom: 28px;
  width: 100%;
  justify-content: center;
}
.wrapper-burgermenu .social-list > li {
  margin-right: 15.6px;
}
.wrapper-burgermenu .social-list > li:last-child {
  margin-right: 0;
}

.default-menu {
  display: flex;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}
.default-menu li {
  margin-right: 20px;
  height: 100%;
  position: relative;
}
.default-menu li:last-child {
  margin-right: 0;
}
.default-menu li > a {
  color: #7E8895;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
  padding-left: 10px;
  padding-right: 10px;
  /*
  text-wrap: nowrap;
  */
}
.default-menu li:hover a {
  color: var(--color-pink);
}
@media (max-width: 1179px) {
  .default-menu.top-menu {
    display: none;
  }
}
@media (max-width: 1179px) {
  .default-menu.s-footer {
    width: 100%;
  }
}
@media (max-width: 1179px) {
  .default-menu.s-footer li {
    padding: 10px;
    margin-right: unset;
  }
}

footer {
  margin-top: 11px;
  width: 100%;
  margin-top: 78px;
  height: 100px;
  /*
  background: red;
  */
}
footer .footer-content-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.05);
  position: relative;
}
@media (max-width: 1179px) {
  footer .footer-content-navbar {
    align-items: start;
    padding-bottom: 20px;
  }
}
footer .footer-content-navbar .nav-left {
  display: flex;
  align-items: center;
}
@media (max-width: 1179px) {
  footer .footer-content-navbar .nav-left {
    align-items: start;
    flex-direction: column;
    width: 100%;
  }
}
footer .footer-content-navbar .default-menu {
  margin-left: 71px;
}
@media (max-width: 1179px) {
  footer .footer-content-navbar .default-menu {
    margin-left: unset;
    margin-top: 33px;
    justify-content: center;
  }
}
footer .footer-content-navbar .nav-right .social-list {
  display: flex;
  align-items: center;
}
@media (max-width: 1179px) {
  footer .footer-content-navbar .nav-right .social-list {
    position: absolute;
    right: 0;
  }
}
footer .footer-content-navbar .nav-right .social-list > li {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border-radius: 6px;
  border: 2px solid var(--color-pink);
  transition: all 0.3s ease;
}
footer .footer-content-navbar .nav-right .social-list > li:last-child {
  margin-right: 0px;
}
footer .footer-content-navbar .nav-right .social-list > li:hover {
  background: var(--color-pink);
}
footer .footer-content-navbar .nav-right .social-list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-content-navbar .nav-right .social-list > li img {
  width: 20px;
}
footer .steamall-copyright {
  padding-top: 63px;
  padding-bottom: 63px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
footer .steamall-copyright > p {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.3px;
}
footer .steamall-copyright > p > span {
  text-transform: uppercase;
}

.slide-arrow {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  border: 2px solid var(--color-pink);
  background: var(--color-whitedark);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slide-arrow:before {
  content: "";
  background: url(../images/arrow.svg) no-repeat;
  background-size: 100% 100%;
  width: 8px;
  height: 8px;
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.slide-arrow.slide-right:before {
  transform: rotate(0deg);
}
.slide-arrow:hover {
  background: var(--color-pink);
}
.slide-arrow:hover:before {
  filter: brightness(0) saturate(100%);
}

.game-slider .slide-arrow {
  z-index: 1;
  position: absolute;
}
.game-slider .slide-arrow.slide-left {
  left: 20px;
}
.game-slider .slide-arrow.slide-right {
  right: 20px;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.default-section {
  border-radius: 10px;
  background: var(--color-whitedark);
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.default-section .header-section {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 30px;
}
.default-section .header-section h3 {
  margin-bottom: unset;
  margin-left: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1179px) {
  .default-section .header-section h3 {
    flex-direction: column;
    align-items: unset;
  }
}
.default-section .header-section .arrow-list {
  display: flex;
}
.default-section .header-section .arrow-list > button {
  margin-right: 10px;
}
.default-section .header-section .arrow-list > button:last-child {
  margin-right: 0px;
}
.default-section h3 {
  color: #FFF;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 1179px) {
  .default-section h3 {
    font-size: 15px;
  }
}
.default-section.no-bg {
  background: unset;
  padding: unset;
}
.default-section .section-header {
  width: 100%;
  margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 5px;
}
.default-section .section-header .enter-tab {
  display: flex;
  align-items: center;
}
.default-section .section-header .enter-tab li {
  margin-right: 32px;
  cursor: pointer;
}
.default-section .section-header .enter-tab li > h3 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 1179px) {
  .default-section .section-header .enter-tab li > h3 {
    font-size: 15px;
  }
}
.default-section .section-header .enter-tab li:last-child {
  margin-right: 0px;
}
.default-section .section-header .enter-tab li.active > h3 {
  color: rgb(255, 255, 255);
}
.default-section .section-header .enter-tab li:hover:not(.active) > h3 {
  color: var(--color-pink);
}

.reviews-section {
  display: flex;
  margin-top: 10px;
  overflow: hidden;
}
.reviews-section .reviews-list {
  display: flex;
}
.reviews-section .reviews-item {
  width: 453px;
  height: 212px;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  margin-right: 9px;
  padding: 18px;
  padding-bottom: 25px;
}
.reviews-section .reviews-item .header-review {
  display: flex;
  justify-content: space-between;
}
.reviews-section .reviews-item .header-review .type-review {
  padding-left: 15px;
  padding-right: 15px;
  height: 39px;
  border-radius: 8px;
  background: rgba(109, 244, 134, 0.19);
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-section .reviews-item .header-review .type-review.minus {
  background: rgba(244, 136, 109, 0.19);
}
.reviews-section .reviews-item .header-review .date {
  height: 27px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
}
.reviews-section .reviews-item .text-review {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.36px;
  margin-top: 30px;
  max-height: 54px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.reviews-section .reviews-item .goto-item {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: absolute;
  bottom: 25px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  cursor: pointer;
}
.reviews-section .reviews-item .goto-item:before {
  content: "";
  background: url(../images/steam.svg) no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.reviews-section .reviews-item .goto-item:hover {
  color: var(--color-pinkhover);
}
.reviews-section .reviews-item:last-child {
  margin-right: 0px;
}

.advices-section {
  display: flex;
  margin-top: 10px;
  overflow: hidden;
}

.advantages-section {
  margin-top: 10px;
}
.advantages-section .advantages-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1450px) {
  .advantages-section .advantages-row {
    justify-content: center;
  }
}
.advantages-section .advantages-row .advantages-item {
  height: 207px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 14px;
  padding-right: 14px;
}
@media (max-width: 770px) {
  .advantages-section .advantages-row .advantages-item {
    height: 130px;
  }
}
.advantages-section .advantages-row .advantages-item p {
  margin-top: 33px;
  text-align: center;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
@media (max-width: 770px) {
  .advantages-section .advantages-row .advantages-item p {
    font-size: 11px;
  }
}
.advantages-section .advantages-row .advantages-item img {
  height: 52px;
}
@media (max-width: 770px) {
  .advantages-section .advantages-row .advantages-item img {
    height: 31px;
  }
}
.advantages-section .advantages-row .advantages-item:last-child {
  margin-right: 0px;
}

.aboutthestore-section {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  position: relative;
}
.aboutthestore-section h3, .aboutthestore-section h1 {
  color: #FFF;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 1179px) {
  .aboutthestore-section h3, .aboutthestore-section h1 {
    font-size: 15px;
  }
}
@media (max-width: 1450px) {
  .aboutthestore-section {
    justify-content: unset;
    display: block;
  }
}
.aboutthestore-section .payments-methods {
  border-radius: 10px;
  background: var(--color-whitedark);
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 10px;
  padding-top: 18px;
  width: 100%;
  padding-bottom: 29px;
}
@media (max-width: 1450px) {
  .aboutthestore-section .payments-methods {
    margin-right: unset;
    margin-bottom: 10px;
  }
}
.aboutthestore-section .payments-methods:last-child {
  margin-right: 0px;
}
.aboutthestore-section .payments-methods .payments-list {
  display: flex;
  gap: 2rem 2.375rem;
  flex-wrap: wrap;
  justify-content: center;
}
.aboutthestore-section .payments-methods .payments-list > li > li:last-child {
  margin-right: 0px;
}
.aboutthestore-section .payments-methods .payments-list > li > img {
  height: 40px;
}
.aboutthestore-section .about-block {
  width: 100%;
  padding-left: 20px;
  padding-top: 18px;
  padding-bottom: 29px;
  padding-right: 77px;
  border-radius: 10px;
  background: var(--color-whitedark);
  position: relative;
}
.aboutthestore-section .about-block .desc-text {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.3px;
  position: relative;
  max-height: 115px;
  overflow: hidden;
  transition: height 0.15s ease;
}
.aboutthestore-section .about-block .desc-text.more-text {
  max-height: 2000px !important;
}
.aboutthestore-section .about-block .desc-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(14, 19, 30, 0) 0%, #0E131E 100%);
}
.aboutthestore-section .about-block .button-read {
  color: var(--color-pink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-top: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.aboutthestore-section .about-block .button-read:hover {
  color: var(--color-pink);
}

.modal-gallery {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-gallery .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 66px;
  font-weight: 400;
  cursor: pointer;
}
.modal-gallery .close:focus, .modal-gallery .close:hover {
  color: #bbb;
  text-decoration: none;
}
.modal-gallery .modal-content {
  margin: auto;
  display: block;
  width: 70%;
}
@media (max-width: 1179px) {
  .modal-gallery .modal-content {
    width: 100%;
  }
}

.games-list.filter {
  /*
  justify-content: center;
  */
}

.game-item {
  width: 302px;
  height: 168px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: calc((100% - 60px) / 6);
  margin: 5px;
  cursor: pointer;
}
.game-item .out-of-stock {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c0392b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.game-item.hidden {
  display: none;
}
.game-item.filter {
  width: calc((100% - 50px) / 4);
}
@media (max-width: 1700px) {
  .game-item {
    width: calc((100% - 50px) / 5);
  }
  .game-item.filter {
    width: calc((100% - 50px) / 4);
  }
}
@media (max-width: 1420px) {
  .game-item {
    width: calc((100% - 40px) / 4);
  }
}
@media (max-width: 1160px) {
  .game-item {
    width: calc((100% - 30px) / 3);
  }
  .game-item.filter {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 890px) {
  .game-item {
    width: calc((100% - 20px) / 2);
  }
  .game-item.filter {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 620px) {
  .game-item {
    width: 100%;
    height: 251px;
  }
  .game-item.filter {
    width: 100%;
    height: 251px;
  }
}
@media (max-width: 500px) {
  .game-item {
    height: 200px;
  }
  .game-item.filter {
    height: 200px;
  }
}
@media (max-width: 410px) {
  .game-item {
    height: 160px;
  }
  .game-item.filter {
    height: 160px;
  }
}
@media (max-width: 340px) {
  .game-item {
    height: 150px;
  }
  .game-item.filter {
    height: 150px;
  }
}
.game-item::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 11;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-item:hover:after, .game-item:active:after {
  opacity: 1;
}
.game-item > .game-shadow {
  width: 100%;
  height: 80%;
  display: block;
  position: absolute;
  z-index: 3;
  bottom: 0px;
  border-radius: 0 0 10px 10px;
}
.game-item > .game-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.game-item > .game-img > img {
  width: 100%;
}
.game-item > .platform-icon {
  position: absolute;
  left: 14px;
  top: 15px;
  width: 20px;
  height: 20px;
}
.game-item > .platform-icon.steam {
  background: url(../images/steam.svg) no-repeat;
  background-size: 100% 100%;
}
.game-item > .block-info {
  position: absolute;
  z-index: 11;
  padding-left: 14px;
  padding-right: 14px;
  width: 100%;
  left: 0;
  bottom: 12px;
}
.game-item > .block-info > .game-name {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
}
@media (max-width: 340px) {
  .game-item > .block-info > .game-name {
    font-size: 14px;
  }
}
.game-item > .block-info > .game-price {
  padding-left: 15px;
  padding-right: 15px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 13px;
}
.game-item > .block-info > .game-price > span {
  margin-right: 10px;
  opacity: 0.5;
  text-decoration-line: line-through;
}

.advices-list {
  display: flex;
}
.advices-list .game-item {
  display: flex;
  width: unset;
  height: 170px;
  margin: unset;
}

.input-default {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.32px;
  font-weight: 500;
}
.input-default.error {
  border-color: #ff4d4d;
  background: rgba(255, 77, 77, 0.05);
  transition: all 0.3s ease;
}

.cartpage-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
}

.cartpage-loader.show {
  display: flex;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.error-message-payment {
  color: #ff4d4d;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}
.error-message-payment.error-form {
  margin-right: 10px;
  margin-top: unset;
}

.error-message-payment.show {
  display: block;
}

.wrapper-input {
  margin-bottom: 15px;
  max-width: 300px;
  position: relative;
}
.wrapper-input.textarea {
  max-width: 500px;
}

textarea.input-default {
  min-height: 100px;
  resize: none;
}

.input-default:focus,
.input-default textarea:focus {
  outline: none;
  box-shadow: none;
}

.page-header .breadcrumb {
  margin-bottom: 15px;
}
.page-header .breadcrumbs-list {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}
.page-header .breadcrumbs-list .breadcrumbs-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.page-header .breadcrumbs-list .breadcrumbs-item:after {
  content: "";
  background: url(../images/arrow-white.svg) no-repeat;
  background-size: 100% 100%;
  width: 8px;
  height: 8px;
  margin-left: 10px;
}
.page-header .breadcrumbs-list .breadcrumbs-item:last-child {
  margin-right: 0px;
}
.page-header .breadcrumbs-list .breadcrumbs-item .breadcrumb-link {
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  letter-spacing: 0.36px;
  text-wrap: nowrap;
}
.page-header .breadcrumbs-list .breadcrumbs-item .breadcrumb-link:hover {
  color: var(--color-pink);
}
.page-header .breadcrumbs-list .breadcrumbs-item:last-child:after {
  display: none;
}
.page-header .breadcrumbs-list .breadcrumbs-item:last-child .breadcrumb-link {
  opacity: 0.5;
}
.page-header .breadcrumbs-list .breadcrumbs-item:last-child .breadcrumb-link:hover {
  color: #fff;
}

.last-sales {
  max-width: 482px;
  width: 100%;
  height: 492px;
  background: var(--color-whitedark);
  border-radius: 10px;
  padding-left: 38px;
  padding-right: 28px;
  padding-top: 41px;
  padding-bottom: 45px;
  position: relative;
  margin-left: 10px;
}
@media (max-width: 1800px) {
  .last-sales {
    display: none;
  }
}
.last-sales > .text-lastsales {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
  margin-bottom: 32px;
}

.last-games {
  width: 100%;
  position: relative;
}
.last-games > li {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.05);
}
.last-games > li:first-child {
  padding-top: 0;
}
.last-games > li:last-child {
  border: 0;
  padding-bottom: 0;
}
.last-games > li > .wrapper-lastgame {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.last-games > li .img-lastgame {
  width: 152px;
  height: 71px;
  border-radius: 8px;
}
.last-games > li .wrapper-img-lastgame {
  position: relative;
}
.last-games > li .lastgame-info {
  margin-left: 20px;
}
.last-games > li .lastgame-info > .name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  margin-bottom: 9px;
  text-wrap: nowrap;
  width: 164px;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 1920px) {
  .last-games > li .lastgame-info > .name {
    width: 150px;
  }
}
@media (max-width: 1830px) {
  .last-games > li .lastgame-info > .name {
    width: 115px;
  }
}
.last-games > li .lastgame-info > .price {
  height: 35px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  background: #0B0F1A;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
.last-games > li .lastgame-info > .price > .game-oldprice {
  opacity: 0.5;
  margin-right: 10px;
  text-decoration-line: line-through;
  display: block;
}
.last-games > li .time {
  position: absolute;
  left: 5px;
  top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  height: 21px;
  border-radius: 8px;
  background: rgb(0, 0, 0);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28px;
  display: flex;
  align-items: center;
}
@media (max-width: 1900px) {
  .last-games > li .time {
    display: none;
  }
}
.last-games > li:hover .lastgame-info > .name {
  color: var(--color-pink);
}

.page-title {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 25px;
}

.right-arrow {
  background: url(../images/rightarrow.svg) no-repeat;
  background-size: 100% 100%;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}

.group-div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.group-div > div {
  margin-right: 10px;
}
.group-div > div:last-child {
  margin-right: unset;
}

p.warning-text {
  color: #be513a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  display: flex;
  align-items: center;
}
p.warning-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23be513a'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

p.success-text {
  color: #19a607;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  display: flex;
  align-items: center;
}
p.success-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2319a607'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.support-intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.spoiler {
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.spoiler-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.spoiler-header:hover {
  background: rgba(146, 96, 254, 0.08);
}

.spoiler-header.active {
  background: rgba(146, 96, 254, 0.1);
  border-bottom: 1px solid rgba(146, 96, 254, 0.2);
}

.spoiler-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spoiler-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9260FE;
  flex-shrink: 0;
}

.spoiler-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.spoiler-arrow svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.4);
}

.spoiler-header.active .spoiler-arrow {
  transform: rotate(180deg);
}

.spoiler-body {
  display: none;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.spoiler-body.open {
  display: block;
}

.spoiler-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spoiler-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.spoiler-body ul li::before {
  content: "—";
  color: #9260FE;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.spoiler-body p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.support-footer {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(146, 96, 254, 0.06);
  border: 1px solid rgba(146, 96, 254, 0.2);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.support-footer strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  font-size: 15px;
}

.search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 10px;
}

.search-loading p {
  color: #888;
  font-size: 14px;
}

.search-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.search-empty {
  padding: 20px;
  text-align: center;
  color: #888;
}

.game-item.filter.hidden {
  display: none;
}

.search-empty-page {
  padding: 40px;
  text-align: center;
}

.search-empty-page p {
  color: #888;
  font-size: 16px;
}

[data-tab-panel] {
  display: none;
}

[data-tab-panel].is-active {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-contacts {
  background: #161b22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal-contacts {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-bottom: 20px;
}

.contact-email-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(146, 96, 254, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-email-info .label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.contact-email-info .value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.contact-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}

.contact-email:hover .contact-arrow {
  color: #9260FE;
}

.ip-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
}

.ip-text span {
  color: rgba(255, 255, 255, 0.75);
}

.open-btn {
  padding: 12px 24px;
  background: #9260FE;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.view-all-btn {
  padding: 4px 12px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #7c3aed;
  margin-left: 15px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.view-all-btn:after {
  content: "";
  background: url(../images/rightarrow-purple.svg) no-repeat;
  background-size: 100% 100%;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  transition: transform 0.2s;
}
.view-all-btn:hover:after {
  transform: translateX(3px);
}
@media (max-width: 1179px) {
  .view-all-btn {
    margin-left: unset;
  }
}

.home-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.home-section .game-slider {
  display: flex;
  height: 492px;
  position: relative;
  border-radius: 10px;
  background: var(--color-whitedark);
}
@media (max-width: 1800px) {
  .home-section .game-slider {
    width: 100%;
  }
}
@media (max-width: 1420px) {
  .home-section .game-slider {
    height: 356px;
  }
}
@media (max-width: 1179px) {
  .home-section .game-slider {
    /*flex-direction: column;
    height: max-content;
    */
    height: unset;
  }
}
@media (max-width: 670px) {
  .home-section .game-slider {
    display: block;
    height: -moz-min-content;
    height: min-content;
  }
}
.home-section .game-slider {
  /*
  overflow: hidden;
  */
}
.home-section .game-slider .block-left {
  width: 895px;
  height: 492px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-width: 895px;
  border-radius: 10px 0px 0px 10px;
}
@media (max-width: 1420px) {
  .home-section .game-slider .block-left {
    width: 633px;
    height: 356px;
    min-width: 633px;
  }
}
@media (max-width: 1179px) {
  .home-section .game-slider .block-left {
    min-width: unset;
    width: 100%;
    height: -moz-min-content;
    height: min-content;
  }
}
@media (max-width: 670px) {
  .home-section .game-slider .block-left {
    border-radius: 10px 10px 0 0;
  }
}
.home-section .game-slider .block-left .sliders {
  display: flex;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0%);
  width: 100%;
  height: 100%;
}
@media (max-width: 1420px) {
  .home-section .game-slider .block-left .sliders {
    /*
    min-width: 895px;
    */
  }
}
.home-section .game-slider .block-left .item-slide.carousel-img {
  min-width: 100%;
  box-sizing: border-box;
}
.home-section .game-slider .block-left .item-slide.carousel-img > img {
  display: block;
  width: 100%;
}
.home-section .game-slider .block-left .navigate-slide-list {
  display: flex;
  position: absolute;
  bottom: 17px;
  z-index: 1;
  opacity: 1;
  justify-content: center;
}
.home-section .game-slider .block-left .navigate-slide-list > span {
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  margin-right: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1;
}
@media (max-width: 1179px) {
  .home-section .game-slider .block-left .navigate-slide-list > span {
    width: 35px;
  }
}
.home-section .game-slider .block-left .navigate-slide-list > span:last-child {
  margin-right: 0;
}
.home-section .game-slider .block-left .navigate-slide-list > span.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
}
.home-section .game-slider .block-left .navigate-slide-list > span:hover {
  background: rgb(255, 255, 255);
}
.home-section .game-slider .block-right {
  width: 492px;
  height: 100%;
  padding: 44px;
  padding-top: 41px;
  position: relative;
}
@media (max-width: 1800px) {
  .home-section .game-slider .block-right {
    width: 100%;
  }
}
@media (max-width: 1179px) {
  .home-section .game-slider .block-right {
    padding: 17px;
  }
}
.home-section .game-slider .block-right .item-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 1179px) {
  .home-section .game-slider .block-right .item-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.home-section .game-slider .block-right .item-slide > .slider-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
}
@media (max-width: 890px) {
  .home-section .game-slider .block-right .item-slide > .slider-header {
    margin-bottom: 70px;
  }
}
@media (max-width: 770px) {
  .home-section .game-slider .block-right .item-slide > .slider-header {
    font-size: 19px;
  }
}
.home-section .game-slider .block-right .item-slide > .slider-header:after {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-left: 10px;
}
.home-section .game-slider .block-right .item-slide > .slider-header.b-steam:after {
  background: url(../images/steam.svg) no-repeat;
  background-size: 100% 100%;
}
.home-section .game-slider .block-right .item-slide > .slider-header > span {
  max-width: 350px;
}
.home-section .game-slider .block-right .item-slide > .slider-description {
  margin-top: 36px;
  width: 389px;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.3px;
  max-height: 117px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1420px) {
  .home-section .game-slider .block-right .item-slide > .slider-description {
    display: none;
  }
}
.home-section .game-slider .block-right .item-slide .slider-mininfo {
  margin-top: 20px;
}
@media (max-width: 1179px) {
  .home-section .game-slider .block-right .item-slide .slider-mininfo {
    margin-top: -20px;
  }
}
@media (max-width: 890px) {
  .home-section .game-slider .block-right .item-slide .slider-mininfo {
    display: none;
  }
}
.home-section .game-slider .block-right .item-slide .slider-mininfo > li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.28px;
  font-size: 14px;
  margin-bottom: 8px;
}
.home-section .game-slider .block-right .item-slide .slider-mininfo > li > span {
  color: #fff;
  display: block;
  margin-left: 13px;
}
.home-section .game-slider .block-right .item-slide .slider-mininfo > li > a {
  color: var(--color-pink);
  margin-left: 13px;
}
.home-section .game-slider .block-right .item-slide .slider-mininfo > li > a:hover {
  text-decoration: underline;
}
.home-section .game-slider .block-right .item-slide .slider-mininfo > li:last-child {
  margin-bottom: 0;
}
.home-section .game-slider .block-right .item-slide .slider-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
}
@media (max-width: 1179px) {
  .home-section .game-slider .block-right .item-slide .slider-footer {
    position: relative;
  }
}
@media (max-width: 500px) {
  .home-section .game-slider .block-right .item-slide .slider-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home-section .game-slider .block-right .item-slide .slider-footer > .game-price {
  padding-left: 15px;
  padding-right: 15px;
  height: 39px;
  border-radius: 8px;
  background: #0B0F1A;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  position: relative;
}
.home-section .game-slider .block-right .item-slide .slider-footer > .game-price > .game-oldprice {
  display: block;
  opacity: 0.5;
  text-decoration-line: line-through;
  margin-right: 10px;
}
.home-section .game-slider .block-right .item-slide .slider-footer > .game-price > .game-discount {
  height: 39px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 8px;
  background: var(--color-pink);
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 50px;
  left: 0;
}
@media (max-width: 1179px) {
  .home-section .game-slider .block-right .item-slide .slider-footer > .game-price > .game-discount {
    left: unset;
    right: -80px;
    bottom: unset;
  }
}
@media (max-width: 890px) {
  .home-section .game-slider .block-right .item-slide .slider-footer > .game-price > .game-discount {
    bottom: 50px;
    left: 0;
    right: unset;
  }
}
.home-section .game-slider .block-right .item-slide .slider-footer .game-buy {
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
}
@media (max-width: 500px) {
  .home-section .game-slider .block-right .item-slide .slider-footer .game-buy {
    margin-top: 10px;
  }
}

.games-section {
  margin-top: 10px;
}

.more-games {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.games-list {
  display: flex;
  flex-wrap: wrap;
  /*
  margin-right: -10px;
  margin-bottom: -10px;
  */
}

.product-section {
  width: 100%;
  position: relative;
}
.product-section .product-title {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 25px;
}
.product-section .item-block .main-info {
  display: flex;
}
.product-section .item-block .main-info .game-banner {
  display: flex;
  border-radius: 10px;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
@media (max-width: 1350px) {
  .product-section .item-block .main-info .game-banner {
    flex-direction: column;
    justify-content: unset;
  }
}
.product-section .item-block .main-info .game-banner .game-img {
  min-width: 616px;
  height: 353px;
}
@media (max-width: 1000px) {
  .product-section .item-block .main-info .game-banner .game-img {
    height: unset;
    width: 100%;
    min-width: unset;
    min-width: 400px;
  }
  .product-section .item-block .main-info .game-banner .game-img > img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .product-section .item-block .main-info .game-banner .game-img {
    min-width: unset;
  }
}
.product-section .item-block .main-info .game-banner .block-left {
  position: relative;
  display: flex;
}
@media (max-width: 670px) {
  .product-section .item-block .main-info .game-banner .block-left {
    flex-direction: column;
  }
}
.product-section .item-block .main-info .game-banner .block-left .images-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-left: 10px;
}
@media (max-width: 1650px) {
  .product-section .item-block .main-info .game-banner .block-left .images-list {
    display: none;
  }
}
.product-section .item-block .main-info .game-banner .block-left .images-list .images-line {
  display: flex;
  background: #0E131E;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-radius: 8px;
}
.product-section .item-block .main-info .game-banner .block-left .images-list .images-line:last-child {
  margin-bottom: 0px;
}
.product-section .item-block .main-info .game-banner .block-left .image-item {
  padding: 5px;
  width: 283px;
  position: relative;
}
.product-section .item-block .main-info .game-banner .block-left .image-item .img-wrapper {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.product-section .item-block .main-info .game-banner .block-left .image-item .img-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.2s;
  background: rgba(124, 91, 241, 0.3) url(../images/resize.svg) no-repeat center;
}
.product-section .item-block .main-info .game-banner .block-left .image-item .img-wrapper:hover:after {
  opacity: 1;
}
@media (max-width: 1880px) {
  .product-section .item-block .main-info .game-banner .block-left .image-item:nth-child(2n) {
    display: none;
  }
}
.product-section .price-info {
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  background: #0E131E;
  height: 100%;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 300px;
  overflow: hidden;
}
@media (max-width: 670px) {
  .product-section .price-info {
    padding-top: 43px;
    padding-bottom: 43px;
  }
}
@media (max-width: 1880px) {
  .product-section .price-info {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .product-section .price-info {
    justify-content: center;
    margin-left: unset;
  }
}
.product-section .price-info .button-buy {
  width: 230px;
  height: 65px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  transition: all 0.3s ease;
  background: var(--color-pink);
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  margin-top: 15px;
}
.product-section .price-info .button-buy:hover {
  background: var(--color-pinkhover);
}
@media (max-width: 1000px) {
  .product-section .price-info .button-buy {
    width: 150px;
  }
}
@media (max-width: 670px) {
  .product-section .price-info .button-buy {
    width: 315px;
  }
}
@media (max-width: 500px) {
  .product-section .price-info .button-buy {
    width: 155px;
  }
}
.product-section .price-info .button-buy.disabled, .product-section .price-info .button-buy:disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}
.product-section .game-price {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.product-section .game-price .current-price {
  position: relative;
}
.product-section .game-price .current-price > span {
  position: absolute;
  top: -22px;
  text-decoration: line-through;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.5;
  font-weight: 400;
}
.product-section .game-price .current-price > p {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0.32px;
  position: relative;
}
.product-section .game-price .current-price > p > sup {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  vertical-align: text-top;
}
.product-section .game-price .discount {
  height: 39px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 8px;
  background: var(--color-pink);
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.product-section .items-count {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
}
.product-section .items-count > span {
  color: #ff7d00;
}
@media (max-width: 1000px) {
  .product-section .top-info {
    display: none;
  }
}
.product-section .list-info > li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 620px) {
  .product-section .list-info > li {
    font-size: 12px;
  }
}
.product-section .list-info > li > .right-info {
  margin-left: 13px;
  color: #fff;
  display: inline-block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.product-section .list-info > li > a.right-info {
  color: var(--color-pink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
}
@media (max-width: 620px) {
  .product-section .list-info > li > a.right-info {
    font-size: 12px;
  }
}
.product-section .list-info > li > a.right-info:hover {
  text-decoration: underline;
}
.product-section .list-info > li:last-child {
  margin-bottom: 0px;
}
.product-section .block-right {
  margin-left: 10px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1350px) {
  .product-section .block-right {
    margin-left: unset;
  }
}
.product-section .block-right .additional-info {
  border-radius: 10px;
  background: #0E131E;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-section .block-right .additional-info .text-info {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
  margin-bottom: 32px;
}
.product-section .block-right .additional-info .go-steam {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  letter-spacing: 0.36px;
  opacity: 0.5;
  display: flex;
  align-items: center;
}
.product-section .block-right .additional-info .go-steam:before {
  content: "";
  background: url(../images/steam.svg) no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.product-section .block-right .additional-info .go-steam:hover {
  opacity: 1;
}
@media (max-width: 1350px) {
  .product-section .block-right .additional-info .go-steam {
    margin-top: 35px;
  }
}
.product-section .tab-wrapepr {
  margin-top: 10px;
}
.product-section .tab-wrapepr .default-section {
  border-radius: 10px;
}
.product-section .tab-wrapepr .tab-list {
  display: flex;
  gap: 10px;
}
@media (max-width: 1179px) {
  .product-section .tab-wrapepr .tab-list {
    flex-wrap: wrap;
  }
}
.product-section .tab-wrapepr .tab-list > li {
  display: flex;
  padding-left: 40px;
  padding-right: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 59px;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 1179px) {
  .product-section .tab-wrapepr .tab-list > li {
    min-width: calc(50% - 5px);
    justify-content: center;
    flex: 1;
  }
}
.product-section .tab-wrapepr .tab-list > li:last-child {
  margin-right: 0px;
}
.product-section .tab-wrapepr .tab-list > li > h3 {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  margin-bottom: unset;
  text-align: center;
}
@media (max-width: 620px) {
  .product-section .tab-wrapepr .tab-list > li > h3 {
    font-size: 12px;
  }
}
.product-section .tab-wrapepr .tab-list > li.active, .product-section .tab-wrapepr .tab-list > li:hover {
  background: var(--color-pink);
}
.product-section .tab-wrapepr .tab-content {
  margin-top: 30px;
}
.product-section .tab-wrapepr .tab-content .tab-panel > p {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.3px;
  position: relative;
}
.product-section .tab-wrapepr .tab-content .tab-panel > p > span {
  color: #9e9d9d;
}
.product-section .tab-wrapepr .tab-content .tab-panel > p.big-text {
  max-height: 257px;
  overflow: hidden;
}
.product-section .tab-wrapepr .tab-content .tab-panel > p.big-text:not(.more-text):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(14, 19, 30, 0) 0%, #0E131E 100%);
}
.product-section .tab-wrapepr .tab-content .tab-panel > p.more-text {
  max-height: unset;
}
.product-section .button-description {
  color: var(--color-pink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-top: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.product-section .review-form {
  width: 100%;
}
.product-section .reviews-list {
  margin-top: 20px;
}
.product-section .reviews-list .review {
  background: #23273b;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  max-width: 500px;
  width: 100%;
}
.product-section .reviews-list .review:last-child {
  margin-bottom: 0px;
}
.product-section .reviews-list .review strong {
  color: #8ab4f8;
}
.product-section .reviews-list .review small {
  display: block;
  color: #aaa;
  margin-top: 5px;
  font-size: 12px;
}

.page-section {
  width: 100%;
  position: relative;
}
.page-section .list-blocks {
  display: flex;
  width: 100%;
  position: relative;
}
.page-section .list-blocks .info-row {
  display: flex;
  width: 100%;
}
.page-section .list-blocks .info-row > div {
  margin-right: 10px;
  display: flex;
  flex-direction: column;
}
.page-section .list-blocks .info-row > div:last-child {
  margin-right: 0px;
}
.page-section .list-blocks.cartpage .info-row {
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1800px) {
  .page-section .list-blocks.cartpage .info-row {
    flex-direction: column;
  }
}
.page-section .list-blocks.cartpage .info-block {
  padding: 21px;
  max-width: 992px;
}
@media (max-width: 1800px) {
  .page-section .list-blocks.cartpage .info-block {
    width: 100%;
    max-width: unset;
  }
}
.page-section .list-blocks.cartpage .info-block .header-block {
  font-size: 18px;
}
.page-section .list-blocks.cartpage .info-block.cart-game {
  height: 100%;
}
@media (max-width: 1800px) {
  .page-section .list-blocks.cartpage .info-block.cart-game {
    height: 300px;
    overflow: hidden;
  }
}
@media (max-width: 670px) {
  .page-section .list-blocks.cartpage .info-block.cart-game {
    height: 368px;
  }
}
@media (max-width: 500px) {
  .page-section .list-blocks.cartpage .info-block.cart-game {
    height: 300px;
  }
}
.page-section .info-block {
  width: 100%;
  background: var(--color-whitedark);
  border-radius: 10px;
  padding-left: 21px;
  padding-right: 21px;
  padding-top: 41px;
  padding-bottom: 41px;
  position: relative;
}
.page-section .info-block.center {
  display: flex;
  align-items: center;
}
.page-section .info-block .header-block {
  color: #FFF;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
  margin: 0;
  display: flex;
  align-items: center;
}
.page-section .info-block .header-block > span {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 100%;
  background: var(--color-pink);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.page-section .delivery-subtitle {
  font-size: 13px;
  color: #5a6a80;
}
.page-section .delivery-steps a {
  text-decoration: underline;
}
.page-section .delivery-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #171c28;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.page-section .delivery-step:first-child {
  border-radius: 10px 10px 0 0;
}
.page-section .delivery-step:last-child {
  border-radius: 0 0 10px 10px;
}
.page-section .delivery-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-section .delivery-icon-blue {
  background: rgba(52, 152, 219, 0.15);
}
.page-section .delivery-icon-green {
  background: rgba(39, 174, 96, 0.15);
}
.page-section .delivery-icon-amber {
  background: rgba(241, 196, 15, 0.12);
}
.page-section .delivery-step-icon svg {
  width: 20px;
  height: 20px;
}
.page-section .delivery-step-content {
  flex: 1;
}
.page-section .delivery-step-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.page-section .delivery-step-desc {
  font-size: 13px;
  color: #8a9bb0;
  line-height: 1.6;
}
.page-section .delivery-step-desc b {
  color: #b0c4d8;
  font-weight: 500;
}
.page-section .delivery-badge {
  display: inline-block;
  background: rgba(39, 174, 96, 0.15);
  color: #2ecc71;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.page-section .delivery-tip {
  margin-top: 1rem;
  padding: 12px 16px;
  background: rgba(241, 196, 15, 0.07);
  border: 1px solid rgba(241, 196, 15, 0.2);
  border-radius: 8px;
  font-size: 12px;
  color: #b8a050;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.page-section .delivery-tip a {
  text-decoration: underline;
}
.page-section .delivery-tip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.page-section .content-block {
  margin-top: 25px;
}
.page-section .warning-info {
  width: 100%;
  position: absolute;
  bottom: 30px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
@media (max-width: 670px) {
  .page-section .warning-info {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .page-section .warning-info {
    display: none;
  }
}
.page-section .warning-info:before {
  content: "";
  background: url(../images/exclamation.svg) no-repeat;
  background-size: 100% 100%;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 10px;
}
@media (max-width: 670px) {
  .page-section .warning-info:before {
    width: 25px;
    height: 25px;
  }
}
.page-section .warning-info a {
  color: var(--color-pink);
}
.page-section .warning-info a:hover {
  text-decoration: underline;
}
.page-section .cart-submit-check {
  display: flex;
}
.page-section .cart-submit-check > p {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.3px;
}
.page-section .cart-submit-check a {
  color: var(--color-pink);
}
.page-section .cart-submit-check a:hover {
  text-decoration: underline;
}
.page-section .cart-checkbox input[type=checkbox] {
  min-width: 22px;
  min-height: 22px;
  margin-right: 10px;
}
.page-section .text-block {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.3px;
  max-width: 700px;
}
.page-section .page-form {
  width: 100%;
  margin-top: 20px;
}
.page-section .page-form .textarea {
  max-width: 900px;
}
.page-section .page-form textarea.input-default {
  min-height: 300px;
}
@media (max-width: 1800px) {
  .page-section .column-blocks {
    margin-bottom: 10px;
  }
  .page-section .column-blocks:last-child {
    margin-bottom: 0px;
  }
}
.page-section .column-blocks.maximum {
  width: 100%;
}
.page-section .column-blocks.maximum .wrapper-input {
  max-width: unset;
  display: flex;
  align-items: center;
}
.page-section .column-blocks.maximum .wrapper-input:before {
  content: "";
  background: url(../images/cart-email.svg) no-repeat;
  background-size: 100% 100%;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  pointer-events: none;
  opacity: 0.1;
}
.page-section .column-blocks.maximum .wrapper-input > input {
  padding-left: 50px;
}
.page-section .column-blocks .info-block {
  margin-bottom: 10px;
}
.page-section .column-blocks .info-block:last-child {
  margin-bottom: 0px;
}
.page-section .payments-list {
  margin-bottom: 10px;
}
.page-section .payments-line {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}
@media (max-width: 1800px) {
  .page-section .payments-line {
    flex-wrap: wrap;
  }
}
.page-section .payments-line:last-child {
  margin-bottom: 0px;
}
.page-section .payments-line .payment-item-wrapper {
  padding: 5px;
}
.page-section .payments-line .payment-item-wrapper .payment-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  width: 230px;
  height: 130px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 770px) {
  .page-section .payments-line .payment-item-wrapper .payment-item {
    width: 154px;
    height: 120px;
  }
}
@media (max-width: 500px) {
  .page-section .payments-line .payment-item-wrapper .payment-item {
    width: 115px;
    height: 104px;
  }
}
.page-section .payments-line .payment-item-wrapper .payment-item .payment-checkbox {
  border-radius: 8px;
  width: 26px;
  height: 26px;
  background: var(--color-pink);
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.page-section .payments-line .payment-item-wrapper .payment-item .payment-checkbox:before {
  content: "";
  background: url(../images/success.svg) no-repeat;
  background-size: 100% 100%;
  width: 12px;
  height: 12px;
}
.page-section .payments-line .payment-item-wrapper .payment-item:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-section .payments-line .payment-item-wrapper .payment-item .payment-img {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.page-section .payments-line .payment-item-wrapper .payment-item .payment-img img {
  height: 45px;
  width: auto;
}
@media (max-width: 770px) {
  .page-section .payments-line .payment-item-wrapper .payment-item .payment-img img {
    height: 30px;
  }
}
.page-section .payments-line .payment-item-wrapper .payment-item .payment-name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  font-size: 10px;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
  background: #2a2f38;
  border-radius: 8px;
  pointer-events: none;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media (max-width: 500px) {
  .page-section .payments-line .payment-item-wrapper .payment-item .payment-name {
    background: unset;
    top: 5px;
    right: 5px;
    font-size: 9px;
  }
}
.page-section .payments-line .payment-item-wrapper.active .payment-item {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-section .payments-line .payment-item-wrapper.active .payment-item .payment-checkbox {
  opacity: 1;
}
.page-section .header-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: #7E8895;
  font-weight: 400;
}
.page-section .game-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 670px) {
  .page-section .game-info {
    align-items: flex-start;
  }
}
.page-section .game-info .left-info {
  display: flex;
  align-items: center;
}
@media (max-width: 670px) {
  .page-section .game-info .left-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-section .game-info .game-img {
  min-width: 200px;
  max-width: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.page-section .game-info .game-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  margin-left: 15px;
  max-width: 295px;
  color: var(--color-pink);
}
@media (max-width: 670px) {
  .page-section .game-info .game-name {
    margin-left: unset;
    margin-top: 10px;
  }
}
.page-section .game-info .game-name:hover {
  text-decoration: underline;
}
.page-section .game-info .game-price {
  margin-left: 10px;
  text-wrap: nowrap;
  font-size: 22px;
  font-weight: 500;
}
.page-section .payment-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 670px) {
  .page-section .payment-button-wrapper {
    justify-content: center;
  }
}
.page-section .payment-button-wrapper button {
  width: 200px;
  height: 67px;
  font-size: 19px;
}
.page-section .payment-button-wrapper button p {
  pointer-events: none;
}
.page-section .reviewpage-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-section .reviewpage-list .reviewpage-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}
.page-section .reviewpage-list .reviewpage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.page-section .reviewpage-list .reviewpage-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-section .reviewpage-list .reviewpage-name {
  font-weight: 600;
  color: #fff;
}
.page-section .reviewpage-list .reviewpage-date {
  font-size: 13px;
  color: #888;
}
.page-section .reviewpage-list .reviewpage-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.2s;
}
.page-section .reviewpage-list .reviewpage-product:hover {
  background: rgba(255, 255, 255, 0.1);
}
.page-section .reviewpage-list .reviewpage-product img {
  width: 50px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.page-section .reviewpage-list .reviewpage-product span {
  font-size: 14px;
  color: #fff;
}
.page-section .reviewpage-list .reviewpage-text {
  color: #ccc;
  line-height: 1.6;
}
.page-section .reviewpage-list .reviewpage-empty {
  padding: 40px;
  text-align: center;
  color: #888;
}
.page-section .purchases-page,
.page-section .purchase-detail-page {
  max-width: 700px;
  margin: 40px auto;
}
.page-section .purchases-page {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}
.page-section .purchases-page h1 {
  margin-bottom: 15px;
  font-size: 28px;
  text-align: center;
}
.page-section .purchases-page .purchases-email {
  color: #888;
  margin-bottom: 30px;
  text-align: center;
}
.page-section .purchases-page .purchases-desc {
  color: #888;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}
.page-section .purchases-page .expired-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #ef4444;
  margin-bottom: 20px;
  font-size: 14px;
}
.page-section .purchases-page .purchases-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}
.page-section .purchases-page .purchases-form .form-group {
  width: 100%;
}
.page-section .purchases-page .purchases-form .input-default {
  width: 100%;
  box-sizing: border-box;
}
.page-section .purchases-page .purchases-form .default-button {
  width: 100%;
  box-sizing: border-box;
}
.page-section .purchases-page .purchases-form .form-message {
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.page-section .purchases-page .purchases-form .form-message.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
.page-section .purchases-page .purchases-form .form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.page-section .purchases-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-section .purchase-item {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.2s;
}
.page-section .purchase-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.page-section .purchase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  gap: 20px;
}
.page-section .purchase-product {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.page-section .purchase-product img {
  width: 80px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.page-section .purchase-info .purchase-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}
.page-section .purchase-info .purchase-price {
  color: #888;
  font-size: 14px;
}
.page-section .purchase-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.page-section .purchase-meta .purchase-date {
  color: #666;
  font-size: 13px;
}
.page-section .purchase-meta .purchase-status {
  display: inline-block;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.page-section .purchases-empty {
  padding: 40px 20px;
  text-align: center;
}
.page-section .purchases-empty p {
  color: #888;
}
.page-section .purchase-detail-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
}
.page-section .purchase-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-section .purchase-detail-header img {
  width: 100px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.page-section .purchase-detail-info {
  flex: 1;
}
.page-section .purchase-detail-info h1 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
  margin: 0;
}
.page-section .purchase-detail-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.page-section .purchase-detail-meta .purchase-detail-price {
  color: #22c55e;
  font-weight: 600;
  font-size: 16px;
}
.page-section .purchase-detail-meta .purchase-detail-date {
  color: #666;
  font-size: 13px;
}
.page-section .purchase-detail-meta .purchase-detail-status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.page-section .purchase-detail-credentials {
  padding: 25px;
}
.page-section .purchase-detail-credentials h2 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}
.page-section .credential-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 10px;
}
.page-section .credential-row:last-child {
  margin-bottom: 0;
}
.page-section .credential-label {
  color: #888;
  font-size: 14px;
  min-width: 70px;
}
.page-section .credential-value {
  flex: 1;
  font-family: monospace;
  font-size: 15px;
  color: #fff;
}
.page-section .credential-value.password-hidden {
  letter-spacing: 3px;
}
.page-section .credential-actions {
  display: flex;
  gap: 8px;
}
.page-section .copy-btn,
.page-section .show-password-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #888;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-section .copy-btn:hover,
.page-section .show-password-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.page-section .copy-btn.copied,
.page-section .show-password-btn.copied {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}
.page-section .copy-btn.active,
.page-section .show-password-btn.active {
  background: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}
.page-section .credential-info-block {
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 10px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}
.page-section .credential-info-block:last-child {
  margin-bottom: 0;
}
.page-section .credentials-empty {
  padding: 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.page-section .credentials-empty p {
  color: #666;
  font-size: 14px;
}
.page-section .purchase-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.page-section .back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 14px;
  transition: color 0.2s;
}
.page-section .back-btn:hover {
  color: #fff;
}
.page-section .product-link-btn {
  padding: 10px 20px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 8px;
  color: #7c3aed;
  font-size: 14px;
  transition: background 0.2s;
}
.page-section .product-link-btn:hover {
  background: rgba(124, 58, 237, 0.3);
}
.page-section .credential-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
}/*# sourceMappingURL=styles.css.map */