:root {
  /* main */
  --bg-color: #17211c;
  --bg-color-dark: #F3F3F3;
  --text-color: #d8d8d8;
  --main-border-radius: 4px;

  /* header / footer */
  --header-background: #2e3d35;
  --header-text: #000000;
  --footer-background: #2e3d35;
  --footer-text: #FFFFFF;

  --title-color: #041B5F;
  --title-color-hover: #ed0908;
  
  /* button */
  --button-border-radius: 8px;
  --main-button-background: #db8d06;
  --main-button-text: #FFFFFF;

  --sub-button-background: #ed0908;
  --sub-button-border: #ed0908;
  --sub-button-border-hover: #041b5f;
  --sub-button-background-hover: #041b5f;
  --sub-button-text: #FFFFFF;
  --sub-button-text-hover: #FFFFFF;


}
@font-face {
  font-family: FontAwesome;
  src: url('fonts/font-awesome-4.7.0/css/font-awesome.css');
}
@font-face {
  font-family: MainFont;
  src: url('fonts/Anybody-VariableFont.ttf');
}

* {
  scroll-behavior: smooth;
  transition: all .5s;
  box-sizing: border-box;
}
html, body {
  font-family: "MainFont", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.12;
}
main {
  min-height: 95vh;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}
a {
  text-decoration: none;
  color: var(--text-color);
}
nav ul {
  list-style: none;
  padding: 0;
}
h1 {
  font-size: 44px;
}
h2 {
  text-align: center;
  font-size: 36px;
}
h3 {
  font-size: 26px;
}
p {
  margin: 15px 0 0;
  font-weight: 600;
  text-align: center;
}
.mainImage {
  display: block;
  margin: 10px auto;
  width: min(100%, 950px);
  aspect-ratio: 3 / 1;
  min-height: 300px;
  border-radius: var(--main-border-radius);
  object-fit: cover;
  object-position: top center;
}
.mainBlock, .headerBlock, .aboutBlock, .footerBlock {
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0 20px;
}
.mainBtn {
  display: inline-block;
  margin: 0;
  padding: 14px 45px;
  border: 2px solid #8acc25;
  border-radius: 4px;
  background: #8acc25;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: .2s background, .2s border-color, .2s color;
  font-size: 18px;
  text-align: center;
}
.mainBtnAnimated {
  animation: pulse 2s infinite;
}
.mainBtnSpecial {
  position: relative;
  overflow: hidden;
  text-shadow: none;
  border-color: #3c4b41;
  background: #3c4b41;
}
.mainBtnSpecial:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 400%;
  rotate: 90deg;
  background: linear-gradient(0deg, #fff0, #fff9, #fff0);
  animation: specialBtn 5s linear infinite;
}
@keyframes rotateCoin {
  0%, 100% {
    transform: rotateY(-20deg) rotate(5deg);
    translate: 5px -5px;
    box-shadow: inset 0 0 20px #ffdf0099, 0 8px 20px #0009, 0 0 15px #ffd70066;
  }
  50% {
    transform: rotateY(25deg) rotate(-5deg);
    translate: -5px 5px;
    box-shadow: inset 0 0 25px #ffdf00b3, 0 5px 15px #00000080, 0 0 20px #ffdf0099;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    background-color: #8acc25;
    box-shadow: 0 0 6px rgba(140, 220, 30,.7);
  }
  
  50% {
    transform: scale(1.02);
    background-color: #8cdc1e;
    box-shadow: 0 0 12px rgba(140, 220, 30,.9);
  }
}
@keyframes specialBtn {
  0% {
    translate: -300% -50%;
  }
  100% {
    translate: 150% -50%;
  }
}
.link {
  color: #8acc25;
  text-decoration: none;
}


/* header */
.headerLogo {
  display: flex;
}
.headerLogo:last-child {
  display: flex;
  justify-content: center;
}
.headerLogo a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.headerBlock nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
header {
  width: 100%;
  z-index: 24;
  display: flex;
  background: var(--header-background);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.headerBlock {
  width: min(100%, 1420px);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px;
}
.headerBlock ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.headerBlock ul li a {
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 4px 2px;
  color: inherit;
  text-decoration: none;
  text-align: center;
  transition: .4s ease color;
  color: #FFFFFF;
}
.headerBlock ul li a.link,
.headerBlock ul li a:hover {
  color: #8acc25;
}
.headerBlock ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #FFFFFF;
  transition: .4s ease;
}
.headerBlock ul li a:hover:before {
  left: 0;
  width: 100%;
  background: #8acc25;
}
.header-toggler {
  display: none;
  color: #FFFFFF;
  font-size: 35px;
  height: 30px;
}
.header-toggler::after {
  content: "\f0c9";
  font-family: "FontAwesome", sans-serif;
}
.header-toggler--open::after {
  content: "\f00d";
  font-family: "FontAwesome", sans-serif;
}
header .mainBtn {
  padding: 5px 10px;
  font-size: 14px;
}
.headerLogo img {
  width: 80px;
  object-fit: contain;
  border-radius: 4px;
}
.headerLogo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.headerLogo-div {
  display: flex;
  gap: 10px;
}
.dropdown {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.language {
  display: flex;
  align-items: center;
  gap: 4px;
}
.language__flag {
  width: 20px;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  overflow: hidden;
}
.language__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dropdown .dropdown__arrow::after {
  content: '\f107';
  font-family: "FontAwesome", sans-serif;
  font-size: 25px;
}
.dropdownActive .dropdown__arrow {
  transform: rotate(180deg);
}
.dropdownList {
  display: none;
  position: absolute;
  top: 25px;
  right: 0;
  margin: 0;
  padding: 20px 25px;
  border-radius: 4px;
  background: #2e3d35;
  color: #ffffff;
  z-index: 9999;
  list-style-type: none;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
}
.dropdownActive .dropdownList {
  display: block;
}


/* mainSection */
.mainSection {
  width: 100%;
  padding: 40px 0;
  background-color: #1c2823;
}
.mainBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.mainBlock p {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.mainBlock__img {
  flex-shrink: 0;
  display: block;
  width: min(100%, 350px);
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 100%;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  scale: .9;
  box-shadow: inset 0 0 10px #0009, 0 5px 15px #00000080;
  background: linear-gradient(145deg, gold, #e6b800);
  background-color: gold;
  animation: rotateCoin 5s infinite cubic-bezier(.455,.03,.515,.955);
  transition: .4s scale ease;
}
.mainBlock__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 100%;
  background: #b8860b;
  transform: translate(-50%) rotateY(90deg);
}
.mainBlock__img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e6b800, #b8860b);
  border-radius: 50%;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.mainBlock__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backface-visibility: hidden;
}
.mainBlock__content {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.mainBlock__content .mainBtn {
  padding: 5px 10px;
  font-size: 14px;
}
.mainBlock__content .mainBtn:hover {
  background-color: #3c4b41;
  border-color: #3c4b41;
}
.mainBlock__desc p {
  font-size: clamp(1.125rem,.9801rem + .7246vw,1.75rem);
  text-align: left;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}
.mainBlock__btns {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.mainBlock__advantages {
  margin: 20px 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 15px;
}
.mainBlock__advantages li {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  width: min(100%, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}
.mainBlock__advantages-number {
  font-size: 24px;
  color: #8acc25;
  font-weight: 700;
}
.mainBlock__advantages-label {
  font-size: 16px;
}


/* aboutSection */
.aboutSection {
  position: relative;
  padding: 45px 0;
}
.aboutBlock p {
  line-height: 1.5;
}
.contentSection__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.cardsList {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  flex-grow: 1;
  flex-basis: auto;
  width: clamp(220px, 25% - 20px, 300px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
  background: linear-gradient( 45deg, #1c2823 0%, #2e3d35 100% );
  background-size: 200%;
  text-align: center;
  transition: .3s ease-in;
  transition-property: background-position, box-shadow, translate;
}
.card:hover {
  translate: 0 -2px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, .3);
  background-position: 100% 100%;
}
.card_large {
  width: clamp(240px,33.33% - 20px,450px);
}
.card h3 {
  font-size: 18px;
}
.card p {
  font-size: 16px;
  line-height: 1.12;
  font-weight: 400;
  margin: 0;
}
.card-img {
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 100%;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s scale cubic-bezier(.39,.575,.565,1);
  cursor: pointer;
}
.card:hover .card-img img {
  scale: 1.05;
}
.glossaryList {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 20px 40px;
}
.glossary {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.glossary h3 {
  text-transform: uppercase;
}
.glossary p {
  padding: 5px 5px 5px 10px;
  border-left: 4px solid #8acc25;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #2e3d35;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.12;
  text-align: left;
  margin: 0;
}


/* faqSection */
.faqBlock__list {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 30px;
  gap: 15px;
}
.faqBlock__listItem {
  overflow: hidden;
  width: 100%;
  position: relative;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  transition: .3s border-color;
}
.faqBlock__listItem-active {
  border-color: #8acc25;
}
.faqBlock__listItemTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8d8d8;
  font-weight: 500;
  transition: .25s color;
}
.faqBlock__listItemTitle h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
}
.faqBlock__listItemActive h4 {
  color: #8acc25;
}
.faqBlock__listItemTitle span::after {
  content: '\f107';
  font-family: "FontAwesome", sans-serif;
  font-size: 35px;
}
.faqBlock__listItemActive span {
  transform: rotate(180deg);
  color: #8acc25;
}
.faqBlock__listItemTitleDesc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faqBlock__listItemTitleDesc p {
  padding: 16px 28px;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}


/* footer */
footer {
  position: relative;
  padding: 30px 0;
  color: #FFFFFF;
  overflow: hidden;
  background: var(--footer-background);
}
.footerBlock {
  width: min(100%, 1420px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__special {
  position: relative;
  min-height: 1px;
  height: 84px;
}
.footer__specialBtn {
  position: absolute;
  left: 50%;
  translate: -50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
  border-radius: 4px;
  background: #3c4b4199;
  backdrop-filter: blur(15px);
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 2px 4px #0000;
  transition: .3s ease;
  transition-property: width, box-shadow;
  z-index: 1000;
}
.footer__specialBtn.specialBtn_sticky {
  position: fixed;
  bottom: 10px;
  width: calc(100vw - 40px);
  box-shadow: 0 0 4px 1px #00000026
}
.footer__specialBtn .mainBlock__btns {
  margin-top: 0;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  text-align: center;
}
.footer__copyright p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.12;
}
.footer__group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
}
.footer__col {
  flex: 1 0 auto;
  width: clamp(240px, 33.33% - 20px, 450px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}
.footer__logo {
  display: flex;
  justify-content: center;
}
.logo {
  display: block;
  text-decoration: none;
  color: inherit;
}
.logo_large .logo__img {
  width: 120px;
  object-fit: contain;
  border-radius: 4px;
}
.footerNav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 5px;
}
.footerNav__item {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.footerNav__link {
  color: inherit;
  padding: 2px 4px;
  text-decoration: none;
  transition: .4s ease color;
}
.footerNav__link:hover,
.footerNav__link.link {
  color: #8acc25;
}
.iconCards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
}
.iconCards__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #3c4b41;
  overflow: hidden;
  aspect-ratio: 90 / 48;
  height: 48px;
  padding: 5px 15px;
  transition: .4s ease background;
}
.iconCards__icon_circle {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  padding: 12px;
}
.iconCards__icon:hover {
  background: #8acc25;
}
.iconCards__icon svg{
  width: 100%;
  height: 100%;
  fill: #fff;
}
.footer__title {
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
}
.footer__certifications {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px 15px;
}
.footerAge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.footerAge__icon {
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.footerAge__text {
  width: min(100%, 340px);
  font-size: 16px;
}
.footerGambling {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footerGambling__item {
  width: min(100%, 100px);
}
.footerGambling__link {
  display: block;
}
.footerTrust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
}
.footerTrust__link {
  display: inline-block;
  width: 80px;
  overflow: hidden;
}
.footerAge__img_white {
  filter: brightness(0) invert(1);
  width: 44px;
  object-fit: contain;
}
.footerGambling__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footerTrust__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* media */
@media (max-width: 1084px) {
  .header {
    padding: 0 10px;
  }
  .headerMenu {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    right: 0;
    top: 0;
    transform: translateX(200%);
    width: min(100%,320px);
    height: 100%;
    background-color: #2e3d35;
    transition: 0.3s ease-in-out;
    z-index: 1;
    padding: 100px 30px 30px 30px;
    align-items: baseline;
  }
  .headerBlock {
    z-index: 2;
  }
  .header-menu--open {
    opacity: 1;
    transform: translateX(0);
  }
  header nav ul {
    flex-direction: column;
  }
  .header-toggler {
    display: flex;
    padding-right: 15px;
    z-index: 2;
    align-items: center;
  }
  .headerBlock__logo::before {
    display: none;
  }
  .headerBlock__logo {
    justify-content: space-between;
  }
  .headerBlock ul {
    padding: 20px;
    margin-top: 50px;
    align-items: flex-end;
  }
  .header-menu--open + span {
    position: fixed;
  }
}
@media (max-width: 900px) {
  .mainBlock {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mainBlock__btns,
  .mainBlock__content {
    justify-content: center;
  }
  .mainBlock__desc p {
    text-align: center;
  }
}
@media (max-width: 520px) {
  header .mainBtn {
    display: none;
  }
  h1 {
    font-size: 36px;
    word-break: break-word;
  }
}
@media (max-width: 392px) {
  .footer__special {
    height: 145px;
  }
}
