:root {
  --background-color-base: linear-gradient(315deg, #091109 0%, #1e301e 75%);
  --background-color-header: #131d13;
  /* --background-color-footer: #1e301e; */
  /* --background-color-content: #1e301e; */
  --color-text-base: #f3f3f3;
  --color-accent: #d50509;
  --color-border: #2f2f2f;
  --border-radius: 11px;
  --border: 1px solid var(--color-border);

  --box-shadow:
    rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

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

/* Chrome, Edge, Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html,
body {
  scrollbar-width: none;
  scrollbar-color: #2a2e2b transparent;
}

/* IE / старый Edge */
html,
body {
  -ms-overflow-style: none;
}

.l_w_1458_body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  background: var(--background-color-base);
  color: var(--color-text-base);
}

.l_w_1458_content-with-sidebar-wrapper {
  display: flex;
  gap: 20px;
}

.l_w_1458_aside {
  padding: 0;
  background-color: var(--background-color-second);
  font-size: 14px;
  width: var(--aside-width);
  flex: 1 1 var(--aside-width);
  min-width: var(--aside-width);
  border-radius: var(--border-radius);
  border: var(--border);
  box-shadow: var(--box-shadow);
}

.l_w_1458_aside__item {
  margin: 0;
}

.l_w_1458_aside__item:hover {
  background-color: #1e3f1f;
}

.l_w_1458_aside__title {
  color: #79818b;
  margin: 0 20px;
}

.l_w_1458_aside__list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #27272a;
  border-bottom: 1px solid #27272a;
}

.l_w_1458_aside__list:first-child {
  border-top: none;
}

.l_w_1458_aside__link {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 40px;
  margin: 0 20px;
}

.l_w_1458_aside__link_active {
  color: var(--color-accent);
}

.l_w_1458_aside__link:hover {
  color: #fff;
}

.l_w_1458_aside__text {
  margin: 0;
}

.l_w_1458_aside__link svg {
  width: 20px;
  height: 20px;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

.l_w_1458_wrapper {
  display: flex;
  flex-direction: row;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.l_w_1458_header {
  background-color: var(--background-color-header);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: var(--box-shadow);
}

.l_w_1458_header .l_w_1458_wrapper {
  justify-content: space-between;
  align-items: center;
}

.l_w_1458_header__buttons {
  display: flex;
  gap: 12px;
}

.l_w_1458_header__logo svg {
  width: 110px;
  height: 50px;
}

.l_w_1458_button {
  display: inline-block;
  text-align: center;
  height: 49px;
  line-height: 45px;
  padding: 0 40px;
  border-radius: var(--border-radius);
  background: var(--color-accent);
  color: var(--color-text-base);
  box-shadow: 0 4px 15px 5px #e02c1f52;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.12px;
  transition: all 0.5s;
  border: 2px solid transparent;
}

.l_w_1458_button__second {
  background: transparent;
  border: 1px solid #f9e851;
  color: #fff;
  box-shadow: none;
}

.l_w_1458_button__desktop {
  display: inline-block;
}

@media (max-width: 767px) {
  .l_w_1458_button__desktop {
    display: none;
  }
}

.l_w_1458_main {
  margin-top: 120px;
}

.l_w_1458_main .l_w_1458_wrapper {
  flex-direction: column;
}

.l_w_1458_banner {
  background-image: url("/assets/banner.jpg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.l_w_1458_banner__link {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: left;
  align-items: center;
  min-height: 400px;
}

.l_w_1458_banner__content {
  text-align: center;
  padding: 30px;
  margin: 40px;
  max-width: 600px;
  width: 100%;
  /* backdrop-filter: brightness(0.2); */
  border-radius: var(--border-radius);
}

.l_w_1458_banner__label {
  display: inline-block;
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

.l_w_1458_banner__text {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.l_w_1458_banner__button {
  width: 280px;
}

.l_w_1458_games__list {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  white-space: nowrap;
  flex-wrap: wrap;
  margin-left: 0;
  list-style: none;
}

.l_w_1458_games__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: var(--box-shadow);
}

.l_w_1458_games__button {
  opacity: 0;
  display: inline-block;
  position: absolute;
  width: 90%;
  transition: all 0.3s;
}

.l_w_1458_games__link:hover .l_w_1458_games__button {
  opacity: 1;
}

.l_w_1458_games__item {
  width: 25%;
  padding: 10px;
  margin: 0;
}

.l_w_1458_games__img {
  width: 100%;
  border-radius: var(--border-radius);
}

.l_w_1458_content {
  width: 100%;
  padding: 40px;
  background-color: var(--background-color-content);
  border-radius: var(--border-radius);
  border: var(--border);
  box-shadow: var(--box-shadow);
}

h1 {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 30px;
}

h2 {
  font-size: 28px;
  margin: 10px 0;
}

h3 {
  font-size: 25px;
  margin: 10px 0;
}

h4 {
  font-size: 23px;
  margin: 10px 0;
}

ol,
ul {
  margin-left: 30px;
  margin-bottom: 30px;
}

ol li,
ul li {
  margin: 10px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

table td,
table th {
  border: 1px solid #555;
  text-align: center;
  padding: 10px;
}

table p {
  text-align: center;
  margin: 10px 0;
}

p {
  margin: 10px 0 30px;
  text-align: justify;
}

.l_w_1458_footer {
  background-color: var(--background-color-footer);
}

.l_w_1458_footer .l_w_1458_wrapper {
  flex-direction: column;
}

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

.l_w_1458_footer__icons {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.l_w_1458_footer__icon {
  width: auto;
  height: 30px;
  max-width: 150px;
}

@media (max-width: 1200px) {
  .l_w_1458_filter__list {
    flex-direction: column;
    width: 100%;
  }

  .l_w_1458_banner__link {
    justify-content: center;
  }

  .l_w_1458_banner__content {
    backdrop-filter: brightness(0.2);
  }
}

@media (max-width: 1000px) {
  .l_w_1458_banner__content {
    margin: 20px;
  }

  :root {
    --aside-width: 180px;
  }

  .l_w_1458_aside {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  h1 {
    margin: 10px 0;
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 19px;
  }

  table {
    display: block;
    text-align: left;
    overflow-x: auto;
    white-space: nowrap;
  }

  .l_w_1458_aside {
    display: none;
  }

  .l_w_1458_games__list {
    overflow: auto;
  }

  .l_w_1458_bonus__link,
  .l_w_1458_bonus__column {
    flex-direction: column;
  }

  .l_w_1458_bonus__column {
    margin-bottom: 20px;
  }

  .l_w_1458_games__list {
    overflow: auto;
  }

  .l_w_1458_games__item {
    width: 50%;
  }

  .l_w_1458_banner__link {
    min-height: 300px;
  }
}

@media (max-width: 400px) {
  .l_w_1458_banner__label {
    font-size: 15px;
  }

  .l_w_1458_wrapper {
    padding: 5px;
  }

  .l_w_1458_content {
    padding: 10px;
  }

  .l_w_1458_banner__button {
    width: fit-content;
  }

  .l_w_1458_games__item {
    width: 100%;
  }
}
