@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: 'Poppins', sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  background: #292E36;
  color: #E4E9E9;
}

.wrapper,
.tocInner {
 max-width: 1250px;
    margin: 0 auto;
    padding: 0 10px;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

button:hover {
  opacity: 0.8;
}

input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 42px;
  line-height: 50px;
}
h2 {
  font-size: 24px;
  line-height: 36px;
}
h3 {
  font-size: 22px;
  line-height: 28px;
}
h4 {
  font-size: 20px;
  line-height: 26px;
}
h5 {
  font-size: 20px;
  line-height: 26px;
}

h1,
h2,
h3,
h4,
h5 {
  padding-bottom: 20px;
  padding-top: 10px;
  color: #E4E9E9;
  text-align: left;
}
p,
span,
li,
a {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 1250px) {
  h1 {
    font-size: 26px;
    line-height: 34px;
  }

  h2 {
    font-size: 22px;
    line-height: 30px;
  }
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
  h4 {
    font-size: 18px;
    line-height: 26px;
  }
  h5 {
    font-size: 16px;
    line-height: 26px;
  }

  p,
  span,
  li,
  a,
  .general-td,
  .general-tr {
    font-size: 14px;
    line-height: 24px;
  }
}



.general-p,
figure {
  padding-bottom: 20px;
}

figure {
  text-align: center;
}

figcaption {
  color: inherit;
}

.general-image {
  display: block;
  width: auto;
  height: auto;
  max-height: 400px;
  margin: 0 auto 10px;
  border-radius: 15px;
}

/* .content {
  padding-top: 60px;
} */

.content-block {
  max-width: 1250px;
  margin: 20px auto 0 auto;
  padding: 0 10px;
}

.content-block a {
  color: #E4E9E9;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 1250px) {
  .content {
    min-height: 90vh;
  }
}

@media (max-width: 850px) {
  .content {
    padding-top: 39px;
  }
}


/* Header */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  height: 60px;
  background: #14171CCC;
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0;
  max-width: 1250px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-image {
  display: block;
  width: 91px;
  height: auto;
}


.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.menu-link,
.menu-link--parent {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.menu-link--parent {
  padding: 0;
  cursor: pointer;
}

.menu-link:hover,
.menu-link--parent:hover {
  color: #3BBFA4;
  opacity: 1;
}

.menu-item {
  position: relative;
}

.menu-item--has-submenu {
  display: flex;
  align-items: center;
}

.menu-link--parent::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.menu-item--has-submenu:hover .menu-link--parent::after {
  transform: rotate(225deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
  padding: 16px;
  background: #26272a;
  border: 1px solid rgba(218, 138, 247, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.submenu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.menu-item--has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  color: #E4E9E9;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.submenu a:hover {
  color: #3BBFA4;
}

.header__burger {
  display: none;
}

@media (max-width: 1250px) {
  .header__inner {
    padding: 0 10px;
  }

  .menu {
    display: none;
  }

  .header__burger {
    display: flex;
    align-items: center;
  }
}

/* Mobile menu */

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  display: block;
  width: 90%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px 20px;
  background: #1C2128;
  transition: right 0.8s;
}

.mobileMenu[hidden] {
  right: -200%;
}

.mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
}

.mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu-link,
.mobile-menu-link--parent {
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-link--parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-link--parent::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mobile-menu-item.is-open .mobile-menu-link--parent::after {
  transform: rotate(225deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  padding-left: 14px;
}

.mobile-menu-item.is-open .mobile-submenu {
  display: flex;
}

.mobile-submenu a {
  color: #E4E9E9;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link--parent:hover,
.mobile-submenu a:hover {
  color: #3BBFA4;
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.overlay[hidden] {
  display: none;
}



/* Buttons */

.button-block {
  margin: 15px 0;
  text-align: center;
}

.button-block-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 34px;
  color: #E4E9E9;
  background: #D87539;
  box-shadow: 0 0 12px #0B360029;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

#fix-button.footer-block-btn {
  position: fixed;
  inset: auto 0 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

@media (max-width: 1250px) {
  #fix-button.footer-block-btn {
    display: flex;
  }

  footer.footer {
    padding-bottom: 100px;
  }
}

/* Lists */

.general-ul,
.general-ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 0;
}

.general-ol {
  position: relative;
  counter-reset: counter-ol;
}

.general-ul-li,
.general-ol-li {
  position: relative;
}

.general-ul-li {
  padding-left: 30px;
}

.general-ul-li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 7px;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}

.general-ol-li {
  counter-increment: counter-ol;
  padding-left: 36px;
}

.general-ol-li::before {
  content: counter(counter-ol);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: #D87539;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

/* Table */

.general-table-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #14141480;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.general-thead .general-tr {
  background: #14171C;
}

.general-th,
.general-td {
  padding: 10px;
  text-align: left;
  color: #fff;
  border: 1px solid #14141480;
}

.general-th {
  border: 1px solid #14141480;
  color: #3BBFA4;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.general-tr {
  color: #3BBFA4;
  background: #1C2128;
  border: 1px solid #14141480;
  text-align: center;
}

.general-td:first-child {
  background: #14171C;
  color: #3BBFA4;

}

@media (max-width: 1250px) {
  .general-table-wrapper {
    overflow: auto;
  }

  table {white-space: nowrap;}
}

/* FAQ */

.faq-item {
  position: relative;
  margin: 0 auto 20px;
  padding: 20px 0 20px 20px;
  background: #1C2128;
  border: none;
  border-radius: 6px;
  transition: 0.4s;
}

.faq-question {
  position: relative;
  padding-bottom: 0;
  color: #3BBFA4;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.faq-answer {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  color: #E4E9E9;
  font-weight: 500;
  z-index: 2;
  height: auto;
  padding-top: 12px;
  padding-right: 20px;
  opacity: 1;
}

.icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 18px;
  height: 18px;
}

.icon::before,
.icon::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  transition: transform 0.4s;
}

.icon::before {
  height: 4px;
}

.icon::after {
  height: 18px;
  background: url('/up-arrow.svg') center / contain no-repeat;
}

.toggle {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}



@media (max-width: 1250px) {
  .icon {
    right: 10px;
  }
}

/* Scroll to top */

.scrollToTop {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 30px;
  background: #1c1829;
  backdrop-filter: blur(5px);
  border-radius: 4px;
  opacity: 0;
  cursor: pointer;
}

#scrollToTop.scrollToTop {
  position: fixed;
}

.scrollToTop:hover {
  background: linear-gradient(to top, #fdb385, #D87539);
}

.scrollToTop svg {
  width: 50%;
  height: 50%;
  fill: #fff;
}


/* Plus Minus */
.advantages__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    padding-bottom: 24px;
}
.adv__item {
    background: #1C2128;
    border-radius: 16px;
}
.adv__headings span {
    display: block;
    text-align: left;
    font-size: 20px;
    font-family: 'Poppins';
    line-height: 28px;
    font-weight: bold;
    padding: 8px 0;
}
.adv__item_plus span {
      color: #000;
      position: relative;    
      padding-left: 30px;
}
.adv__item_minus span {
color: #E4E9E9;
position: relative;    
padding-left: 30px;
}
.adv__item_plus .adv__headings {
   background: #3BBFA4;
   border-radius: 12px 12px 0 0;
}

.adv__item_minus .adv__headings {
        background: #D87539;
        border-radius: 12px 12px 0 0;
}
.advantages__container ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 24px;
}
.advantages__container ul li {
    position: relative;
    padding-left: 28px;
    padding-bottom: 8px;
}
.adv__item_plus li {
  color: #E4E9E9 ;
}
.adv__item_minus li {
  color: #E4E9E9;
}
.advantages__container ul li:last-child {
    padding-bottom: 0;
}
.adv__item_plus li:before {
    background: #E4E9E9;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: 7px;
    top: 7px;
    position: absolute;
    content: no-open-quote;
}
.adv__item_minus li:before {
    background: #E4E9E9;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: 7px;
    top: 7px;
    position: absolute;
    content: no-open-quote;
}

@media (max-width: 900px) {
    .advantages__container {
        grid-template-columns: repeat(1, 1fr);
    }
    .adv__item {
        padding: 0;
    }
}

/* Banner */
.banner {
  position: relative;
  background: linear-gradient(180deg, #102828B5 71%, #151E1FC9 79%), url(bg-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 521px;
}

.banner__content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 10px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.banner__info {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 10px;
}

.banner__bottom {
  width: 100%;
  margin-top: 36px;
  padding: 0 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.banner__title {
  max-width: 960px;
  margin: 0;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 42px;
  line-height: 50px;
  color: #E4E9E9;
  padding: 0;
}

.banner__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px;
  background: #28233A66;
  color: #3BBFA4;
  font-family: 'Poppins';
  font-size: 13px;
  line-height: 18px;
  border-radius: 4px;
}

.banner__badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.banner__description {
  max-width: 960px;
  margin: 0;
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 24px;
  color: #E4E9E9;
  font-weight: 500;
}

.banner__date {
  margin: 0;
  flex: 1;
  margin-top: 24px;
  color: #979CA8;
  font-size: 14px;
}

.banner__bottom .contentsBlock {
  position: static;
  width: auto;
  height: 20px;
  flex-shrink: 0;
  z-index: auto;
}

.banner__bottom .contentsBlockInner {
  display: flex;
  justify-content: flex-end;
}

.banner__bottom .contentsIcon {
  width: 20px;
  height: 20px;
  background: url(/icon-contents.svg) no-repeat center / cover;
  cursor: pointer;
}

.banner__date a {
  color: #979CA8;
  text-decoration: underline;
  font-size: 14px;
}

@media (max-width: 850px) {
  .banner {
    height: 421px;
  }

  .banner__content {
    justify-content: center;
  }

  .banner__info {
    gap: 20px;
  }

  .banner__title {
    font-size: 34px;
    line-height: 42px;
  }

  .banner__badges {
    margin-top: 18px;
  }

  .banner__bottom {
    margin: 0;
  }
}

@media (max-width: 650px) {
  .banner__content {
    padding: 30px 20px 0;
  }

  .banner__info {
    gap: 10px;
    margin: 0;
  }

  .banner__title {
    font-size: 28px;
    line-height: 36px;
  }

  .banner__description {
    font-size: 12px;
    line-height: 18px;
  }

  .banner__badge {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .banner__date {
    font-size: 10px;
  }

  .banner__date a {
    font-size: 10px;
  }
}

@media (max-width: 450px) {
  .banner {
    height: auto;
  }

  .banner__content {
    padding: 40px 20px 0;
  }

  .banner__title {
    font-size: 24px;
    line-height: 32px;
  }

  .banner__badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
  }

  .banner__description {
    margin-top: 16px;
  }

 
}
/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 0;
}

.steps .step {
  background: #1C2128;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 12px;
}

.step_head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps .step .step_img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.steps .step .name {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #3BBFA4;
}

.steps .step .text {
  margin: 0;
  padding: 0;
  color: #fff;
}

.steps .step:last-child {
  background: #1C2128;
  grid-column: 1 / 3;
}



@media (max-width: 850px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .steps .step:last-child {
    grid-column: 1;
  }
}

/* Footer */
.footer-new {
  padding-top: 40px;
  background-color: #1C2128;
}
.footer-new li {
  padding-left: 0;
}
.footer-new p {
  padding-bottom: 0;
}
.footer-new .containerNew {
  margin-top: 0;
}
.footer-new__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #3BBFA4;
}
.footer-new__logo-link {
  display: block;
  width: 262px;
  height: 40px;
}
.footer-new__logo-link img {
  height: 100%;
}
.footer-new__logo-descr {
  margin-top: 4px;
  font-weight: 300;
  font-size: 10px;
  line-height: 14px;
  color: #f6f6ff;
}
.footer-new__socials {
  margin-top: 20px;
}
.footer-new__socials p {
  margin-top: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #E4E9E9;
}
.footer-new__socials-wrapper {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-new__mail {
  margin-top: 20px;
}
.footer-new__mail p {
  margin-top: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #E4E9E9;
}
.footer-new__mail a {
  margin-top: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #3BBFA4;
  text-decoration: none;
}
.footer-new__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}
.footer-new__nav p {
  margin-top: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  color: #EAEAF7;
}
.footer-new__nav ul {
  padding-left: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-new__nav ul li {
  list-style: none;
}
.footer-new__nav ul li a {
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  color: #979ca8;
  text-decoration: none;
}
.footer-new__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-new__copy {
  padding: 20px 0;
  margin-top: 24px;
  background: #14171C;
  border-radius: 8px 8px 0px 0px;
}
.footer-new__copy .footer-copyright-text p {
  margin-top: 0;
  font-weight: 300;
  font-size: 10px;
  line-height: 14px;
  color: #979ca8;
}
.footer-new__copy .footer-copyright-text p:not(:first-child) {
  margin-top: 16px;
}
.footer-new__copy .footer-new__copy-bottom {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-new__copy .footer-new__copy-bottom p {
  margin-top: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  color: #81818a;
}


@media (min-width: 600px) {
  footer p {
    padding-top: 0;
  }
}

@media (min-width: 834px) {
  .footer-new__nav {
    grid-template-columns: repeat(3, max-content);
    gap: 48px;
  }
  .footer-new__bottom {
    justify-content: flex-start;
    gap: 50px;
  }
}
@media (min-width: 1280px) {
  .footer-new__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-new__logo-descr {
    margin-bottom: 8px;
  }
  .footer-new__copy .footer-copyright-text p,
  .footer-new__copy .footer-new__copy-bottom p,
  .footer-new__nav p,
  .footer-new__nav ul li a {
    font-size: 12px;
    line-height: 16px;
  }
  .footer-new__nav ul {
    gap: 8px;
  }
  .footer-new__copy {
    padding: 24px 0 40px 0;
  }
  .footer-new__nav {
    display: flex;
    justify-content: flex-end;
    gap: 48px;
  }
}

/* Casinos */
.cards {margin-bottom: 20px;}
.card-item {position: relative; padding: 12px 20px 12px 32px; margin-bottom: 2px; background: #1C2128; border-radius: 4px; }
.card_main {display: grid; grid-template-columns:60px 180px 1fr 180px 80px 240px; align-items: center; justify-content: space-between; gap: 20px;}
.card_logo {width: 60px; height: 60px;}
.card_logo img {border-radius: 50%;}
.card_naming .name { display: block; font-weight: 700; font-size: 20px; line-height: 28px;}
.card_naming .site {font-weight: 500; font-size: 12px; line-height: 16px;}
.card_bonus_block {display: inline-flex; align-items: center; padding: 8px; background: #21565233; border-radius: 4px; border: 1px solid #3BBFA4; gap: 6px;}
.card_bonus p {color: #3BBFA4; font-size: 12px;font-weight: 500; line-height: 16px; font-weight: 700;}
.card_coins {display: flex;}
.card_coins span {padding: 4px; background: #14171C; border-radius: 4px; font-weight: 500;  font-size: 12px; line-height: 16px; color: #E4E9E9;
  margin-left: 8px; display: inline-block;}
.card_coins img {width: 20px; height: 20px; margin-left: -2px;}
.card_rating {display: flex; gap: 4px; align-items: center; flex-wrap: wrap;}
.card_rating img {width: 17px; height: 16px;}
.card_rating span {font-weight: 600; font-size: 12px; line-height: 18px; color: #E4E9E9;}
.card_button {display: flex; align-items: center; justify-content: space-between;}
.card_button .bonus_button {position: relative; gap: 8px; width: 188px; height: 42px; background: #D87539; 
  border-radius: 4px; cursor: pointer; transition: all 0.3s ease-in-out; display: flex; align-items: center; justify-content: center;}
.card_button .bonus_button button {position: absolute; width: 100%; height: 100%; top: 0; left: 0;}
.card_button .bonus_button span {font-weight: 600; font-size: 14px; line-height: 22px; color: #fff;}
.card_button .details_button {width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 4px;}
.card_button .details_button img {transform: rotate(180deg);}
.card_rating .rating_title, .card_coins .coins_title {display: none;}
.details_button span {display: none;}
.card_button .details_button.active {background: #21565282;}
.card_button .details_button.active img {transform: rotate(0deg);}

.card_dropdown {max-height: 0; overflow: hidden; transition: max-height 0.3s ease; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding-top: 20px;}
.card_dropdown_info .info_item {display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.card_dropdown_item {background: #26272A;padding: 8px; border-radius: 4px;}
.card_dropdown_item .description {font-weight: 300; font-size: 12px; line-height: 18px; color: #fff;}
.card_dropdown_item .value {font-weight: 300;  font-size: 12px;  line-height: 16px;}
.card_dropdown_item .card_dropdown_p {font-weight: 300;  font-size: 12px; line-height: 16px;}
.card_dropdown_bonus ul, .card_dropdown_item .card_dropdown_p {margin-top: 26px;}
.card_dropdown_bonus ul li {font-weight: 300; font-size: 12px; line-height: 16px; position: relative; padding-left: 10px;}
.card_dropdown_bonus ul li:before {content: no-open-quote; background: #fff; width: 4px; height: 4px; border-radius: 50%;
  position: absolute; left: 0px; top: 6px; }
.card_dropdown_info {position: relative;}
.card_dropdown_list .list_item {display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px;}
.card_dropdown_info .card_dropdown_btn {display: flex; align-items: center; background: #1C2128; border-radius: 4px; justify-content: center;
  cursor: pointer; width: calc(100% - 16px); height: 42px; border: 1px solid #979ca8; position: absolute; bottom: 8px; left: 8px; gap: 4px;}
.card_dropdown_btn button, .card_dropdown_btn a {position: absolute; width: 100%; height: 100%; top: 0; left: 0;}
.card_dropdown_btn span { font-weight: 600; font-size: 12px; line-height: 18px; color: #979ca8;}
.card_dropdown_btn img {transform: rotate(90deg); top: 0.5px; position: relative;}

.card-item.active .card_dropdown { max-height: 1000px;}

.card-item:nth-child(1):before {content: ''; width: 12px; height: 16px; background: url(/uploads/img/vitrina/gold_mark.svg)no-repeat; position: absolute; top: 0; left: 10px;}
.card-item:nth-child(2):before {content: ''; width: 12px; height: 16px; background: url(/uploads/img/vitrina/silver_mark.svg)no-repeat; position: absolute; top: 0; left: 10px;}
.card-item:nth-child(3):before {content: ''; width: 12px; height: 16px; background: url(/uploads/img/vitrina/bronze_mark.svg)no-repeat; position: absolute; top: 0; left: 10px;}

@media (max-width: 1150px) {
  .card-item {padding: 16px;}
  .card_main {grid-template-columns:60px 200px 1fr;}
  .card_rating {grid-row: 2/3; grid-column: 1/2; justify-content: center;}
  .card_coins {grid-row: 2/3; grid-column: 2/3; flex-wrap: wrap;}
  .card_rating .rating_title, .card_coins .coins_title {display: block; font-size: 10px;line-height: 14px; color: #cdd2e0; width: 100%; text-align: center;}
  .card_coins .coins_title {text-align: left; background: transparent; padding: 0; margin-bottom: 4px; margin-left: 0; border-radius: 0;}
  .card_button {grid-row: 2/3; grid-column: 3/4; justify-self: end; gap: 17px;}
  .card_bonus {justify-self: end;}
  .details_button span {display: inline-block; font-weight: 600; font-size: 12px; line-height: 18px; color: #979ca8;}
  .card_button .details_button {width: 123px; background: #28233a; border-radius: 4px; border: 1px solid rgba(129, 129, 138, 0.8);}

  .card_dropdown { grid-template-columns: 180px 20% 1fr 120px;}
  .card_dropdown_bonus {grid-column: 1/3;}
  .card_dropdown_info {grid-row: 2/3; grid-column: 3/5;}
  .card_dropdown_list {grid-row: 2/3; grid-column: 1/3;}
  .card_dropdown_bonus ul, .card_dropdown_item .card_dropdown_p {margin-top: 16px;}

  .card-item:nth-child(1):before, .card-item:nth-child(2):before, .card-item:nth-child(3):before {right: 10px; left: auto;}
}
@media (max-width: 710px) {
  .card_naming .site {display: none;}
  .card_main {grid-template-columns:60px 1fr; gap: 0 10px;}
  .card_logo {grid-row: 1/3;grid-column: 1/2;}
  .card_naming {grid-row: 1/2;grid-column: 2/3;}
  .card_bonus {grid-row: 2/3;grid-column: 2/3; justify-self: start;}
  .card_rating {grid-row: 3/4; grid-column: 1/2; margin-top: 14px;}
  .card_coins {grid-row: 3/4; grid-column: 2/3; margin-top: 14px;}
  .card_button {grid-row: 4/5; grid-column: 1/3; justify-self: start; margin-top: 14px; width: 100%;}
  .card_bonus_block {padding: 4px;}
  .card_button .details_button {order: -1;}
  .card_button .bonus_button {width: calc(100% - 140px);}

  .card_dropdown { grid-template-columns: 100px 20% 1fr 90px; }
}
@media (max-width: 550px) {
  .card_dropdown {grid-template-columns: 1fr;}
  .card_dropdown_info {grid-column: 1/2; grid-row: 5/6;}
  .card_dropdown_bonus {grid-column: 1/2; grid-row: 1/2;}
  .card_dropdown_games {grid-column: 1/2; grid-row: 2/3;}
  .card_dropdown_deposit {grid-column: 1/2; grid-row: 3/4;}
  .card_dropdown_list {grid-column: 1/2; grid-row: 4/5;}
  .card_dropdown_info .card_dropdown_btn {position: relative; width: 100% ; bottom: 0; left: 0;}
  .card_dropdown_item {display: flex; justify-content: space-between;}
  .card_dropdown_bonus ul, .card_dropdown_item .card_dropdown_p {margin-top: 0px; width: 70%; text-align: right;}
  .card_dropdown_bonus ul li:after {content: no-open-quote; background: #fff; width: 4px; height: 4px; border-radius: 50%;
  position: absolute; right: 0px; top: 6px; }
  .card_dropdown_bonus ul li:before {display: none; }
  .card_dropdown_bonus ul li {padding-left: 0; padding-right: 10px;}
  .card_dropdown_item.card_dropdown_list, .card_dropdown_item.card_dropdown_info {flex-direction: column;}
}


/* Table of contents */
.contentsBlock {
  position: absolute;
  bottom: 16px;
  right: 0;
  width: 100%;
  height: 20px;
  z-index: 6;
}

.contentsBlockInner {
  display: flex;
  justify-content: flex-end;
}

.contentsIcon {
  width: 20px;
  height: 20px;
  background: url(/icon-contents.svg) no-repeat center / cover;
  cursor: pointer;
}

.contentsIcon:hover:not(.active) {
  background-image: url(/icon-contents-hover.svg);
}

.contentsIcon.active {
  background-image: url(/icon-contents-active.svg);
}

.toc {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #0d0e0e;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.toc.active {
  max-height: 1000px;
  padding: 24px 0;
  opacity: 1;
}

.toc .tocInner {
  display: none;
}

.toc.active .tocInner {
  display: flex;
  flex-direction: column;
}

.toc.active .tocInner span {
  display: block;
  padding-bottom: 8px;
  color: #81818a;
  font-family: 'Poppins';
  font-size: 12px;
  line-height: 18px;
}

.toc.active .tocInner a {
  position: relative;
  padding-bottom: 8px;
  padding-left: 10px;
  color: #81818a;
  font-size: 12px;
  line-height: 18px;
}

.toc.active .tocInner a:hover {
  color: #3BBFA4;
}

.toc.active .tocInner a::before {
  content: '';
  position: absolute;
  top: 5.5px;
  left: 0;
  width: 4px;
  height: 4px;
  background: #3BBFA4;
  border-radius: 50%;
}

.toc.active .tocItemh3 {
  padding-left: 30px;
}

.toc.active .tocItemh3 a::before {
  background: #81818a;
}

/* quote */

.quote {
  background: #14171C;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  border: 1px solid #3BBFA433;
  border-radius: 16px;
}

.quote img {
  width: 44px;
  height: 44px;
}

.quote p {
  color: #E4E9E9;
  font-family: 'Poppins';
  font-size: 16px;
  line-height: 24px;
}

/* author */

.author {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
  padding: 24px;
  border-radius: 8px;
  background-color: #14171C;
}

.author__top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author__photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.author__name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #E4E9E9;
}

.author__title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #D87539;
  font-size: 14px;
  color: #fff;
}
.author__title span {
  font-size: 12px;
}

.author__title img {
  width: 20px;
  height: 20px;
}

.author__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #E4E9E9;
}

@media (max-width: 600px) {
  .author__top {
    align-items: flex-start;
  }

  .author__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* articles */

.articles {
  margin: 32px 0;
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.article-card {
  background: #26272A;
  border-radius: 16px;
  padding: 12px;
  color: #E4E9E9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card__image {
  width: 100%;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__title {
  margin: 0;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #E4E9E9;
}

.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #CFCFCF;
}

.article-card__date {
  color: #E4E9E9;
  font-size: 12px;
  font-weight: 300;
}

.article-card__link {
  position: relative;
  padding-right: 12px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: #E4E9E9;
  text-decoration: none;
  transition: 0.2s;
}

.article-card__footer a {
  text-decoration: none;
}


.article-card__footer a:hover {
  color: #3BBFA4;
}

.article-card__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url('/arrow-right.svg'); 
  background-size: contain;
  background-repeat: no-repeat;
}

.article-card__link:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-card__image {
    height: 120px;
  }

  .article-card__title {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .articles__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-card {
    padding: 12px;
  }

  .article-card__image {
    height: 160px;
  }

  .article-card__title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .article-card__footer {
    font-size: 11px;
  }
}