/**
 *
 * Color
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/**
 *
 * Responsive
 *
 */
/**
 *
 * Utilities
 *
 */
/**
 *
 * Button
 *
 */
.button {
  position: relative;
  border: 0;
  outline: 0;
  background: none !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Markazi Text";
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #d2c7a8;
  text-transform: uppercase;
  z-index: 1;
  transition: all 125ms;
  /**
   *
   * Responsive
   *
   */
}
.button:hover {
  cursor: pointer;
}
.button--square {
  border-radius: 0 !important;
}
.button--square::before {
  border-radius: 0 !important;
}
.button--type-one {
  min-width: 205px;
  padding: 12px 0;
  border-radius: 5px;
  font-size: 22px;
  color: #d1c8ad;
  text-shadow: 1px 1px 5px #000;
  line-height: 24px;
}
.button--type-one--only-opacity::before {
  opacity: 1;
}
.button--type-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/button-type-five-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 125ms;
  z-index: -1;
}
.button--type-one:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.button--type-two {
  min-width: 260px;
  padding: 20px 0;
  background-color: #0a0c18;
  font-size: 20px;
  line-height: 24px;
  color: #778089;
  text-shadow: 2px 0 #0b0d18, -2px 0 #0b0d18, 0 2px #0b0d18, 0 -2px #0b0d18,
    1px 1px #0b0d18, -1px -1px #0b0d18, 1px -1px #0b0d18, -1px 1px #0b0d18;
}
.button--type-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/button-type-two-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
  transition: all 125ms;
  z-index: -1;
}
.button--type-two:hover,
.button--type-two.is-active {
  color: #fff;
}
.button--type-two:hover::before,
.button--type-two:hover.is-active,
.button--type-two.is-active::before,
.button--type-two.is-active.is-active {
  opacity: 0.8;
  background-image: url("../assets/images/button-type-two-bg-hover.webp");
}
.button--type-three {
  width: 100%;
  padding: 12px 0;
  border-radius: 5px;
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
}
.button--type-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: url("../assets/images/button-type-three-bg.webp");
  background-position: center;
  background-size: contain;
  background-repeat: repeat-x;
  transition: all 125ms;
  z-index: -1;
}
.button--type-three:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.button--type-three-purple::before {
  background-image: url("../assets/images/button-type-six-bg.webp");
}
.button--type-four {
  width: 100%;
  padding: 12px 0;
  border-radius: 5px;
  background-color: #0b0d18;
  flex-direction: column;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  text-shadow: 2px 0 #0b0d18, -2px 0 #0b0d18, 0 2px #0b0d18, 0 -2px #0b0d18,
    1px 1px #0b0d18, -1px -1px #0b0d18, 1px -1px #0b0d18, -1px 1px #0b0d18;
}
.button--type-four::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: url("../assets/images/button-type-four-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 125ms;
  z-index: -1;
}
.button--type-four:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.button--type-five {
  min-width: 310px;
  padding: 12px 0;
  background-color: transparent;
  font-size: 30px;
  line-height: 32px;
  color: #451c1c;
  text-shadow: 1px 1px 1px #edd8;
}
.button--type-five::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: 1px solid #fff9d7;
  background-image: url(../assets/images/btn4.webp);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
  transition: all 125ms;
  z-index: -1;
}
.button--type-five:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.button--type-six {
  width: 100%;
  padding: 12px 0;
  border-radius: 5px;
  background-color: transparent;
  font-size: 16px;
  line-height: 24px;
  text-transform: initial;
}
.button--type-six::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: url("../assets/images/button-type-six-bg.webp");
  background-position: center;
  background-repeat: repeat-x;
  transition: all 125ms;
  z-index: -1;
}
.button--type-six:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.button--type-seven {
  width: 100%;
  padding: 12px 16px;
  border-radius: 5px;
  background-color: transparent;
  justify-content: space-between;
  align-items: center;
}
.button--type-seven::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: url("../assets/images/button-type-seven-bg.webp");
  background-position: center;
  transition: all 125ms;
  z-index: -1;
}
.button--type-seven:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.button--type-seven-two {
  height: 56px;
}
.button--type-seven-yellow-bg::before {
  background-image: url("../assets/images/button-type-seven-bg-yellow.webp");
}
.button--type-seven-gray-bg::before {
  background-image: url("../assets/images/button-type-seven-bg-gray.webp");
}
.button--type-seven__icon-img {
  min-width: 24px;
  max-width: 24px;
}
.button--type-eight {
  width: 100%;
  height: 48px;
  padding: 6px 0;
  border-radius: 5px;
  background-color: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 0 #080d18, -2px 0 #080d18, 0 2px #080d18, 0 -2px #080d18,
    1px 1px #080d18, -1px -1px #080d18, 1px -1px #080d18, -1px 1px #080d18;
  text-shadow: 2px 0 #080d18, -2px 0 #080d18, 0 2px #080d18, 0 -2px #080d18,
    1px 1px #080d18, -1px -1px #080d18, 1px -1px #080d18, -1px 1px #080d18;
}
.button--type-eight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: url("../assets/images/button-type-eight-bg.webp");
  background-position: center;
  transition: all 125ms;
  z-index: -1;
}
.button--type-eight:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.button--type-eight__secondary-text {
  font-size: 16px;
  line-height: 16px;
  color: #0a0c18;
  text-shadow: 2px 0 #a0a0a0, -2px 0 #a0a0a0, 0 2px #a0a0a0, 0 -2px #a0a0a0,
    1px 1px #a0a0a0, -1px -1px #a0a0a0, 1px -1px #a0a0a0, -1px 1px #a0a0a0;
}
.button--type-seven .button__text {
  text-shadow: 2px 0 rgba(11, 13, 24, 0.25), -2px 0 rgba(11, 13, 24, 0.25),
    0 2px rgba(11, 13, 24, 0.25), 0 -2px rgba(11, 13, 24, 0.25),
    1px 1px rgba(11, 13, 24, 0.25), -1px -1px rgba(11, 13, 24, 0.25),
    1px -1px rgba(11, 13, 24, 0.25), -1px 1px rgba(11, 13, 24, 0.25);
}
.button--type-seven .button__text-effect {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.button--border-opacity-white {
  height: 56px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0c18;
  line-height: 24px;
  justify-content: space-between;
}
.button--border-opacity-white:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.button__secondary-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #42b1db;
  text-shadow: none !important;
}
.button__icon {
  margin-right: 8px;
}
.button__icon--align-right {
  margin-right: 0;
  margin-left: 8px;
}
.button__icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.button__right-icon {
  font-size: 14px;
}
@media (max-width: 992px) {
  .button--type-five {
    min-width: 220px;
    padding: 8px 0;
    font-size: 24px;
    line-height: 24px;
  }
}

/**
 *
 * Game Download Button
 *
 */
.game-download-button {
  border: 0;
  outline: 0;
  width: 301px;
  height: 101px;
  background-image: url("../assets/images/game-download-button-bg.webp");
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Markazi Text";
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  color: #d5b56f;
  text-shadow: 1px 1px 5px #000;
  text-transform: uppercase;
  transition: all 125ms;
}
.game-download-button:hover {
  cursor: pointer;
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.game-download-button__secondary-text {
  font-size: 20px;
  line-height: 10px;
  color: #d1c8ad;
  text-shadow: 1px 1px 5px #000;
}

/**
 *
 * Input
 *
 */
.input {
  border: 0;
  outline: 0;
  width: 100%;
  height: 48px;
  padding: 16px;
  border-radius: 5px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  background-color: #0a0c18 !important;
  font-family: "Markazi Text";
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #778089;
  transition: all 125ms;
}
.input:focus {
  border-color: rgba(119, 128, 137, 0.3);
}
.input::-webkit-inner-spin-button,
.input::-webkit-outer-spin-button {
  display: none;
}
.input--type-one {
  padding: 12px;
  border-radius: 0;
  font-size: 18px;
  line-height: 24px;
}
.input--type-one::placeholder {
  color: #778089;
  text-transform: uppercase;
}
.input--type-one:focus {
  border-color: #42b1db;
  background-color: #101324;
}
.input--medium-height {
  height: 56px;
}
.input--padding-medium {
  padding: 16px;
}
.input-container {
  position: relative;
}
.input-container__align-left {
  position: absolute;
  top: 0;
  left: 16px;
  bottom: 0;
  margin: auto;
  height: max-content;
  font-size: 18px;
}
.input-container__input {
  padding: 16px 16px 16px 46px;
}

/**
 *
 * Select
 *
 */
.select {
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 40px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0c18 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Markazi Text";
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  transition: all 125ms;
}
.select:focus {
  border-color: rgba(255, 255, 255, 0.2);
}
.select--basic-style {
  border: 0;
  width: max-content;
  height: auto;
  background-color: transparent !important;
  font-size: 18px;
  line-height: 24px;
  color: #778089;
}
.select--type-one {
  height: 48px;
  padding: 12px;
  border-radius: 0;
  font-size: 18px;
  line-height: 24px;
  color: #778089;
}
.select--type-one::placeholder {
  text-transform: uppercase;
}
.select--type-one:focus {
  border-color: #42b1db;
}
.select-container {
  position: relative;
  width: 100%;
}
.select-container::after {
  content: "\f078";
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  height: max-content;
  margin: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
}
.select-container--basic-style {
  width: max-content;
  display: flex;
  align-items: center;
}
.select-container--basic-style::after {
  position: static;
  right: 0;
  font-size: 12px;
  color: #778089;
}
.select-container--type-one::before {
  right: 21px;
  font-size: 14px;
  color: #778089;
}

/**
 *
 * Custom Select
 *
 */
.custom-select {
  position: relative;
  height: 64px;
  padding: 16px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  background-color: #0a0c18;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 125ms;
}
.custom-select:hover {
  cursor: pointer;
  border-color: #42b1db;
  background-color: #101324;
}
.custom-select.is-active:hover {
  border-color: rgba(119, 128, 137, 0.2);
  background-color: #0a0c18;
}
.custom-select.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  background: linear-gradient(#0b0d1b, #0b0d1b) padding-box,
    linear-gradient(to top, rgba(219, 121, 66, 0) 0%, rgb(219, 121, 66) 100%)
      border-box;
  z-index: 1;
}
.custom-select.is-active .js-custom-select-value {
  color: #42b1db;
}
.custom-select.is-active .custom-select__arrow-icon {
  color: #42b1db;
  transform: rotateX(180deg);
}
.custom-select.is-active .custom-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select * {
  z-index: 5;
}
.custom-select__icon {
  margin-right: 12px;
}
.custom-select__icon-img {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.custom-select__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: #778089;
  transition: all 125ms;
}
.custom-select__arrow-icon {
  font-size: 14px;
  color: #778089;
  transition: all 500ms;
}
.custom-select__menu {
  position: absolute;
  top: 63px;
  left: -1px;
  right: 0;
  width: calc(100% + 2px);
  margin: 0 auto;
  border: 1px solid rgba(119, 128, 137, 0.2);
  border-top: 0;
  background-color: #101324;
  display: flex;
  flex-direction: column;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 300ms;
}
.custom-select__menu-item {
  height: 50px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 125ms;
}
.custom-select__menu-item:hover {
  cursor: pointer;
  background-color: #151930;
}
.custom-select__menu-item.is-active .custom-select__menu-text {
  color: #fff;
}
.custom-select__menu-item.is-active .custom-select__menu-icon {
  opacity: 1;
}
.custom-select__menu-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: #778089;
  transition: all 125ms;
}
.custom-select__menu-icon {
  opacity: 0;
  transition: all 125ms;
}
.custom-select__menu-icon-img {
  min-width: 24px;
  max-width: 24px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/**
 *
 * Checkbox
 *
 */
.checkbox {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #161a31;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 125ms;
}
.checkbox:hover {
  cursor: pointer;
}
.checkbox:checked {
  background-color: #42b1db;
}
.checkbox:checked::before {
  opacity: 1;
}
.checkbox::before {
  content: "\f00c";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: max-content;
  height: max-content;
  margin: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  opacity: 0;
  transition: all 125ms;
}
.checkbox-container {
  display: flex;
  align-items: center;
}
.checkbox-container__checkbox {
  margin-right: 8px;
}
.checkbox-container__text {
  font-family: "GT Walsheim Pro";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #778089;
}
.checkbox-container__text--medium {
  font-size: 18px;
}

/**
 *
 * Link
 *
 */
.link {
  transition: all 125ms;
}
.link--primary:hover {
  color: #42b1db;
}
.link--opacity:hover {
  cursor: pointer;
  opacity: 0.75;
}

/**
 *
 * Form
 *
 */
.form {
  display: flex;
  flex-direction: column;
}
.form__group:not(:first-child) {
  margin-top: 16px;
}

/**
 *
 * File
 *
 */
.file {
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0c18;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 125ms;
}
.file:hover {
  cursor: pointer;
  border-color: #42b1db;
}
.file__input {
  display: none;
}
.file__icon {
  margin-bottom: 8px;
}
.file__icon-img {
  min-width: 24px;
  max-width: 24px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.file__title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
}
.file__text {
  font-family: "GT Walsheim Pro";
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #778089;
}

@font-face {
  font-family: "Markazi Text";
  font-weight: 400;
  src: url("../assets/fonts/markazi-text-regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Markazi Text";
  font-weight: 500;
  src: url("../assets/fonts/markazi-text-medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Markazi Text";
  font-weight: 600;
  src: url("../assets/fonts/markazi-text-bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Pro";
  font-weight: 400;
  src: url("../assets/fonts/gtwalsheimpro-regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Pro";
  font-weight: 500;
  src: url("../assets/fonts/gtwalsheimpro-medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Pro";
  font-weight: 600;
  src: url("../assets/fonts/gtwalsheimpro-bold.ttf");
  font-display: swap;
}
body {
  background-color: #17120f;
  display: flex;
  flex-direction: column;
  font-family: "Markazi Text";
}

@media (min-width: 1400px) {
  .container {
    max-width: 1264px;
  }
  .container--small {
    max-width: 1052px;
  }
}
.main {
  flex: 1;
}

.has-scroll-none {
  padding-right: 16px;
  overflow-y: hidden !important;
}
.has-scroll-none .header {
  right: 16px;
}

.page-section {
  position: relative;
  display: block;
  z-index: 10;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 48px 0;
  z-index: 999;
}
.header__mobile-inner {
  position: relative;
  width: 322px;
  display: flex;
  align-items: center;
}
.header__mobile-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 48px;
  margin: auto;
  background-image: url("../assets/images/header-mobile-bg.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: grayscale(150%);
}
.header__mobile-inner * {
  filter: grayscale(0);
}
.header__inner {
  position: relative;
  width: 100%;
  height: 56px;
  padding: 0 66px;
  background-image: url("../assets/images/header-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  z-index: 1;
}
.header__inner::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  width: 616px;
  height: 299px;
  margin: 0 auto;
  background-image: url("../assets/images/header-circle-effect.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}
.header__left-side,
.header__center-side,
.header__right-side {
  width: 100%;
  display: flex;
}
.header__left-side {
  padding: 5px 0;
  justify-content: flex-start;
}
.header__center-side {
  justify-content: center;
  align-items: center;
}
.header__right-side {
  padding: 5px 0 0 55px;
  justify-content: flex-start;
}
.header__list {
  display: flex;
}
.header__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 125ms;
}
.header__list-item:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.header__list-item:not(:first-child) {
  margin-left: 80px;
}
.header__list-link {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__list-link-secondary {
  font-size: 16px;
  line-height: 16px;
  color: #a2c9f9;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 450ms;
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.is-active .mobile-menu__inner {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu__black-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 11, 23, 0.7);
  z-index: -1;
}
.mobile-menu__inner {
  position: relative;
  width: 315px;
  height: 100%;
  padding: 24px 16px;
  border-right: 1px solid #778089;
  background-image: url("../assets/images/mobile-menu-bg.webp");
  background-color: #0b0d1b;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  visibility: hidden;
  transition: all 750ms;
}
.mobile-menu__list-item:not(:first-child) {
  margin-top: 16px;
}
.mobile-menu__footer {
  padding-bottom: 90px;
}
.mobile-menu__game-download-button {
  position: absolute;
  left: -25px;
  right: 0;
  bottom: -5px;
  width: 355px !important;
  height: 92px !important;
  padding-top: 25px;
  font-size: 24px !important;
  line-height: 24px !important;
  margin: auto;
}
.mobile-menu__game-download-button__secondary-text {
  font-size: 16px !important;
  line-height: 16px !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 12, 24, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 450ms;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal.is-active .modal__inner {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.modal__inner {
  position: relative;
  width: 600px;
  padding: 24px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  background-color: #0b0d1b;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: all 350ms;
}
.modal__inner::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  width: 100%;
  height: 12px;
  background-image: url("../assets/images/modal-top-effect.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
}
.modal__tab-item {
  padding: 12px 16px;
  border: 1px solid transparent;
  background-color: #101324;
  display: flex;
  align-items: center;
  transition: all 125ms;
}
.modal__tab-item:hover {
  cursor: pointer;
  border-color: #42b1db;
}
.modal__tab-item.is-active {
  border-color: #42b1db;
}
.modal__tab-item:hover .modal__tab-text,
.modal__tab-item.is-active .modal__tab-text {
  color: #fff;
}
.modal__tab-icon {
  margin-right: 12px;
}
.modal__tab-icon-img {
  min-width: 24px;
  max-width: 24px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.modal__tab-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #778089;
  transition: all 125ms;
}
.modal__close {
  position: relative;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.modal__close:hover {
  cursor: pointer;
}
.modal__close:hover::before {
  filter: grayscale(0);
}
.modal__close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/circle-effect-two.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
  transition: all 125ms;
}
.modal__close * {
  filter: grayscale(0);
}
.modal__brace-line {
  margin: 24px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.modal__body .tab-content__item.is-active {
  display: block !important;
}
.modal__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #778089;
  text-transform: uppercase;
}

.language-switcher-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 12, 24, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 450ms;
}
.language-switcher-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.language-switcher-modal.is-active .language-switcher-modal__inner {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.language-switcher-modal__inner {
  position: relative;
  width: 245px;
  padding: 16px 24px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  background-color: #0b0d1b;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: all 350ms;
}
.language-switcher-modal__inner::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  width: 100%;
  height: 12px;
  background-image: url("../assets/images/modal-top-effect.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
}
.language-switcher-modal__header {
  margin-bottom: 16px;
}
.language-switcher-modal__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #42b1db;
}
.language-switcher-modal__body {
  display: flex;
  flex-direction: column;
}
.language-switcher-modal__item {
  padding: 12px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 125ms;
}
.language-switcher-modal__item:hover {
  cursor: pointer;
  background-color: #101324;
}
.language-switcher-modal__item.is-checked {
  background-color: #101324;
}
.language-switcher-modal__item * {
  pointer-events: none;
}
.language-switcher-modal__item.is-checked .language-switcher-modal__icon {
  opacity: 1;
}
.language-switcher-modal__flag {
  margin-right: 8px;
}
.language-switcher-modal__flag-img {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.language-switcher-modal__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #778089;
  transition: all 125ms;
}
.language-switcher-modal__icon {
  opacity: 0;
  transition: all 125ms;
}
.language-switcher-modal__icon-img {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.language-switcher-modal__footer {
  margin-top: 8px;
}

.hero {
  position: relative;
  padding-top: 212px;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1482px;
  background-image: url("../assets/images/hero-home-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}
.hero--other-page {
  padding-top: 180px;
}
.hero--other-page::before {
  height: 1460px;
  background-image: url("../assets/images/hero-other-page-bg.webp");
}
.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero__logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 342px;
  height: 145px;
  margin: auto;
  border-radius: 999px;
  background-color: #42b1db;
  transform: translate(-50%, 0);
  filter: blur(48px);
  opacity: 0.5;
  z-index: -1;
}
.hero__title {
  font-size: 55px;
  font-weight: 700;
  line-height: 48px;
  color: #d1c8ad;
  font-size: 40px;
  text-shadow: 0 0 3px #000, 0 0 10px #000, 0 0 3px #000, 0 0 3px #251f19,
    0 0 3px #251f19, 0 0 3px #251f19, 0 0 3px #251f19, 0 0 3px #251f19;
  text-transform: uppercase;
}
.hero__text {
  font-size: 30px;
  font-weight: 600;
  line-height: 12px;
  color: #d1c8ad;
  font-size: 25px !important;
  text-shadow: 0 0 3px #000, 0 0 10px #000, 0 0 3px #000, 0 0 3px #251f19,
    0 0 3px #251f19, 0 0 3px #251f19, 0 0 3px #251f19, 0 0 3px #251f19;
  text-transform: uppercase;
}
.hero__line-effect {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.hero__info {
  width: 100%;
  margin-top: 40px;
}
.hero__info-item {
  margin: 0 -25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero__info-inner {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.hero__info-img {
  min-width: 120px;
  max-width: 120px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.hero__info-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 2px 0 #0b0d18, -2px 0 #0b0d18, 0 2px #0b0d18, 0 -2px #0b0d18,
    1px 1px #0b0d18, -1px -1px #0b0d18, 1px -1px #0b0d18, -1px 1px #0b0d18;
}
.hero__info-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #42b1db;
  text-transform: uppercase;
}
.hero__language-switcher {
  position: absolute;
  top: 0;
  right: 0;
}
.hero__language-switcher-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__language-switcher-effect-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.hero__language-switcher-effect-img--reverse {
  transform: rotate(180deg);
}
.hero__language-switcher-flag {
  position: relative;
  min-width: 74px;
  max-width: 74px;
  height: 74px;
  margin: 8px -74px 8px 0;
  background-image: url("../assets/images/hero-language-switcher-triangle.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 125ms;
}
.hero__language-switcher-flag:hover {
  cursor: pointer;
}
.hero__language-switcher-flag-img {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.landing-hero {
  position: relative;
  padding: 5px 0 85px 0;
}
.landing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1080px;
  background-image: url("../assets/images/landing-hero-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.landing-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing-hero__top {
  width: 100%;
  margin-bottom: 1px;
}
.landing-hero__sub-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #d4d4d4;
}
.landing-hero__text {
  font-weight: 600;
  line-height: 40px;
  color: #d1c8ad;
  font-size: 25px !important;
  text-shadow: 0 0 5px #000, 0 0 10px #000, 0 0 15px #000, 0 0 20px #3f352c,
    0 0 30px #3f352c, 0 0 40px #3f352c, 0 0 55px #3f352c, 0 0 75px #3f352c;
  text-transform: uppercase;
}
.landing-hero__text--small {
  font-size: 16px;
  line-height: 16px;
}
.landing-hero__info-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.landing-hero__info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 141px;
  height: 108px;
  margin: auto;
  background-image: url("../assets/images/landing-hero-info.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.landing-hero__title {
  font-weight: 700;
  max-width: 400px;
  line-height: 30px;
  color: #d5b56f;
  font-size: 40px;
  text-shadow: 0 0 5px #000, 0 0 10px #000, 0 0 15px #000, 0 0 20px #3f352c,
    0 0 30px #3f352c, 0 0 40px #3f352c, 0 0 55px #3f352c, 0 0 75px #3f352c;
  text-transform: uppercase;
}
.landing-hero__button-container {
  margin-top: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider__inner {
  position: relative;
  width: 1070px;
  height: 542px;
  margin-top: -50px;
  background-image: url("../assets/images/slider-bg.webp");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 5;
}
.slider__item {
  position: relative;
  height: 100%;
  padding: 0 0 0 170px;
  display: flex;
  align-items: center;
}
.slider__title {
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #7b5747;
  text-transform: uppercase;
  display: block;
}
.slider__text {
  font-family: "GT Walsheim Pro";
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #000;
}
.slider__navigation {
  margin-top: 32px;
  display: flex;
  align-items: center;
}
.slider__navigation-item {
  user-select: none;
  -webkit-user-select: none;
  filter: grayscale(50%);
  transition: all 250ms;
}
.slider__navigation-item:hover {
  cursor: pointer;
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}
.slider__navigation-item:not(:first-child) {
  margin-left: 32px;
}
.slider__img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.systems-and-dungeons__header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.systems-and-dungeons__button-container {
  display: flex;
  align-items: center;
}
.systems-and-dungeons__button-container > *:not(:first-child) {
  margin-left: 16px;
}
.systems-and-dungeons__small-line {
  margin-left: 34px;
}
.systems-and-dungeons__tab-select {
  display: flex;
  flex-direction: column;
}
.systems-and-dungeons__tab-select > *:not(:first-child) {
  margin-top: 24px;
}
.systems-and-dungeons__tab-select-item {
  display: flex;
  align-items: center;
}
.systems-and-dungeons__tab-select-item:hover {
  cursor: pointer;
}
.systems-and-dungeons__tab-select-item:hover .systems-and-dungeons__tab-circle,
.systems-and-dungeons__tab-select-item.is-active
  .systems-and-dungeons__tab-circle {
  filter: grayscale(0);
}
.systems-and-dungeons__tab-select-item:hover .systems-and-dungeons__tab-text,
.systems-and-dungeons__tab-select-item.is-active
  .systems-and-dungeons__tab-text {
  color: #42b1db;
}
.systems-and-dungeons__tab-circle {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  margin-right: 16px;
  padding: 12px;
  background-image: url("../assets/images/circle-effect.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%);
  transition: all 225ms;
}
.systems-and-dungeons__tab-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.systems-and-dungeons__tab-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #778089;
  text-transform: uppercase;
  transition: all 225ms;
}
.systems-and-dungeons__img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.small-line {
  width: 12px;
  height: 111px;
  background-image: url("../assets/images/small-line.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.small-line--bottom {
  transform: rotate(180deg);
}

.tab-content__item {
  display: none;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 750ms;
}
.tab-content__item--effect-align-left {
  transform: translateX(-15px);
}
.tab-content__item.is-active {
  display: flex;
}
.tab-content__item.is-show {
  opacity: 1;
  transform: translate(0);
}

.features-slider {
  position: relative;
  min-height: 450px;
  padding: 5px 0;
}
.features-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/features-slider-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.features-slider__inner {
  padding-top: 50px;
  overflow: hidden;
}

.feature-card {
  position: relative;
  padding: 100px 24px 48px 24px;
  border: 2px solid #4b3f33;
  min-height: 396px !important;
  z-index: 1;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  bottom: 0;
  width: calc(100%);
  height: calc(100%);
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 5px;
  z-index: 1;
}
.feature-card * {
  z-index: 5;
}
.feature-card__header {
  position: relative;
}
.feature-card__character {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  z-index: -1;
}
.feature-card__line {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.feature-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.feature-card__title {
  margin: 14px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 34px;
  color: #d5b56f;
  text-transform: uppercase;
  text-shadow: 0 0 5px #000;
}
.feature-card__text {
  font-family: "GT Walsheim Pro";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #d1c8ad;
  text-shadow: 0 0 5px #000;
}

.auth-widget {
  position: relative;
  padding: 24px 108px 24px 24px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  border-radius: 5px;
  background-color: #0b0d1b;
  display: flex;
  flex-direction: column;
}
.auth-widget::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -30px;
  width: 200px;
  height: 301px;
  background-image: url("../assets/images/auth-widget-character.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.auth-widget::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 5px;
  background: linear-gradient(#0b0d1b, #0b0d1b) padding-box,
    linear-gradient(to bottom, rgba(219, 121, 66, 0) 0%, rgb(138 196 255) 100%)
      border-box;
  z-index: 1;
}
.auth-widget > * {
  z-index: 5;
}
.auth-widget__header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.auth-widget__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  text-transform: uppercase;
}
.auth-widget__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #778089;
  text-transform: uppercase;
}
.auth-widget__footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

.game-download-widget {
  position: relative;
  width: 100%;
  height: 210px;
  padding: 36px 20px;
  border-radius: 5px;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  transition: all 125ms;
  z-index: 1;
}
.game-download-widget:hover::before {
  cursor: pointer;
  transform: scale(1.05);
}
.game-download-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/game-download-widget-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 250ms;
}
.game-download-widget__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.game-download-widget__logo {
  margin-bottom: 12px;
}
.game-download-widget__logo-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.game-download-widget__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 0 #0b0d18, -2px 0 #0b0d18, 0 2px #0b0d18, 0 -2px #0b0d18,
    1px 1px #0b0d18, -1px -1px #0b0d18, 1px -1px #0b0d18, -1px 1px #0b0d18;
}
.game-download-widget__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
}

.social-media {
  display: flex;
  flex-direction: column;
}
.social-media__item {
  padding: 12px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  background-color: #0b0d1b;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: all 125ms;
}
.social-media__item:hover {
  cursor: pointer;
  border-color: #569fff;
  box-shadow: 0px 0px 48px 0px rgb(81, 121, 206) inset;
}
.social-media__item:not(:first-child) {
  margin-top: 20px;
}
.social-media__item:hover .social-media__icon {
  color: #42b1db;
}
.social-media__item:hover .social-media__icon::before {
  background-image: url("../assets/images/circle-effect-two-hover.webp");
  filter: grayscale(0);
}
.social-media__item:hover .social-media__text {
  color: #42b1db;
}
.social-media__icon {
  position: relative;
  min-width: 56px;
  max-width: 56px;
  height: 56px;
  margin-right: 12px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #778089;
  z-index: 1;
}
.social-media__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/circle-effect-two.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  filter: grayscale(125%);
  transition: all 125ms;
}
.social-media__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #778089;
}
.social-media__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #778089;
  text-transform: uppercase;
  transition: all 125ms;
}

.footer {
  position: relative;
  margin-top: 75px;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/footer-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__inner > *:not(:first-child) {
  margin-top: 26px;
}
.footer__list {
  margin-top: -10px;
  margin-left: -40px;
  margin-right: -40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__list--type-two {
  margin-left: -20px;
  margin-right: -20px;
}
.footer__list--type-two .footer__list-item {
  margin-left: 20px;
  margin-right: 20px;
}
.footer__list--type-two .footer__list-link {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  width: 100%;
  height: 100%;
  color: #d2c7a8;
  background-image: url(../assets/images/btn2.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__list-item {
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.footer__list-link {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  width: 100%;
  height: 100%;
  color: #d2c7a8;
  border-radius: 8px;
  padding-right: 10px;
  padding-left: 10px;
  border: 1px solid #5d4b35;
  -webkit-box-shadow: 0px 0px 31px 2px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 31px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 31px 2px rgba(0, 0, 0, 0.35);
  background-image: url(../assets/images/btn3.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__list-link:hover {
  background-image: url(../assets/images/btn5.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #908a78;
  text-transform: uppercase;
}

.language-switcher-widget {
  position: relative;
  padding: 26px 24px 26px 12px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  border-radius: 5px;
  background-color: #080d1b;
}
.language-switcher-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 5px;
  background: linear-gradient(#0b0d1b, #0b0d1b) padding-box,
    linear-gradient(to bottom, rgba(219, 121, 66, 0) 0%, rgb(138 196 255) 100%)
      border-box;
  z-index: 1;
}
.language-switcher-widget * {
  z-index: 5;
}
.language-switcher-widget__circle {
  position: relative;
  min-width: 56px;
  max-width: 56px;
  height: 56px;
  margin-right: 12px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.language-switcher-widget__circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/circle-effect-two.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
}
.language-switcher-widget__icon-img {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  outline: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  filter: grayscale(0);
}
.language-switcher-widget__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}
.image-slider__item {
  width: 100%;
  height: 100%;
}
.image-slider__img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.image-slider__pagination {
  position: absolute;
  left: 16px !important;
  bottom: 10px !important;
  z-index: 15;
}
.image-slider__pagination .swiper-pagination-bullet {
  width: 32px !important;
  height: 8px !important;
  border-radius: 0 !important;
  background-color: #0a0c18;
  opacity: 1;
  transition: all 250ms;
}
.image-slider__pagination .swiper-pagination-bullet-active {
  background-color: #42b1db;
}

.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #0c0d1a;
  border-radius: 5px;
  padding: 10px;
}

.description--type-two {
  padding: 32px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  border-radius: 5px;
}
.description__text {
  font-family: "GT Walsheim Pro";
  font-size: 12px;
  font-weight: 500;
  padding: 6px;
  color: #778089;
}

.description__text a {
  color: #778089; /* Ä°stediÄŸiniz renk */
  text-decoration: none; /* Alt Ã§izgiyi kaldÄ±rÄ±r */
  font-weight: bold; /* KalÄ±n yazÄ± */
  transition: transform 0.3s ease, color 0.3s ease; /* Animasyon ekler */
  font-size: small;
}

.description__text a:hover {
  color: #005bb5; /* Hover sÄ±rasÄ±nda farklÄ± renk */
  transform: scale(1.1); /* Hover sÄ±rasÄ±nda bÃ¼yÃ¼t */
  font-size: large;
}

.sidebar-widget {
  position: relative;
  padding: 24px 16px;
  border: 1px solid rgba(119, 128, 137, 0.1);
  background-color: #0b0d1b;
  display: flex;
  flex-direction: column;
}
.sidebar-widget--padding-top-medium {
  padding: 30px 16px 24px 16px;
}
.sidebar-widget--two-effect::before {
  background-image: url("../assets/images/sidebar-widget-top-effect-two.webp");
}
.sidebar-widget--two-effect::after {
  background: radial-gradient(
    50% 50% at 50% 50%,
    #42b1db 0%,
    rgba(219, 121, 66, 0) 100%
  );
}
.sidebar-widget--three-effect::before {
  background-image: url("../assets/images/sidebar-widget-top-effect-three.webp");
  filter: grayscale(150%);
}
.sidebar-widget--three-effect::after {
  content: none !important;
}
.sidebar-widget::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  width: 100%;
  height: 12px;
  background-image: url("");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sidebar-widget::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #42b1db 0%,
    rgba(219, 121, 66, 0) 100%
  );
}
.sidebar-widget__header {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.sidebar-widget__icon {
  margin-right: 8px;
}
.sidebar-widget__icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.sidebar-widget__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
}
.sidebar-widget__title--big {
  font-size: 32px;
  line-height: 32px;
}
.sidebar-widget__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #42b1db;
  text-transform: uppercase;
}
.sidebar-widget__brace {
  margin: 12px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.sidebar-widget__effect-left {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 72px;
  height: 72px;
  background-image: url("../assets/images/corner-left.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  filter: grayscale(150%);
}
.sidebar-widget__effect-right {
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 72px;
  height: 72px;
  background-image: url("../assets/images/corner-right.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  filter: grayscale(150%);
}

.table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table--none-fixed-layout {
  table-layout: initial;
}
.table--type-two .table__thead::after {
  margin: 8px 0;
}
.table--type-two .table__thead-tr {
  border: 1px solid #101327;
  background-color: #0a0c18;
}
.table--type-two .table__thead-th {
  padding: 16px !important;
  border-radius: 0 !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.table--type-two .table__tbody-tr {
  background-color: #101220;
}
.table--type-two .table__tbody-tr:nth-child(even) {
  background-color: #0a0c18;
}
.table--type-two .table__tbody-td {
  padding: 16px;
  border-radius: 0 !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.table__thead {
  width: 100%;
}
.table__thead::after {
  content: "";
  display: block;
  text-indent: 0;
  margin: 16px 0;
}
.table__thead-tr {
  position: relative;
  background-color: #070912;
  z-index: 1;
}
.table__thead-th {
  padding: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #778089;
  vertical-align: middle;
  text-align: right;
}
.table__thead-th:first-child {
  border-radius: 8px 0 0 8px;
}
.table__thead-th:last-child {
  padding-right: 32px;
  border-radius: 0 8px 8px 0;
}
.table__thead-th--left {
  text-align: left;
}
.table__thead-th--center {
  text-align: center;
}
.table__thead-th--right {
  text-align: right;
}
.table__tbody-tr {
  position: relative;
  background-color: #101324;
  z-index: 1;
}
.table__tbody-tr:nth-child(even) {
  background-color: #0a0c18;
}
.table__tbody-td {
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #778089;
  vertical-align: middle;
}
.table__tbody-td:first-child {
  border-radius: 8px 0 0 8px;
}
.table__tbody-td:last-child {
  border-radius: 0 8px 8px 0;
}
.table__tbody-td--left {
  text-align: left;
}
.table__tbody-td--center {
  text-align: center;
}
.table__tbody-td--right {
  text-align: right;
}
.table__tbody-td--padding-right-medium {
  padding-right: 32px;
}
.table__small-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #778089;
}
.table__avatar {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border: 3px solid rgba(219, 121, 66, 0.35);
  border-radius: 999px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.sorting {
  padding: 24px;
  border: 1px solid rgba(119, 128, 137, 0.1);
  background-color: #080d1b;
  display: flex;
  flex-direction: column;
}
.sorting__header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.sorting__logo {
  margin-right: 16px;
}
.sorting__logo-img {
  min-width: 87px;
  max-width: 87px;
}
.sorting__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  text-transform: uppercase;
}
.sorting__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #778089;
  text-transform: uppercase;
}
.sorting__tab-item {
  padding: 16px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  background-color: #0a0c18;
  display: flex;
  align-items: center;
  transition: all 125ms;
}
.sorting__tab-item:hover {
  cursor: pointer;
  border-color: #42b1db;
  background-color: #101324;
}
.sorting__tab-item.is-active {
  border-color: #42b1db;
  background-color: #101324;
}
.sorting__tab-item:hover .sorting__tab-text,
.sorting__tab-item.is-active .sorting__tab-text {
  color: #fff;
}
.sorting__tab-icon {
  margin-right: 12px;
}
.sorting__tab-icon-img {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.sorting__tab-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #778089;
  transition: all 125ms;
}

.video-widget {
  position: relative;
  width: 100%;
  height: 210px;
  padding: 24px;
  border: 1px solid #42b1db;
  border-radius: 5px;
  background-color: #0b0d1b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.video-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/video-widget-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
  z-index: -1;
}
.video-widget:hover {
  cursor: pointer;
}
.video-widget:hover .video-widget__play-icon {
  transform: scale(1.1);
}
.video-widget__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
}
.video-widget__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #42b1db;
  text-transform: uppercase;
}
.video-widget__play-icon {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 0;
  width: max-content;
  margin: auto;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
  transition: all 250ms;
}

.video-widget video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Video iÃ§eriÄŸini tam boyuta Ã¶lÃ§ekle */
  border-radius: 5px;
  z-index: 10; /* DiÄŸer tÃ¼m iÃ§eriklerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸla */
  display: none; /* BaÅŸlangÄ±Ã§ta gizli */
}

.video-widget__content {
  display: none;
}

.video-widget.playing .video-widget__content {
  display: none; /* Ä°Ã§eriÄŸi gizler */
}

.video-widget.playing video {
  display: block; /* Videoyu gÃ¶sterir */
}

.download__header {
  margin-bottom: 16px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  border-radius: 5px;
  padding: 16px 32px 16px 16px;
  background-color: #080d1b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download__body {
  display: flex;
  flex-direction: column;
  background-color: #0b0d1b;
}
.download__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #778089;
}
.download__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #778089;
  text-transform: uppercase;
}
.download__item {
  position: relative;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 125ms;
}
.download__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #42b1db 0%,
    rgba(219, 121, 66, 0) 100%
  );
  box-shadow: 0px 0px 16px 0px #42b1db;
  opacity: 0;
  transition: all 125ms;
}
.download__item:hover {
  cursor: pointer;
  border-color: #42b1db;
}
.download__item:hover::before {
  opacity: 0.75;
}
.download__item:not(:first-child) {
  margin-top: 8px;
}
.download__item:hover .download__button {
  background-color: #42b1db;
  color: #fff;
}
.download__circle {
  position: relative;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  margin-right: 16px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download__circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/circle-effect-two.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
}
.download__img {
  min-width: 24px;
  max-width: 24px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.download__button {
  border: 0;
  outline: 0;
  height: 32px;
  padding: 8px 18px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  border-radius: 5px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Markazi Text";
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #778089;
  text-transform: uppercase;
  transition: all 125ms;
}
.download__button:hover {
  cursor: pointer;
  background-color: #42b1db;
  color: #fff;
}

.page-header {
  width: 100%;
  height: 64px;
  padding: 20px 42px 20px 20px;
  border-radius: 5px;
  background-image: url("../assets/images/page-header-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-header__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 0 #0b0d18, -2px 0 #0b0d18, 0 2px #0b0d18, 0 -2px #0b0d18,
    1px 1px #0b0d18, -1px -1px #0b0d18, 1px -1px #0b0d18, -1px 1px #0b0d18;
}
.page-header__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #42b1db;
  text-transform: uppercase;
}

.box {
  padding: 24px;
  border: 1px solid rgba(119, 128, 137, 0.2);
  border-radius: 5px;
  background-color: #080d1b;
  display: flex;
  flex-direction: column;
}
.box__field {
  display: flex;
  align-items: center;
}
.box__field-left {
  width: 125px;
}

.add-game-money__main {
  padding: 0 0 16px 0;
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 25px;
}
.add-game-money__main > * {
  scroll-snap-align: center;
}
.add-game-money__main::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.add-game-money__main::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #000000;
}
.add-game-money__main::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background-color: #42b1db;
  border: 3px none #ffffff;
}
.add-game-money__item {
  min-width: 178px;
  max-width: 178px;
}
.add-game-money__item:not(:first-child) {
  margin-left: 16px;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0c18;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 125ms;
}
.card:hover {
  cursor: pointer;
  border-color: #42b1db;
}
.card.is-checked {
  border-color: #42b1db;
}
.card__header {
  width: 100%;
  height: 95px;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}
.card__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #778089;
}

.select-with-checkbox {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0c18;
  display: flex;
  align-items: center;
  transition: all 125ms;
}
.select-with-checkbox:hover {
  cursor: pointer;
  border-color: #42b1db;
}
.select-with-checkbox.is-checked {
  border-color: #42b1db;
}
.select-with-checkbox.is-checked__text {
  color: #fff;
}
.select-with-checkbox .checkbox:checked > label {
  border-color: red;
}
.checkbox:checked + .select-with-checkbox__text {
  color: #fff;
}
.select-with-checkbox__text {
  margin-left: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #778089;
  text-transform: uppercase;
  transition: all 125ms;
}

.input-style-box {
  width: 100%;
  height: 56px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0c18;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #778089;
  text-transform: uppercase;
}

.bank-account {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0c18;
  display: flex;
  flex-direction: column;
  transition: all 125ms;
}
.bank-account:hover {
  cursor: pointer;
  border-color: #42b1db;
}
.bank-account.is-checked {
  border-color: #42b1db;
  cursor: default;
}
.bank-account.is-checked .bank-account__do-main-account {
  display: none;
}
.bank-account.is-checked .bank-account__main-account {
  display: block;
}
.bank-account.is-checked .bank-account__title--white {
  color: #42b1db;
}
.bank-account__header {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bank-account__logo-img {
  height: 32px;
}
.bank-account__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #42b1db;
  text-transform: uppercase;
  transition: all 125ms;
}
.bank-account__title--white {
  color: #fff;
}
.bank-account__main-account {
  display: none;
}
.bank-account__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #778089;
  text-transform: uppercase;
}
.bank-account__body {
  display: flex;
  flex-direction: column;
}
.bank-account__select {
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  padding: 10px;
  border-radius: 5px;
  background-color: #0a0c18 !important;
  font-family: "Markazi Text";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #42b1db;
  text-transform: uppercase;
}
.bank-account__select:hover {
  cursor: pointer;
}

.info-card {
  padding: 12px 10px 12px 12px;
  border: 1px solid transparent;
  background-color: #0a0c18;
  display: flex;
  align-items: center;
}
.info-card.is-active {
  border-color: #42b1db;
  background-color: #101324;
}
.info-card.is-active .info-card__circle::before {
  background-image: url("../assets/images/circle-effect-three.webp");
  filter: grayscale(0);
}
.info-card__circle {
  position: relative;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  margin-right: 8px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-card__circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/circle-effect-two.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
}
.info-card__circle * {
  filter: grayscale(0);
}
.info-card__icon-img {
  min-width: 24px;
  max-width: 24px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.info-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #778089;
  text-transform: uppercase;
}
.info-card__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
}

.info-container {
  padding: 12px 20px;
  border: 1px solid #778089;
  border-radius: 5px;
  background-image: url("../assets/images/info-container-bg.webp");
  background-position: center;
  background-size: contain;
  display: flex;
  flex-direction: column;
}
.info-container__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
}

.circle-icon {
  position: relative;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 125ms;
}
.circle-icon:hover::before {
  cursor: pointer;
  filter: grayscale(0);
}
.circle-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/circle-effect-two.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(150%);
  transition: all 125ms;
}
.circle-icon.is-active::before {
  filter: grayscale(0);
}
.circle-icon__img {
  min-width: 42px;
  max-width: 42px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.box-information {
  padding: 16px;
  background-color: #101324;
  display: flex;
  align-items: center;
}
.box-information__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #778089;
  text-transform: uppercase;
}

.w-100 {
  width: 100% !important;
}

.w-max {
  width: max-content !important;
}

.h-100 {
  height: 100% !important;
}

.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-initial {
  overflow: initial !important;
}

.cursor-default {
  cursor: default !important;
}

.font-markazi-text {
  font-family: "Markazi Text" !important;
}

.font-gt-walsheim-pro {
  font-family: "GT Walsheim Pro" !important;
}

.text-regular {
  font-weight: 400 !important;
}

.text-semibold {
  font-weight: 600 !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-primary {
  color: #42b1db !important;
}

.text-secondary {
  color: #778089 !important;
}

.text-yellow {
  color: #42b1db !important;
}

.text-white {
  color: #fff !important;
}

.text-center {
  text-align: center !important;
}
@media (max-width: 992px) {
  .text-center\@mobile-or-tablet {
    text-align: center !important;
  }
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: #fff;
  text-transform: uppercase;
}
.section-title--small {
  font-size: 24px;
  line-height: 24px;
}

.section-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #778089;
}
.section-text--small {
  font-size: 14px;
  line-height: 24px;
}
.section-text--medium {
  font-size: 20px;
  line-height: 24px;
}

.section-space-top {
  margin-top: 120px;
}
.section-space-top--xsmall {
  margin-top: 64px;
}
.section-space-top--small {
  margin-top: 80px;
}
.section-space-top--medium {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .section-space-top--medium {
    margin-top: 40px;
  }
}
.section-space-bottom {
  margin-bottom: 120px;
}
.section-space-bottom--xsmall {
  margin-bottom: 64px;
}
.section-space-bottom--small {
  margin-bottom: 80px;
}
.section-space-bottom--medium {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section-space-bottom--medium {
    margin-top: 40px;
  }
}

@media (max-width: 992px) {
  .hidden\@mobile-or-tablet {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden\@desktop {
    display: none !important;
  }
}

/**
 *
 * Responsive
 *
 */
/**
 *
 * Utilities
 *
 */
@media (max-width: 390px) {
  .button--type-five {
    min-width: 175px;
    font-size: 20px;
    line-height: 20px;
  }
  .button--type-five::before {
    height: 32px;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .hero::before {
    height: 986px;
    background-image: url("../assets/images/hero-home-mobile-bg.webp");
  }
  .footer::before {
    height: 100%;
    background-image: url("../assets/images/footer-mobile-bg.webp");
  }
  .landing-hero::before {
    background-image: url("../assets/images/mlanding-hero-bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 992px) {
  .has-scroll-none {
    padding-right: 0;
  }
  .has-scroll-none .header {
    right: 0;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .button--type-seven::before {
    background-size: cover;
  }
  .modal {
    padding-top: 50px;
    align-items: flex-start;
  }
  .modal__inner {
    width: 100%;
    height: 100%;
  }
  .modal__body {
    height: calc(100% - 95px);
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .modal__tab-text {
    font-size: 16px;
    line-height: 24px;
  }
  .header {
    padding: 24px 18px;
  }
  .header__left-side {
    padding: 0 10px;
  }
  .header__right-side {
    padding: 0 5px;
    justify-content: flex-end;
  }
  .header__container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo--hero .logo__img {
    max-width: 180px;
  }
  .game-download-button {
    width: 194px;
    height: 65px;
    background-size: cover;
    font-size: 15px;
    line-height: 15px;
  }
  .game-download-button-secondary-text {
    font-size: 10px;
    line-height: 10px;
  }
  .game-download-button--landing {
    width: 301px;
    height: 101px;
    font-size: 24px;
    line-height: 24px;
  }
  .game-download-button--landing-secondary-text {
    font-size: 16px;
    line-height: 16px;
  }
  .hero {
    padding-top: 100px;
  }
  .hero__language-switcher {
    display: none;
  }
  .hero__title {
    font-size: 32px;
    line-height: 32px;
  }
  .hero__text {
    font-size: 18px;
    line-height: 24px;
  }
  .hero__info {
    margin-top: 20px;
  }
  .hero__info-item {
    margin: 0;
    padding-left: 55px;
    flex-direction: row;
    justify-content: flex-start;
  }
  .hero__info-inner {
    margin-top: 0;
    margin-left: 16px;
    text-align: left;
  }
  .hero__info-img {
    min-width: 96px;
    max-width: 96px;
  }
  .auth-widget {
    overflow: hidden;
  }
  .auth-widget::before {
    top: -40px;
    right: -85px;
    transform: rotate(-10deg);
  }
  .auth-widget.has-login {
    padding-right: 60px;
  }
  .footer {
    margin-top: 90px;
    padding-bottom: 40px;
  }
  .footer__inner > *:not(:first-child) {
    margin-top: 32px !important;
  }
  .footer__list {
    margin-top: 40px !important;
    flex-direction: column;
    align-items: center;
  }
  .footer__list--type-two {
    flex-direction: row;
  }
  .table {
    table-layout: initial;
  }
  .table-container {
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
  }
  .sorting {
    padding: 24px 16px;
    overflow: hidden;
  }
  .sorting__logo {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .page-header {
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .page-header__text {
    line-height: 16px;
  }
  .add-game-money__main {
    margin: 0 -24px;
    padding: 0 24px 16px 24px;
  }
  .box-information {
    text-align: center;
  }
  .landing-hero__title {
    font-size: 45px;
    line-height: 35px;
  }
  .landing-hero__text {
    font-size: 30px;
    line-height: 30px;
  }
  .slider__inner {
    width: 345px;
    height: 565px !important;
    background-image: url("../assets/images/slider-bg-mobile.webp");
  }
  .slider__title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 24px;
  }
  .slider__text {
    font-family: "GT Walsheim Pro";
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: #000;
  }

  .feature-card__title {
    margin: 14px 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    color: #d5b56f;
    text-transform: uppercase;
    text-shadow: 0 0 5px #000;
  }

  .slider__item {
    padding: 40px 16px 0 16px;
    text-align: center;
  }
  .slider__navigation {
    justify-content: center;
  }
  .slider__navigation-item:not(:first-child) {
    margin-left: 8px;
  }
  .slider__navigation-img {
    min-width: 30px;
    max-width: 30px;
  }
  .slider__img {
    min-width: 250px;
    max-width: 250px;
    margin-bottom: -19px;
  }
  .systems-and-dungeons {
    overflow: hidden;
  }
  .systems-and-dungeons__button-container {
    width: 100%;
    flex-direction: column;
  }
  .systems-and-dungeons__button-container > *:not(:first-child) {
    margin-left: 0;
    margin-top: 8px;
  }
  .systems-and-dungeons__tab-select {
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .systems-and-dungeons__tab-select-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .systems-and-dungeons__tab-select-item:not(:first-child) {
    margin-top: 0;
    margin-left: 32px;
  }
  .systems-and-dungeons__tab-circle {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .systems-and-dungeons__tab-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .systems-and-dungeons__tab-content-item {
    flex-direction: column;
    justify-content: center;
  }
  .systems-and-dungeons__small-line {
    position: absolute;
    top: 0;
    left: -5rem;
    bottom: 0;
    width: 111px;
    height: 12px;
    margin: auto 0 !important;
    margin-left: 0;
    background-image: url("../assets/images/small-line-mobile.webp");
  }
  .systems-and-dungeons__small-line--bottom {
    left: auto;
    right: -5rem;
  }
  .features-slider__inner {
    margin: 0 -1rem;
    padding: 50px 1rem 0 1rem;
  }
  .features-slider .slider__navigation-item:not(:first-child) {
    margin-left: 32px;
  }
  .features-slider .slider__navigation-img {
    min-width: 48px;
    max-width: 48px;
  }
  .feature-card__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .widgets {
    margin-top: 45px;
  }
  .landing-hero::before {
    background-image: url("../assets/images/mlanding-hero-bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (min-width: 992px) and (max-width: 1425px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .header__inner {
    padding: 0 35px;
  }
  .landing-hero::before {
    background-image: url("../assets/images/mlanding-hero-bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .header__list-item:not(:first-child) {
    margin-left: 45px;
  }
  .auth-widget {
    padding-right: 75px;
  }
  .auth-widget::before {
    width: 160px;
    height: 240px;
  }
  .auth-widget__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .language-switcher-widget {
    padding: 24px;
  }
} /*# sourceMappingURL=main.css.map */

.bar {
  padding: 10px;
  margin: 2px;
  color: #333;
  background: #fafafa;
  border: 1px solid #ccc;
}

.info {
  color: #204a8e;
  background: #c9ddff;
  border: 1px solid #4c699b;
}

.success {
  color: #2b7515;
  background: #ecffd6;
  border: 1px solid #617c42;
}

.warn {
  color: #756e15;
  background: #fffbd1;
  border: 1px solid #87803e;
}

.error {
  color: #ba3939;
  background: #ffe0e0;
  border: 1px solid #a33a3a;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 4px solid #ccc; /* Arka plan Ã§emberi */
  border-top: 4px solid #007bff; /* DÃ¶nen kÄ±smÄ±n rengi */
  border-radius: 50%; /* Ã‡ember yapar */
  animation: spin 1s linear infinite; /* Animasyonu ekler */
}

.payment-methods {
  width: 180px;
  height: 70px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  background: transparent;
  /* background-color: #8e4427; */
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 5px;
}

.payment-methods img {
  width: 75%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease;
}

.payment-methods:hover img {
  width: 80%; /* BÃ¼yÃ¼me oranÄ±nÄ± ayarlayabilirsiniz */
  height: auto;
  transform: translate(-50%, -50%) scale(1.1); /* BÃ¼yÃ¼me oranÄ±nÄ± ayarlayabilirsiniz */
}

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

.telegram-widget {
  z-index: 9;
  position: fixed;
  left: 5px;
  bottom: 75px;
}

.discord-widget {
  z-index: 9;
  position: fixed;
  left: 5px;
  bottom: 150px;
}

.whatsapp-widget {
  z-index: 9;
  position: fixed;
  left: 5px;
  bottom: 225px;
}

.forum-widget {
  z-index: 9;
  position: fixed;
  left: 5px;
  bottom: 1px;
}

.discord-widget img {
  width: 100%;
}

.telegram-widget:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}

.forum-widget:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}

.discord-widget:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}

.whatsapp-widget:hover {
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  background: linear-gradient(90deg, #ff4d4d 0%, #ff0000 100%);
  border: none;
  /* color: white; */
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Markazi Text";
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 5px #000;
}

.dropdown-toggle:hover {
  background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
  filter: brightness(125%);
  -webkit-filter: brightness(125%);
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(10, 12, 24, 0.95);
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  top: calc(100% + 5px);
  left: 0;
  border: 1px solid #4b3f33;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-item {
  color: #d1c8ad;
  padding: 16px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(75, 63, 51, 0.3);
  font-family: "Markazi Text";
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.dropdown-item .tag {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.dropdown-item .tag.new {
  background-color: #42b1db;
  color: #fff;
}

.dropdown-item .tag.popular {
  background-color: #ff4d4d;
  color: #fff;
}

.dropdown-item .tag.event {
  background-color: #d5b56f;
  color: #fff;
}

.dropdown-item .tag.crowded {
  background-color: #ff9900;
  color: #fff;
}

.dropdown-item .tag.green {
  background-color: #4caf50;
  color: #fff;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(213, 181, 111, 0.1);
  color: #d5b56f;
  text-shadow: 0 0 5px #000;
}

/* Dropdown menü için yeni stil */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 5px;
  background: transparent;
}
