:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1930px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --bg: #0F0F0F;
  --bg-light: #0e2727;
  --white: #ffffff;
  --link: #00F6FF;
  --link-light: #68FAFF;
  --secondary: #00F6FF;
  --primary-gradient: linear-gradient(180deg, #41c6ff 0%, #1a64fc 100%);
  --primary-shadow: 0 0 20px 0 rgba(0, 246, 255, 0.4);
  --accent: #29E830;
  --border: 1px solid rgba(255,255,255,.15);
  --border-primary: 1px solid rgba(0, 246, 255, 0.25);
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../resources/fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  background-color: var(--bg);
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--white);
  padding-top: 51px;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  font-family: inherit;
}

main {
  flex: 1 1 auto;
}

.container,
.wrapper {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.bold {
  font-weight: 700;
}

.offset {
  margin-bottom: 50px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--link);
}

.btn--primary:hover {
  background-color: var(--link-light);
  box-shadow: var(--primary-shadow);
}

.btn--secondary {
  background: transparent;
  color: var(--link);
  border: 1px solid rgba(0, 246, 255, 0.5);
}

.btn--secondary:hover {
  background-color: var(--bg-light);
}

.btn--white {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid transparent;
}

.btn--white:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.bc {
  padding: 20px 0;
}

.bc ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 7px;
}

.bc ul li {
  position: relative;
  color: var(--white);
  font-size: 12px;
}

.bc ul li:not(:first-child) {
  padding-left: 17px;
}

.bc ul li:not(:first-child):before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(../img/icon-chevron-sm.svg) 50% 50%/100% no-repeat;
  transform: translateY(-50%);
  opacity: 0.65;
}

.bc ul li span {
  opacity: 0.65;
}

.bc ul li a {
  color: var(--white);
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.container-wrapper {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 25px;
}

.faq-list__item:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: var(--border);
}

.faq-list__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-left: 31px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-list__top.active span:after {
  transform: rotate(-90deg) translate(250%, -10%);
}

.faq-list__top:before {
  content: "";
  position: absolute;
  display: block;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../img/icon-question.svg) 50% 50%/100% no-repeat;
}

.faq-list__top span {
  flex: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--bg-light);
  border-radius: 100px;
  border: var(--border);
}

.faq-list__top span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background-color: var(--white);
  opacity: 0.75;
  border-radius: 10px;
  transform: translate(-50%, -50%);
}

.faq-list__top span:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  background-color: var(--white);
  opacity: 0.75;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-list__text {
  padding-left: 31px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-list__text.open {
  max-height: 1000px;
}

.faq-list__text p {
  margin: 10px 0 0 !important;
}

.block-head {
  margin-bottom: 25px;
}

.block-head h2 {
  margin: 0 0 10px;
}

.block-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 25px;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 30px;
}

.field {
  font-family: inherit;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 15px;
  font-size: 15px;
  border-radius: 6px;
  border: var(--border);
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.field:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.field:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.field.error {
  color: #EB6969;
  border-color: rgba(235, 105, 105, 0.75);
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  position: relative;
  display: block;
  color: var(--white);
  padding-left: 23px;
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
  cursor: pointer;
}

.custom-checkbox + label a {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.custom-checkbox + label a:hover {
  color: var(--link-light);
}

.custom-checkbox + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox + label.error:before {
  border-color: rgba(235, 105, 105, 0.75);
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.carousel-nav div {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 5px;
}

.carousel-nav div:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/icon-chevron.svg) 50% 50%/100% no-repeat;
}

.carousel-nav__prev:after {
  transform: scale(-1);
}

.error-message {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(235, 105, 105, 0.25);
  width: 100%;
  padding: 2px 10px;
  text-align: center;
  color: #EB6969;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  z-index: 5;
  display: none;
}

.form-success img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  border-radius: 200px;
  object-fit: contain;
  box-shadow: 0 0 24px 0 rgba(58, 124, 255, 0.25);
}

.form-success span {
  display: block;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  line-height: 100%;
}

.form-success span:nth-child(3) {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.75;
}

.more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.more .btn {
  width: 100%;
  max-width: 210px;
  height: 44px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 30px 0 0;
}

.pagination li {
  flex: none;
  width: 35px;
  height: 35px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.pagination li a,
.pagination li span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 4px;
}

.pagination li a {
  border: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pagination li a.prev:before,
.pagination li a.next:before {
  content: "";
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/icon-arrow.svg) 50% 50%/100% no-repeat;
}

.pagination li a.prev.prev:before,
.pagination li a.next.prev:before {
  transform: scale(-1);
}

.pagination li a:hover {
  color: var(--link);
}

.pagination li a.active {
  background: rgba(0, 246, 255, 0.1);
  color: var(--link);
  border-color: rgba(0, 246, 255, 0.25);
}

.site-map__list {
  margin: 0;
}

.site-map__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.site-map__list li:last-child {
  margin-bottom: 0;
}

.site-map__list li:before {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--link);
  border-radius: 100px;
}

.site-map__list li a {
  color: var(--white);
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-map__list li a:hover {
  color: var(--link);
}

.site-map__list li ul {
  margin: 10px 0 0;
}

.site-map__list li ul li:before {
  background: transparent;
  border: 1px solid var(--link);
}

.page__head {
  margin-bottom: 30px;
}

.page__head .page-title {
  margin-bottom: 20px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--bg);
  padding: 10px 0;
  z-index: 999;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__left {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.header__logo {
  flex: none;
}

.header__logo a {
  display: flex;
}

.header__logo a img {
  width: 113px;
  height: 18px;
  object-fit: contain;
}

.header__loc {
  display: flex;
  align-items: center;
  margin-left: 7px;
  padding-left: 7px;
  border-left: var(--border);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  transition: color 0.3s ease;
}

.header__nav {
  position: fixed;
  right: 0;
  top: 51px;
  width: 100%;
  height: calc(100vh - 51px);
  background-color: var(--bg);
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.header__nav.show {
  transform: translateX(0);
}

.header__nav ul {
  margin: 0;
  padding: 0 15px;
}

.header__nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border-bottom: var(--border);
  opacity: 0.85;
  transition: color 0.3s ease;
}

.header__nav ul li a:after {
  content: "";
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/icon-arrow.svg) 50% 50%/15px no-repeat;
  border-radius: 4px;
  border: var(--border-primary);
}

.header__action-btn {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  border-radius: 4px;
  border: var(--border-primary);
  transition: color 0.2s;
}

.header__auth {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__auth:before {
  content: "";
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/icon-auth.svg) 50% 50%/100% no-repeat;
}

.header__signup {
  flex: none;
  padding: 7px 15px;
  height: 30px;
  font-size: 12px;
  border-radius: 4px;
}

.header__burger {
  flex: none;
  position: relative;
  display: block;
  align-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  transition: color 0.2s;
  cursor: pointer;
}

.header__burger span {
  top: calc(50% - 1px);
  left: 0px;
  position: absolute;
  width: 17px;
  height: 2px;
  background-color: currentColor;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease;
}

.header__burger span:first-child {
  top: 9px;
}

.header__burger span:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
}

.header__burger span:last-child {
  top: auto;
  bottom: 9px;
}

.header__burger.active {
  color: var(--link);
}

.header__burger.active span:first-child {
  transform: translateX(-50%) rotate(45deg);
  top: 13px;
}

.header__burger.active span:nth-child(2) {
  transform: scale(0);
}

.header__burger.active span:last-child {
  transform: translateX(-50%) rotate(-45deg);
  bottom: 13px;
}

.header__search {
  flex: none;
  position: relative;
  margin: 10px 15px 5px;
}

.header__search .field {
  height: 40px;
}

.header__search button {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../img/icon-search.svg) 50% 50%/16px no-repeat;
  right: 10px;
  top: 50%;
  border: none;
  border-radius: 4px;
  opacity: 0.75;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.header__search button:hover {
  opacity: 1;
}

.intro .container {
  padding: 0;
}

.intro__inner {
  position: relative;
  background: url(../img/intro-banner-mob.webp) 50% 50%/cover no-repeat;
  padding: 158px 15px 15px;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}

.intro__inner:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #0f0f0f 100%);
  z-index: -1;
}

.intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}

.intro__text {
  font-size: 26px;
  text-align: center;
}

.intro__text p {
  margin: 0;
}

.intro__text span {
  display: block;
  font-weight: 800;
}

.intro__text:not(:first-child) {
  margin-top: 24px;
}

.intro__accent {
  background: rgba(55, 201, 81, 0.2);
  margin: 12px 0;
  color: var(--accent);
  font-size: 26px;
  font-weight: 800;
  width: 100%;
  max-width: 200px;
  text-align: center;
  padding: 7px 15px;
  border-radius: 15px;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px 0 rgba(55, 201, 81, 0.53);
}

.intro__desc {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.75;
}

.intro__desc p {
  margin: 0;
}

.intro__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 20px;
  width: 100%;
  max-width: 230px;
  height: 40px;
  background: rgba(0, 246, 255, 0.15);
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--link);
  border: 1px dashed rgba(0, 246, 255, 0.5);
  border-radius: 6px;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.intro__code:hover {
  border: 1px dashed rgb(0, 246, 255);
}

.intro__code:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/icon-copy.svg) 50% 50%/contain no-repeat;
}

.intro__go {
  margin-bottom: 10px;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
}

.intro__how {
  font-size: 12px;
  font-weight: 600;
}

.intro__info {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 24px;
  width: 100%;
}

.intro__info div {
  font-size: 12px;
  color: var(--white);
  opacity: 0.65;
}

.intro__info div:nth-child(2) {
  text-align: right;
}

.intro__info div span {
  display: block;
  margin-top: 2px;
}

.article-single__cover {
  position: relative;
  width: 100%;
  height: 170px;
}

.article-single__cover:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #0f0f0f 100%);
}

.article-single__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content h1 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 15px;
}

.article-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 30px 0 15px;
}

.article-content h3 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 500;
}

.article-content p {
  margin: 15px 0;
  font-size: 15px;
  line-height: 135%;
}

.article-content > img {
  display: block;
  width: 100%;
  max-width: 768px;
  margin: 15px auto;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.article-content ol {
  margin: 15px 0;
  padding: 0 0 0 25px;
}

.article-content ol li {
  font-size: 15px;
  line-height: 135%;
  margin-bottom: 10px;
}

.article-content ol li:last-child {
  margin-bottom: 0;
}

.article-content ul {
  margin: 15px 0;
}

.article-content ul li {
  position: relative;
  font-size: 15px;
  line-height: 135%;
  margin-bottom: 10px;
}

.article-content ul li:last-child {
  margin-bottom: 0;
}

.article-content ul:not(.check-list, .emoji) li {
  padding-left: 18px;
}

.article-content ul:not(.check-list, .emoji) li:before {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--link);
  border-radius: 100px;
}

.article-content ul.check-list li {
  padding-left: 28px;
}

.article-content ul.check-list li:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../img/icon-check.svg) 50% 50%/100% no-repeat;
}

.article-content ul.emoji li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.article-content a.go {
  margin: 30px 0;
}

.article-content a.therapy {
  position: relative;
  display: inline-block;
}

.article-content a.therapy span {
  text-decoration: underline;
}

.article-content a.therapy:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icon-gambling.svg) 50% 50%/100% no-repeat;
  margin-left: 6px;
}

.article-content a[data-fslightbox] {
  position: relative;
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 15px auto;
  overflow: hidden;
  box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.08);
}

.article-content a[data-fslightbox]:hover {
  opacity: 1;
}

.article-content a[data-fslightbox]:hover:after {
  transform: translate(-50%, -50%) scale(1.1);
}

.article-content a[data-fslightbox]:hover img {
  opacity: 0.5;
}

.article-content a[data-fslightbox]:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 246, 255, 0.7);
  background-image: url(../img/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center center;
  width: 45px;
  height: 45px;
  border-radius: 150px;
  transform-origin: center center;
  will-change: transform;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.article-content a[data-fslightbox] img {
  width: auto;
  height: auto;
  max-height: 325px;
  border-radius: 6px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.article-content blockquote {
  background-color: var(--bg-light);
  margin: 15px 0;
  padding: 15px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
  border: var(--border);
}

.article-content blockquote p {
  margin: 0;
}

.article-content blockquote.super .source {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #a3a6af;
}

.article-content blockquote.super .source a {
  color: var(--white);
  text-decoration: underline;
}

.article-content blockquote.super .author {
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
  border-top: var(--border);
  font-size: 15px;
  font-weight: 500;
  line-height: 135%;
}

.article-content blockquote.super .author span {
  display: block;
  font-size: 12px;
  opacity: 0.75;
}

.article-content blockquote.super .author:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 5px;
  right: 0;
  width: 30px;
  height: 30px;
  background: url(../img/icon-quote.svg) 50% 50%/100% no-repeat;
  opacity: 0.55;
}

.article-content .table-wrapper {
  width: 100%;
  overflow: auto;
  border-radius: 8px;
  border: var(--border);
}

.article-content .table-wrapper table {
  width: max-content;
  min-width: 100%;
  max-width: 650px;
  border-collapse: collapse;
}

.article-content .table-wrapper table td,
.article-content .table-wrapper table th {
  text-align: left;
  padding: 15px;
  font-size: 15px;
  line-height: 135%;
}

.article-content .table-wrapper table thead td,
.article-content .table-wrapper table thead th {
  font-weight: 600;
}

.article-content .table-wrapper table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.article-content__content-list {
  padding: 15px 20px;
  border-radius: 8px;
  border: var(--border);
}

.article-content__content-list .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-content__content-list .title h3 {
  margin: 0;
}

.article-content__content-list .title span {
  flex: none;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/icon-chevron.svg) 50% 50%/100% no-repeat;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.article-content__content-list .title span.active {
  transform: rotate(270deg);
}

.article-content__content-list ol {
  margin: 0;
  padding: 0 0 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.article-content__content-list ol.open {
  max-height: 1000px;
}

.article-content__content-list ol li {
  margin-bottom: 10px;
  padding: 0 0 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.article-content__content-list ol li:first-child {
  padding-top: 15px;
}

.article-content__content-list ol li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.article-content__content-list ol li a {
  display: block;
  color: currentColor;
}

.article-content__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.article-content__author img {
  flex: none;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 200px;
}

.article-content__author a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
}

.article-content__author span {
  display: block;
  font-size: 14px;
  line-height: 135%;
  opacity: 0.6;
}

.articles__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.articles__item {
  height: 200px;
}

.articles__item a {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  width: 100%;
  height: 100%;
  color: var(--white);
  border-radius: 6px;
  border: var(--border);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.articles__item a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.articles__item a:hover img {
  transform: scale(1.05);
}

.articles__item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #0f0f0f 75%);
  z-index: 1;
}

.articles__item a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.2s ease;
  z-index: -1;
}

.articles__item a p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  z-index: 1;
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--bg-light);
  padding: 15px;
  border-radius: 4px;
  border: var(--border-primary);
}

.benefits__item .icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 12px;
}

.benefits__item .accent {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 700;
}

.benefits__item .text {
  margin: 0;
  font-size: 14px;
}

.reviews__rate {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.reviews__rate:before {
  flex: none;
  content: "";
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon-star-fill.svg) 50% 50%/100% no-repeat;
  margin-right: 5px;
}

.reviews__rate span {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  opacity: 0.75;
  font-size: 14px;
  font-weight: 400;
}

.reviews__item {
  background-color: var(--bg-light);
  margin-bottom: 15px;
  padding: 20px 15px;
  border-radius: 6px;
  border: var(--border);
}

.reviews__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.reviews__item-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__item-avatar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(0, 246, 255, 0.25);
  color: var(--link);
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reviews__item-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 135%;
}

.reviews__item-name span {
  display: block;
  font-size: 12px;
  opacity: 0.65;
}

.reviews__item-rate {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 500;
}

.reviews__item-rate:before {
  flex: none;
  content: "";
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/icon-star-fill.svg) 50% 50%/100% no-repeat;
}

.reviews__item-text {
  margin-bottom: 10px;
  font-size: 15px;
}

.reviews__item-full {
  font-size: 14px;
  color: var(--link);
  cursor: pointer;
}

.reviews__add {
  position: relative;
  margin-top: 25px;
  background-color: var(--bg-light);
  padding: 25px 15px;
  border-radius: 8px;
  border: var(--border);
  overflow: hidden;
}

.reviews__add .field {
  margin-bottom: 15px;
}

.reviews__add textarea {
  resize: none;
  height: 90px;
}

.reviews__add > label {
  display: block;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
}

.reviews__add button {
  width: 100%;
}

.reviews__add .form-consent {
  margin-top: 15px;
}

.reviews__add-title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.reviews__add-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.reviews__add-rate span {
  font-size: 22px;
  font-weight: 600;
}

.reviews__add-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviews__add-stars img {
  flex: none;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.games__block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.games__block-head .title {
  font-size: 22px;
  font-weight: 600;
}

.games__block-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.games__block-list.is-collapsed .games__block-item:nth-child(n+5) {
    display: none;
}

.games__block-item a {
  display: block;
  position: relative;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  height: 165px;
  border-radius: 6px;
  overflow: hidden;
}

.games__block-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games__block-item a .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.games__block-item a .overlay:hover {
  opacity: 1;
}

.games__block-item a .overlay span {
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.games__block-item a .overlay span:nth-child(1) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--primary-gradient);
  border-radius: 100px;
}

.games__block-item a .overlay span:nth-child(1):before {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon-play.svg) 50% 50%/100% no-repeat;
}

.providers__list {
  margin: 0 -15px;
  padding: 0 15px;
  overflow: hidden;
}

.providers__list .marquee-wrapper__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.providers__list-item {
  flex: none;
  width: 124px;
}

.providers__list-item img {
  width: 124px;
  height: 38px;
  object-fit: contain;
}

.payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.payments__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payments__item img {
  width: 104px;
  height: 38px;
  object-fit: contain;
}

.search__form {
  position: relative;
}

.search__form .field {
  width: 100%;
  height: 47px;
}

.search__form .btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  height: 28px;
  font-size: 12px;
  border-radius: 4px;
}

.search__info {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}

.search__list-item:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: var(--border);
}

.search__list-item a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.search__list-item a:hover {
  color: var(--link);
}

.search__list-item a img {
  flex: none;
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
}

.search__list-item a p {
  margin: 0;
}

.footer {
  background-color: #000000;
  padding: 30px 0 20px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 25px;
}

.footer__left {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}

.footer__left > a {
  display: flex;
  align-items: center;
  margin-left: 7px;
  padding-left: 7px;
  border-left: var(--border);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  transition: color 0.3s ease;
}

.footer__left > span {
  display: block;
  width: 100%;
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.5;
}

.footer__logo a img {
  width: 113px;
  height: 18px;
}

.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer__nav ul {
  margin: 0;
  width: calc(50% - 20px);
}

.footer__nav ul li:not(:last-child) {
  margin-bottom: 13px;
}

.footer__nav ul li a {
  font-size: 14px;
  line-height: 130%;
  opacity: 0.75;
  color: var(--white);
}

.footer__info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
  opacity: 0.5;
}

.footer__info:before {
  flex: none;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/icon-age.svg) 50% 50%/100% no-repeat;
}

#cookie {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 50%;
  gap: 10px;
  bottom: 15px;
  width: calc(100% - 30px);
  padding: 15px;
  background-color: var(--bg-light);
  border-radius: 6px;
  border: var(--border-primary);
  z-index: 99;
  transform: translateX(-50%);
}

#cookie p {
  margin: 0;
  text-align: center;
  font-size: 12px;
}

#cookie p a {
  color: var(--link);
}

#cookie p a:hover {
  color: var(--link-light);
  text-decoration: underline;
}

#cookie button {
  width: 100%;
  padding: 5px 10px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .reviews__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .reviews__item {
    margin-bottom: 0;
  }

  .reviews__add {
    padding: 30px 25px;
  }

  .footer__info {
    align-items: center;
  }
}

@media (min-width: 1150px) {
  body {
    padding-top: 75px;
  }

  .offset {
    margin-bottom: 85px;
  }

  .bc ul li a:hover {
    opacity: 1;
  }

  .faq-list__top {
    font-size: 17px;
  }

  .faq-list__top:hover {
    color: var(--link);
  }

  .page-title {
    font-size: 36px;
  }

  .more {
    margin-top: 25px;
  }

  .site-map__list li {
    margin-bottom: 15px;
  }

  .site-map__list li a {
    font-size: 17px;
  }

  .site-map__list li ul {
    margin-top: 15px;
  }

  .header {
    padding: 20px 0;
  }

  .header__inner {
    gap: 10px;
  }

  .header__left {
    flex: initial;
    min-width: 180px;
  }

  .header__logo a img {
    width: 145px;
    height: 23px;
  }

  .header__nav {
    position: relative;
    right: initial;
    transform: none;
    top: initial;
    width: auto;
    flex: 1 1 auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
    padding-right: 50px;
  }

  .header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0;
    transition: opacity 0.1s ease;
  }

  .header__nav ul.hide {
    opacity: 0;
  }

  .header__nav ul li a {
    padding: 0;
    text-align: center;
    font-weight: 400;
    border: none;
    opacity: 1;
  }

  .header__nav ul li a:hover {
    color: var(--link);
  }

  .header__nav ul li a:after {
    display: none;
  }

  .header__auth {
    width: 35px;
    height: 35px;
  }

  .header__signup {
    font-size: 15px;
  }

  .header__burger {
    display: none;
  }

  .header__search {
    margin: 0;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    border: var(--border-primary);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--bg);
    transition: width 0.3s ease;
    z-index: 1;
    cursor: pointer;
  }

  .header__search:hover button {
    opacity: 1;
  }

  .header__search.show {
    width: 100%;
  }

  .header__search.show .field {
    opacity: 1;
    height: 100%;
    border: none;
    cursor: text;
  }

  .header__search .field {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
  }

  .header__search button {
    right: 5px;
    pointer-events: none;
    z-index: -1;
  }

  .header__search button.active {
    pointer-events: visible;
    z-index: 2;
  }

  .intro .container {
    padding: 0 15px;
  }

  .intro__inner {
    padding: 160px 20px 50px;
    border-radius: 10px;
    background: url(../img/intro-banner.webp) 50% 50%/cover no-repeat;
  }

  .intro__text {
    font-size: 40px;
  }

  .intro__how {
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .intro__how:hover {
    color: var(--link-light);
  }

  .intro__info {
    margin-top: 30px;
  }

  .article-single__cover {
    width: calc(100% - 30px);
    height: 300px;
    margin: 0 15px 15px;
    border-radius: 10px;
    overflow: hidden;
  }

  .article-content h1 {
    font-size: 30px;
  }

  .article-content h2 {
    font-size: 26px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .article-content p {
    font-size: 17px;
  }

  .article-content ol li {
    font-size: 17px;
  }

  .article-content ul li {
    font-size: 17px;
  }

  .article-content a[data-fslightbox] img {
    max-height: 480px;
  }

  .article-content blockquote {
    padding: 25px;
    font-size: 17px;
  }

  .article-content blockquote.super .source {
    font-size: 14px;
    margin-top: 12px;
  }

  .article-content blockquote.super .author {
    margin-top: 12px;
    padding-top: 12px;
  }

  .article-content__content-list ol li:hover {
    opacity: 1;
  }

  .article-content__author img {
    width: 65px;
    height: 65px;
  }

  .article-content__author a {
    font-size: 17px;
    transition: color 0.3s ease;
  }

  .article-content__author a:hover {
    color: var(--link-light);
  }

  .articles__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews__item-full {
    transition: color 0.3s ease;
  }

  .reviews__item-full:hover {
    color: var(--link-light);
  }

  .reviews__add textarea {
    height: 120px;
  }

  .games__block-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .games__block-item a {
    height: 220px;
  }

  .providers__list .marquee-wrapper__inner {
    gap: 30px;
  }

  .payments {
    grid-template-columns: repeat(8, 1fr);
  }

  .payments__item img {
    width: 90px;
    height: 33px;
  }

  .search__form .btn {
    font-size: 14px;
  }

  .search__list-item a {
    gap: 20px;
    font-size: 17px;
  }

  .search__list-item a img {
    width: 110px;
    height: 80px;
  }

  .footer__left {
    width: calc(50% - 12.5px);
  }

  .footer__nav {
    width: calc(50% - 12.5px);
  }

  .footer__nav ul li a {
    transition: opacity 0.2s ease;
  }

  .footer__nav ul li a:hover {
    opacity: 1;
  }

  #cookie {
    flex-direction: row;
    gap: 15px;
    width: 100%;
    max-width: 992px;
    padding: 15px 25px;
  }

  #cookie p {
    text-align: left;
    font-size: 14px;
  }

  #cookie button {
    width: 100px;
    font-size: 14px;
  }
}