:root {
  --background-color-base: #1e1e1f;
  --background-color-header: #121213;
  --background-color-footer: #121213;
  --background-color-aside: #1e1e1f;
  --background-color-content: #1e1e1f;
  --color-text-base: #f3f3f3;
  --color-accent: #ffdf5e;
  --color-border: #ffdf5e;
  --border-radius: 10px;
  --border: 1px solid var(--color-border);

  --box-shadow: 0 18px 10px rgba(0, 0, 0, 0.6);
}

* {
  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;
}

.jc1311_body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  background-color: var(--background-color-base);
  color: var(--color-text-base);
}

.jc1311_content-with-sidebar-wrapper {
  display: flex;
  gap: 20px;
}

.jc1311_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);
}

.jc1311_aside__item {
  margin: 0;
}

.jc1311_aside__item:hover {
  background-color: #1e3f1f;
}

.jc1311_aside__title {
  color: #79818b;
  margin: 0 20px;
}

.jc1311_aside__list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #27272a;
  border-bottom: 1px solid #27272a;
}

.jc1311_aside__list:first-child {
  border-top: none;
}

.jc1311_aside__link {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 40px;
  margin: 0 20px;
}

.jc1311_aside__link_active {
  color: var(--color-accent);
}

.jc1311_aside__link:hover {
  color: #fff;
}

.jc1311_aside__text {
  margin: 0;
}

.jc1311_aside__link svg {
  width: 20px;
  height: 20px;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

.jc1311_container {
  display: flex;
  flex-direction: row;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.jc1311_header {
  background-color: var(--background-color-header);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: var(--box-shadow);
}

.jc1311_header .jc1311_container {
  justify-content: space-between;
  align-items: center;
}

.jc1311_header__buttons {
  display: flex;
  gap: 12px;
}

.jc1311_logo {
  width: 150px;
  height: auto;
}

.jc1311_button {
  display: inline-block;
  text-align: center;
  height: 45px;
  line-height: 41px;
  padding: 0 20px;
  border-radius: var(--border-radius);
  background: var(--color-accent);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.12px;
  transition: all 0.5s;
  border: 2px solid transparent;
  text-transform: uppercase;
}

.jc1311_button__second {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-accent);
  box-shadow: none;
}

.jc1311_button__desktop {
  display: inline-block;
}

.jc1311_button__mobile {
  display: none;
}

@media (max-width: 767px) {
  .jc1311_button__desktop {
    display: none;
  }
  .jc1311_button__mobile {
    display: block;
  }
}

.jc1311_main {
  margin-top: 120px;
}

.jc1311_main .jc1311_container {
  flex-direction: column;
}

.jc1311_banner {
  background-image: url("/img/banner.jpeg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  /* border: var(--border); */
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.jc1311_banner__link {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.jc1311_banner__content {
  text-align: center;
  padding: 30px;
  margin: 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);
}

.jc1311_banner__label {
  display: inline-block;
  background-color: #fff;
  color: #000;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

.jc1311_banner__text {
  font-size: 30px;
  font-weight: 900;
  margin: 0;
  text-align: center;
  color: #fc0;
  text-transform: uppercase;
}

.jc1311_banner__button {
  width: 280px;
}

.jc1311_bonus {
  margin-bottom: 20px;
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.jc1311_bonus__link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 30px;
  background-color: var(--background-color-second);
  border-radius: var(--border-radius);
}

.jc1311_bonus__column {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.jc1311_bonus__column:first-child {
  flex: 1 1 100%;
}

.jc1311_bonus__text {
  margin: 0;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 30px;
  margin: 0 30px;
  text-transform: uppercase;
  font-weight: 900;
}

.jc1311_bonus__buttons {
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 250px;
  gap: 10px;
}

.jc1311_content {
  width: 100%;
  padding: 40px;
  /* background-color: var(--background-color-content); */
  background: repeating-linear-gradient(
    125deg, #2c260c,
    rgba(77, 77, 77, 0.1) 2px,
    rgba(77, 77, 77, 0) 0,
    rgba(77, 77, 77, 0) 7px
  );
  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;
}

.jc1311_footer {
  background-color: var(--background-color-footer);
}

.jc1311_footer .jc1311_container {
  flex-direction: column;
}

.jc1311_footer__content,
.jc1311_footer__text {
  width: 100%;
  text-align: center;
}

.jc1311_footer__icons {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.jc1311_footer__icon {
  max-width: 150px;
}

@media (max-width: 1200px) {
  .jc1311_filter__list {
    flex-direction: column;
    width: 100%;
  }

  .jc1311_banner__link {
    justify-content: center;
  }

  .jc1311_banner__content {
    backdrop-filter: brightness(0.2);
  }
}

@media (max-width: 1000px) {
  .jc1311_banner__content {
    margin: 20px;
  }

  :root {
    --aside-width: 180px;
  }

  .jc1311_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;
  }

  .jc1311_aside {
    display: none;
  }

  .jc1311_games__list {
    overflow: auto;
  }

  .jc1311_bonus__link,
  .jc1311_bonus__column {
    flex-direction: column;
  }

  .jc1311_bonus__column {
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .jc1311_banner__label {
    font-size: 15px;
  }

  .jc1311_container {
    padding: 5px;
  }

  .jc1311_header .jc1311_container {
    flex-direction: column;
    gap: 7px;
  }

  .jc1311_content {
    padding: 10px;
  }

  .jc1311_banner__button {
    width: 100%;
    white-space: nowrap;
  }
}
