:root {
  --background-color-base: #152215;
  --background-color-header: #152215;
  --background-color-footer: #152215;
  --background-color-content: #152215;
  --color-text-base: #f3f3f3;
  --color-accent: #d50509;
  --color-border: #4c0366;
  --border-radius: 9px;
  --border: 1px solid var(--color-border);

  --box-shadow:
    rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

* {
  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: #380240 transparent;
}

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

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

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

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

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

.laki_laki_1550_header .laki_laki_1550_wrapper {
  justify-content: space-between;
  align-items: center;
}

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

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

.laki_laki_1550_button {
  display: inline-block;
  text-align: center;
  height: 49px;
  line-height: 49px;
  padding: 0 40px;
  border-radius: var(--border-radius);
  background: linear-gradient(91deg, #ff4e6f -43.31%, #a80003 141.95%);
  color: var(--color-text-base);
  background-size: 400% 400%;
  box-shadow: 0 4px 15px 5px #ca261a52;
  animation: gradientFlow 2s ease infinite;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.12px;
  transition: all 0.5s;
}

.laki_laki_1550_button__second {
  background: transparent;
  border: 1px solid #f9e851;
  line-height: 47px;
  color: #fff;
  box-shadow: none;
}

.laki_laki_1550_button__desktop {
  display: inline-block;
}

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

.laki_laki_1550_main {
  margin-top: 120px;
}

.laki_laki_1550_main .laki_laki_1550_wrapper {
  flex-direction: column;
}

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

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

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

.laki_laki_1550_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;
}

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

.laki_laki_1550_banner__button {
  width: 280px;
}

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

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

.laki_laki_1550_games__button {
  display: inline-block;
  position: absolute;
  width: 90%;
  bottom: 35%;
  transition: all 0.3s;
}

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

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

.laki_laki_1550_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;
  text-align: center;
}

table td,
table th {
  border: var(--border);
  padding: 10px;
}

table tr:hover {
  background-color: var(--color-border);
}

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

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

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

.laki_laki_1550_footer .laki_laki_1550_wrapper {
  flex-direction: column;
}

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

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

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

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

  .laki_laki_1550_banner__link {
    justify-content: center;
  }

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

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

@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;
  }

  .laki_laki_1550_games__list {
    overflow: auto;
  }

  .laki_laki_1550_games__list {
    overflow: auto;
  }

  .laki_laki_1550_games__item {
    width: 50%;
  }

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

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

  .laki_laki_1550_wrapper {
    padding: 5px;
  }

  .laki_laki_1550_content {
    padding: 10px;
  }

  .laki_laki_1550_banner__button {
    width: fit-content;
  }

  .laki_laki_1550_games__item {
    width: 100%;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  to {
    background-position: 0% 50%;
  }
}
