:root {
  --background-color-base: #2f2b2a;
  --background-color-header: #1d1b19;
  --background-color-footer: #1d1b19;
  --background-color-aside: #35302f;
  --background-color-content: #2f2b2a;
  --color-text-base: #f3f3f3;
  --color-accent: #d86928;
  --color-border: #d86928;
  --border-radius: 50px;
  --border: 2px solid var(--color-border);

  --box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.15);
}

* {
  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;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  background-color: var(--background-color-base);
  color: var(--color-text-base);
}

.temp1226_content-with-sidebar-wrapper {
  display: flex;
  gap: 20px;
}

.temp1226_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);
}

.temp1226_aside__item {
  margin: 0;
}

.temp1226_aside__item:hover {
  background-color: #1e3f1f;
}

.temp1226_aside__title {
  color: #79818b;
  margin: 0 20px;
}

.temp1226_aside__list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #27272a;
  border-bottom: 1px solid #27272a;
}

.temp1226_aside__list:first-child {
  border-top: none;
}

.temp1226_aside__link {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 40px;
  margin: 0 20px;
}

.temp1226_aside__link_active {
  color: var(--color-accent);
}

.temp1226_aside__link:hover {
  color: #fff;
}

.temp1226_aside__text {
  margin: 0;
}

.temp1226_aside__link svg {
  width: 20px;
  height: 20px;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

.temp1226_container {
  display: flex;
  flex-direction: row;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
}

.temp1226_header {
  background-color: var(--background-color-header);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: var(--box-shadow);
}

.temp1226_header .temp1226_container {
  justify-content: space-between;
  align-items: center;
}

.temp1226_header__buttons {
  display: flex;
  gap: 12px;
}

.temp1226_logo {
  width: 150px;
  height: auto;
}

.temp1226_button {
  display: inline-block;
  text-align: center;
  height: 45px;
  line-height: 41px;
  padding: 0 60px;
  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;
  position: relative;
  overflow: hidden;
}

.temp1226_button__animated:before {
  content: '';
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0.5;
  filter: blur;
  background: linear-gradient(to left, transparent 0%, #fff 40%, #fff 60%, transparent 100%);
  transform: translate(-100%, -25%) rotate(10deg);
  animation: blick 7s infinite;
}

.temp1226_button__second {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-accent);
  box-shadow: none;
}

.temp1226_button__desktop {
  display: inline-block;
}

.temp1226_button__mobile {
  display: none;
}

@media (max-width: 767px) {
  .temp1226_button__desktop {
    display: none;
  }
  .temp1226_button__mobile {
    display: block;
  }
}

.temp1226_main {
  margin-top: 120px;
}

.temp1226_main .temp1226_container {
  flex-direction: column;
}

.temp1226_banner {
  background-image: url("/img/banner.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  /* border: var(--border); */
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.temp1226_banner__link {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.temp1226_banner__content {
  text-align: center;
  padding: 30px;
  margin: 40px 50% 40px 40px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* backdrop-filter: brightness(0.2); */
  border-radius: var(--border-radius);
}

.temp1226_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;
}

.temp1226_banner__text {
  font-size: 30px;
  font-weight: 900;
  margin: 0;
  text-align: center;
  color: #dfc7b4;
  text-transform: uppercase;
}

.temp1226_banner__button {
  width: 280px;
}

.temp1226_bonus {
  margin-bottom: 20px;
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.temp1226_bonus__link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 30px;
  background-color: var(--background-color-second);
  border-radius: var(--border-radius);
}

.temp1226_bonus__column {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.temp1226_bonus__column:first-child {
  flex: 1 1 100%;
}

.temp1226_bonus__text {
  margin: 0;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 30px;
  margin: 0 30px;
  text-transform: uppercase;
  font-weight: 900;
}

.temp1226_bonus__buttons {
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 250px;
  gap: 10px;
}

.temp1226_content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--background-color-content);
  border-radius: var(--border-radius);
  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;
}

.temp1226_footer {
  background-color: var(--background-color-footer);
}

.temp1226_footer .temp1226_container {
  flex-direction: column;
}

.temp1226_footer__content,
.temp1226_footer__text {
  width: 100%;
  text-align: center;
  font-size: 12px;
  max-width: 400px;
  margin: 20px auto;
}

.temp1226_footer__icons {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.temp1226_footer__icon {
  max-width: 150px;
}

@media (max-width: 1200px) {
  .temp1226_filter__list {
    flex-direction: column;
    width: 100%;
  }

  .temp1226_banner__link {
    justify-content: center;
  }

  .temp1226_banner__content {
    backdrop-filter: brightness(0.2);
  }
}

@media (max-width: 1000px) {
  .temp1226_banner__content {
    margin: 20px;
  }

  :root {
    --aside-width: 180px;
  }

  .temp1226_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;
  }

  .temp1226_aside {
    display: none;
  }

  .temp1226_games__list {
    overflow: auto;
  }

  .temp1226_bonus__link,
  .temp1226_bonus__column {
    flex-direction: column;
  }

  .temp1226_bonus__column {
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .temp1226_banner__label {
    font-size: 15px;
  }

  .temp1226_container {
    padding: 5px;
  }

  .temp1226_header .temp1226_container {
    flex-direction: column;
    gap: 7px;
  }

  .temp1226_content {
    padding: 10px;
  }

  .temp1226_banner__button {
    width: 100%;
    white-space: nowrap;
  }
}

@keyframes blick {
  0% {
    transform: translate(-100%, -25%) rotate(10deg);
  }
  20% {
    transform: translate(100%, -25%) rotate(10deg);
  }
  100% {
    transform: translate(100%, -25%) rotate(10deg);
  }
}