@charset "UTF-8";

:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1930px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --bg: #0f1421;
  --bg-light: #192136;
  --white: #ffffff;
  --link: #0090FF;
  --link-light: #4CA2FF;
  --secondary: #1A64FC;
  --primary-gradient: linear-gradient(180deg, #41c6ff 0%, #1a64fc 100%);
  --primary-shadow: 0 0 36px 0 rgba(58, 124, 255, 0.67);
  --accent: #29E830;
  --border: 1px solid rgba(255, 255, 255, .15);
  --border-primary: 1px solid rgba(0, 144, 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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--white);
  padding-top: 51px;
}

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

.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(--white);
  border-radius: 9px;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}

.btn:hover:before {
  opacity: 1;
}

.btn:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary {
  background: var(--primary-gradient);
  box-shadow: var(--primary-shadow);
}

.btn--primary:hover:before {
  opacity: 1;
}

.btn--secondary {
  background: var(--secondary);
}

.btn--secondary:hover:before {
  opacity: 1;
}

.btn--white {
  background-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;
}

.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__top span.active:after {
  transform: rotate(-90deg) translate(250%, -10%);
}

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

.field {
  font-family: inherit;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 15px;
  font-size: 15px;
  border-radius: 10px;
  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;
}

.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: 10px;
}

.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: 16px;
  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: 15px 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: 16px;
  height: 16px;
  background: url(../img/icon-chevron.svg) 50% 50%/100% no-repeat;
}

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

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

.header__signup {
  flex: none;
  padding: 8px 15px;
  font-size: 12px;
}

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

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

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

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

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

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

.header__burger.active span:first-child {
  transform: rotate(45deg);
  top: 12px;
}

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

.header__burger.active span:last-child {
  transform: rotate(-45deg);
  bottom: 12px;
}

.intro .container {
  padding: 0;
}

.intro__inner {
  position: relative;
  background: url(../img/intro-banner.webp) 50% 50%/cover no-repeat;
  padding: 30px 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: rgba(15, 20, 33, 0.75);
  backdrop-filter: blur(8px);
  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 span,
.intro__text strong {
  display: block;
  font-weight: 800;
}

.intro__text p {
  margin: 0;
}

.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-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
}

.intro__go {
  margin-bottom: 10px;
  width: 100%;
  max-width: 275px;
  padding: 14px 25px;
  font-size: 18px;
  border-radius: 15px;
}

.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-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,
.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: 10px;
  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]:after {
  content: "Увеличить";
  position: absolute;
  bottom: 15px;
  left: 50%;
  background-color: rgba(33, 117, 253, 0.7);
  background-image: url(../img/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 20px center;
  padding: 5px 20px 5px 40px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition: border-color 0.2s ease;
}

.article-content a[data-fslightbox] img {
  width: auto;
  height: auto;
  max-height: 325px;
  border-radius: 10px;
}

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

.article-content a[data-fslightbox]:hover:after {
  border-color: rgba(0, 132, 202, 0.5);
}

.article-content blockquote {
  background-color: var(--bg-light);
  margin: 15px 0;
  padding: 15px;
  border-radius: 15px;
  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: 10px;
  border: var(--border);
  margin: 15px 0;
}

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

.article-content table tr:nth-child(even) {
  background-color: rgba(255,255,255,.05);
}

.article-content table tr td {
  padding: 12px 15px;
  font-size: 15px;
  border-bottom: var(--border);
}

.article-content table tr:last-child td {
  border: none;
}

.article-content__content-list {
  padding: 15px 20px;
  border-radius: 15px;
  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 34px;
  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;
}

.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: 12px;
  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: linear-gradient(180deg, #1a64fc 0%, #0f3c96 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 9px;
}

.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;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 3 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews__item-text.expanded {
  -webkit-line-clamp: unset;
}

.reviews__item-full {
  display: none;
  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: 15px;
  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-item a {
  display: block;
  position: relative;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  height: 165px;
  border-radius: 15px;
  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;
}

.providers__list .swiper-slide {
  width: 124px;
}

.providers__list .swiper-slide 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;
}

.footer {
  background-color: var(--bg-light);
  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: 16px;
}

.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 {
  display: none;
  /* скрыт по умолчанию */
  position: fixed;
  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: 15px;
  border: 1px solid rgba(0, 144, 255, 0.25);
  box-shadow: 0 0 12px 0 rgba(58, 124, 255, 0.15);
  z-index: 99;
  transform: translateX(-50%);
}


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

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

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

.article-content__content-list ol {
  padding: 0 0 0 30px;
}

@media (min-width: 768px) {
  .article-content__content-list ol {
    padding: 0 0 0 34px;
  }

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

  .header {
    padding: 20px 0;
  }

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

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

  .header__nav {
    position: relative;
    right: initial;
    transform: none;
    top: initial;
    width: auto;
    flex: 1 1 auto;
    height: auto;
  }

  .header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 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__signup {
    font-size: 15px;
  }

  .header__burger {
    display: none;
  }

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

  .intro__inner {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .intro__inner:before {
    display: none;
  }

  .intro__content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(15, 20, 33, 0.7);
    padding: 35px 25px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 36px 0 rgba(58, 124, 255, 0.15);
  }

  .intro__desc {
    font-size: 14px;
  }

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

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

  .intro__info {
    margin-top: 30px;
  }

  .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 table {
    width: 100%;
    max-width: 100%;
    min-width: 1px;
  }

  .article-content table tr td {
    font-size: 17px;
    padding: 15px 20px;
  }

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

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

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

  .reviews__add textarea {
    height: 120px;
  }

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

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

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

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