@charset "UTF-8";
@font-face {
  font-family: "Anybody";
  src: url("../fonts/Anybody-Regular.woff2") format("woff2"), url("../fonts/Anybody-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anybody";
  src: url("../fonts/Anybody-SemiBold.woff2") format("woff2"), url("../fonts/Anybody-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anybody";
  src: url("../fonts/Anybody-Bold.woff2") format("woff2"), url("../fonts/Anybody-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  font-family: "Anybody", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --primary: #24252a;
  --accent: #c58f0f;
  --text: #ddd;
  --bg: #1a1b1e;
  --second: #1d2e46;
  --white: #fff;
  --black: #000;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.12;
}

main {
  min-height: 90vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

section {
  position: relative;
  padding: 45px 0;
}

.container {
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0 20px;
}

img {
  cursor: pointer;
}

.img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.link {
  color: inherit;
  text-decoration: none;
}

.hyperLink {
  color: #f8b838;
  text-decoration: none;
}

.list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.title_white {
  color: var(--white);
}

.title_center {
  text-align: center;
}

p {
  margin: 0;
}

.descr {
  margin: 0;
  margin-top: 15px;
  font-weight: 600;
}

.descr_white {
  color: var(--white);
}

.descr_center {
  text-align: center;
}

.btn {
  display: inline-block;
  margin: 0;
  padding: 14px 45px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s background, 0.2s border-color, 0.2s color;
  font-size: 18px;
}
.btn:hover {
  background: var(--second);
  border-color: var(--second);
}
.btn_outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: inherit;
}
.btn_outline:hover {
  border-color: var(--second);
  background: transparent;
  color: inherit;
}
.btn_special {
  position: relative;
  overflow: hidden;
  text-shadow: none;
  border-color: var(--second);
  background: var(--second);
}
.btn_special:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 400%;
  rotate: 90deg;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  animation: specialBtn 5s linear infinite;
}
@keyframes specialBtn {
  from {
    translate: -300% -50%;
  }
  to {
    translate: 150% -50%;
  }
}
.btn_special:hover {
  background: var(--accent);
}
.btn_mini {
  padding: 5px 10px;
  font-size: 14px;
}

.logo {
  display: block;
  text-decoration: none;
  color: inherit;
}
.logo__img {
  width: 50px;
  object-fit: contain;
}

strong {
  color: var(--accent);
}

.header {
  position: relative;
  padding: 10px 0;
  background: var(--primary);
  color: var(--white);
  z-index: 9999;
}
.header__container {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 0 20px;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu {
  display: flex;
  gap: 10px;
}
.menu__item {
  font-weight: 600;
  font-size: 16px;
}
.menu__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px;
  transition: 0.4s ease color;
}
.menu__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: 0.4s ease;
}
.menu__link:hover {
  color: var(--accent);
}
.menu__link:hover:before {
  left: 0;
  width: 100%;
  background: var(--accent);
}
.menu__item_new .menu__link {
  padding-left: 22px;
}
.menu__item_new .menu__link:after {
  content: "new";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -60%;
  rotate: -45deg;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 4px;
  border-radius: var(--radius);
  background: var(--accent);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  animation: light 2s linear infinite;
}
@keyframes light {
  0%, 25%, 75%, 100% {
    background: var(--accent);
  }
  50% {
    background: var(--black);
  }
}
.menu__item_active .menu__link {
  color: var(--accent);
}
.menu__item_active .menu__link:before {
  background: var(--accent);
}

.phone {
  display: none;
  flex-shrink: 0;
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 16px 5px;
  border: none;
  background: transparent;
  transition: 0.4s ease rotate;
  cursor: pointer;
}
.phone__stick {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  translate: 0 -50%;
  width: calc(100% - 5px);
  height: 3px;
  border-radius: 50px;
  background: var(--white);
  transition: 0.4s ease left, 0.4s ease width, 0.4s ease translate, 0.4s ease rotate, 0.4s ease opacity;
}
.phone__stick:first-child {
  translate: 0 calc(-50% - 10px);
}
.phone__stick:last-child {
  translate: 0 calc(-50% + 10px);
}
.phone_active {
  rotate: 45deg;
}
.phone_active .phone__stick:first-child {
  opacity: 0;
}
.phone_active .phone__stick:last-child {
  translate: 0 -50%;
  rotate: -90deg;
}

.screen-reader {
  display: none;
}

.language {
  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__icon {
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}
.language__icon svg {
  width: 100%;
  height: 100%;
}
.language__arrow {
  width: 12px;
  aspect-ratio: 1/1;
  transition: 0.4s ease rotate;
}
.language__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}
.language_active .language__arrow {
  rotate: 180deg;
}

.langList {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 10px 2px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  z-index: 9999;
  list-style-type: none;
  font-size: 14px;
}
.langList__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: inherit;
  text-decoration: none;
  transition: 0.4s ease color;
}
.langList__link:hover {
  color: var(--accent);
}
.langList__link span {
  color: red;
}
.langList__flag {
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}
.langList__flag svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.hero {
  padding: 40px 0;
}
.hero__pretitle {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.hero__pretitle .btn::before {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-evenly;
}
.hero__title {
  font-size: clamp(1.5rem, 0.9203rem + 2.8986vw, 4rem);
}
.hero__descr {
  font-size: clamp(1.125rem, 0.9801rem + 0.7246vw, 1.75rem);
}
.hero__actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.hero__advents {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
.hero__advent {
  flex-shrink: 0;
  width: min(100%, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}
.hero__number {
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
}
.hero__label {
  font-size: 16px;
}
.hero__picture {
  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: 0.9;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, #ffd700, #e6b800);
  background-color: #ffd700;
  animation: rotateCoin 5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: 0.4s scale ease;
  /* Боковая грань (глубина) */
  /* Задняя сторона */
}
@keyframes rotateCoin {
  0%, 100% {
    transform: rotateY(-20deg) rotateZ(5deg);
    translate: 5px -5px;
    box-shadow: inset 0 0 20px rgba(255, 223, 0, 0.6), 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4); /* Едва заметная внешняя золотая подсветка */
  }
  50% {
    transform: rotateY(25deg) rotateZ(-5deg);
    translate: -5px 5px;
    box-shadow: inset 0 0 25px rgba(255, 223, 0, 0.7), 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 223, 0, 0.6); /* Усиленная золотая подсветка */
  }
}
.hero__picture:hover {
  scale: 1;
}
.hero__picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px; /* Глубина монеты */
  height: 100%;
  background: #b8860b; /* Цвет боковой грани */
  transform: translateX(-50%) rotateY(90deg);
}
.hero__picture:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e6b800, #b8860b);
  border-radius: 50%;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.contentBlock__list {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.contentBlock__item {
  width: clamp(220px, 25% - 20px, 300px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(26, 27, 30, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.contentBlock__item_large {
  width: clamp(240px, 33.33% - 20px, 450px);
}
.contentBlock__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.contentBlock__icon {
  display: block;
  margin-bottom: 15px;
  font-size: 38px;
  line-height: 1;
}
.contentBlock__img {
  display: block;
  margin: 10px auto;
  width: min(100%, 950px);
  aspect-ratio: 3/1;
  min-height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
}
.contentBlock__name {
  font-size: 18px;
  font-weight: 400;
}
.contentBlock__descr {
  font-size: 16px;
}
.contentBlock__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer {
  position: relative;
  padding: 30px 0;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}
.footer__container {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 0 20px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__nav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 5px;
  text-align: center;
}
.footer__nav-item {
  font-size: 16px;
}
.footer__nav-link {
  padding: 2px 4px;
  transition: 0.4s ease color;
}
.footer__nav-link:hover {
  color: var(--accent);
}
.footer__certifications {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}
.footer__age {
  text-align: center;
}
.footer__age-images {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__age-img {
  width: 50px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.footer__age-img_white {
  filter: brightness(0) invert(1);
}
.footer__gambling-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer__gambling-item {
  width: min(100%, 100px);
}
.footer__gambling-link {
  display: block;
}
.footer__gambling-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer__trustpilot-link {
  display: inline-block;
  width: 90px;
  overflow: hidden;
}
.footer__trustpilot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__copyright {
  margin: 0 auto;
  margin-top: 30px;
  width: min(100%, 1100px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  text-align: center;
}
.footer__special {
  position: relative;
  margin-top: 30px;
  min-height: 1px;
}
.footer__social {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer__social-item {
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--second);
  border-radius: 100%;
  transition: 0.3s background;
}
.footer__social-item:hover {
  background: var(--accent);
}
.footer__social-link {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__social-link svg {
  width: 100%;
  height: 100%;
  fill: var(--text);
}
.footer__social-item:hover .footer__social-link svg {
  fill: var(--primary);
}
.footer hr {
  margin: 20px 0;
  opacity: 0.2;
}
.footer__paymants {
  text-align: center;
}
.footer__paymants-list {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer__paymants-item {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  background: var(--second);
  overflow: hidden;
  transition: 0.4s ease background;
}
.footer__paymants-icon {
  display: block;
  height: 48px;
  padding: 5px 0;
}
.footer__paymants svg {
  width: 100%;
  height: 100%;
  fill: var(--text);
}
.footer__paymants-item:hover {
  background: var(--accent);
}

.specialPromo {
  position: absolute;
  left: 50%;
  translate: -50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 25px 10px;
  border-radius: var(--radius);
  background: var(--second);
  text-align: center;
  color: var(--white);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  transition: 0.3s ease;
  transition-property: width, box-shadow;
  z-index: 1000;
}
.specialPromo_sticky {
  position: fixed;
  bottom: 0;
  width: 100vw;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.15);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.specialPromo__icon {
  flex-shrink: 0;
  width: 26px;
  aspect-ratio: 1/1;
}
.specialPromo__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.faq__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accord {
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid var(--text);
  border-radius: var(--radius);
  background: rgba(26, 27, 30, 0.1);
  transition: 0.3s border-color;
}
.accord:hover:not(.accord_active) {
  border-color: var(--text);
}
.accord__header {
  gap: 10px;
  color: var(--text);
  font-weight: 500;
  transition: 0.25s color;
}
.accord:hover:not(.accord_active) .accord__header {
  color: var(--text);
}
.accord__header, .accord__icon {
  display: flex;
  align-items: center;
}
.accord__icon {
  width: 20px;
  height: 20px;
  transition: rotate 0.3s ease;
}
.accord__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--text);
  transition: 0.25s fill;
}
.accord:hover:not(.accord_active) .accord__icon svg {
  fill: var(--text);
}
.accord__wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}
.accord__content {
  padding: 16px 28px;
}
.accord_active {
  border-color: var(--accent);
}
.accord_active .accord__header {
  color: var(--accent);
}
.accord_active .accord__icon {
  rotate: 180deg;
}
.accord_active .accord__icon svg {
  fill: var(--accent);
}
.accord_active .accord__wrapper, .accord_close .accord__wrapper {
  height: auto;
}

.glossary__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 40px;
}
.glossary__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.glossary__term {
  text-transform: uppercase;
}
.glossary__definition {
  padding: 5px;
  padding-left: 10px;
  border-left: 4px solid var(--accent);
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  background: var(--primary);
}

@keyframes animTranslate {
  100% {
    translate: 0;
    opacity: 1;
    transform: 0;
  }
}
.anim {
  opacity: 0;
  animation-duration: var(--t, 0.3s);
  animation-delay: var(--d, 0s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.anim_right {
  translate: -5%;
}
.anim_left {
  translate: 5%;
}
.anim_top {
  translate: 0 10%;
}
.anim_bottom {
  translate: 0 -10%;
}
.anim_show {
  animation-name: animTranslate;
}

@media (max-width: 1180px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    width: min(100%, 320px);
    height: var(--vh);
    background: var(--primary);
    translate: 10%;
    opacity: 0;
    transition: 0.4s ease translate, 0.3s ease opacity;
    z-index: 9998;
  }
  .header__nav_show {
    display: block;
  }
  .header__nav_active {
    display: block;
    translate: 0;
    opacity: 1;
  }
  .menu {
    flex-direction: column;
  }
  .menu__item {
    text-align: right;
  }
  .menu__link {
    display: inline-flex;
    text-align: right;
  }
  .menu__link:before {
    content: none;
  }
  .phone {
    display: block;
  }
}
@media (max-width: 900px) {
  .hero__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero__pretitle {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 525px) {
  h1 {
    font-size: 36px;
  }
}
@media (max-width: 466px) {
  .specialPromo {
    font-size: 22px;
  }
}
@media (max-width: 455px) {
  .header__actions .btn_mini:nth-child(1) {
    display: none;
  }
}