@charset "UTF-8";

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

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

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

:root {
  --main-bg-color: #151516;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*--------------------*/
/* ---------------- */
::selection {
  background: #F2D669;
  /* Цвет фона */
  color: #fff;
  /* Цвет текста */
}

body {
  color: #fff;

  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
  background: #060606;
}

body::-webkit-scrollbar {
  width: 8px;
  /* ширина всей полосы прокрутки */
}

body::-webkit-scrollbar-track {
  background: №202020;
  /* цвет зоны отслеживания */
}

body::-webkit-scrollbar-thumb {
  background-color: #F2D669;
  /* цвет бегунка */
  border-radius: 20px;
  /* округлось бегунка */
  border: 3px solid #202020;
  /* отступ вокруг бегунка */
}

h1 {
  font-size: 34px;
  line-height: 44px;
}

h2 {
  font-size: 36px;
  line-height: 48px;
}

p {
  font-size: 18px;
  line-height: 25px;
}

.header {
  padding: 14px 50px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.header__logo img {
  width: 10.462vw;
}

.header__btns {
  display: flex;
  gap: 19px;
  justify-content: center;
  align-items: center;
}

.btn-yellow {
  border-radius: 8px;
  border: 1px solid var(--button-border-main, #E1AE36);
  background: #E1AE36;
  color: var(--button-dark-text, #262626);
  font-family: "Rubik";
  font-size: 1.077vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-yellow:hover {
  background-color: #efc255;
  border-color: #efc255;
}

.btn-red {
  border-radius: 8px;
  border: 1px solid var(--button-border-accent, #751010);
  background: var(--button-accent, #6C1010);
  color: #fff;
  font-family: "Rubik";
  font-size: 1.077vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-red:hover {
  background-color: #861717;
  border-color: #861717;
}

.btn-yellow-big {
  color: var(--button-dark-text, #262626);
  font-family: "Rubik";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid var(--Accents-White, #FFF);
  background: var(--LP-gradient-button, linear-gradient(90deg, #E2C862 0%, #E2C862 30%, #F5F0CC 65%, #E2C862 100%));

  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  margin-left: 7px;
  margin-top: 25px;
  padding: 16px 24px;
}

.btn-yellow-big span {
  z-index: 4;
  position: relative;
}

.btn-yellow-big:after {
  content: "";
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  border-radius: 16px;

  background: rgba(210, 163, 44, 0.35);

  position: absolute;
  left: -9px;
  top: -9px;
  transition: 0.3s all;
}

.btn-yellow-big:hover:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.main {
  background-color: #0C0B0B;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.main__row {
  background-image: url("../img/banner1.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  height: 100vh;
  display: flex;
  width: 100%;
  min-height: 890px;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.main__text h2 {
  color: #FFF;
  font-family: "Rubik";
  font-size: 3.385vw;
  font-style: normal;
  font-weight: 700;
  line-height: 108%;
  /* 47.52px */
  text-transform: uppercase;
}

.main__text-block .thead {
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--Golden-Grass-950, #391F0F);
  font-family: Rubik;
  font-size: 68.8px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  background: linear-gradient(180deg, #EDE09B 18.79%, #D8B137 37.73%, #EDE09B 56.36%, #D8B137 77.1%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  -webkit-text-stroke: 1.5px black;
  /* Обводка текста */
}
.star {
  display: flex;
  gap: 12px;
  flex-direction: column;
  margin-top: 48px;
}
.star-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
 
}
.star-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: normal;
  color: var(--Accents-White, #FFF);
}
.main__text-block .star-text span {
  margin-top: 0;
  margin-bottom: 0;
}
.star-item span:nth-child(1) {
  font-size: 23.04px;
  font-weight: 600;
}
.star-item span:nth-child(2) {
font-size: 15.96px;
font-weight: 400;
}

.coin {
  position: absolute;
  left: 36vw;
  top: 10vw;
  height: 28vw;
  min-width: 34vw;
  overflow: hidden; /* Чтобы монеты не выходили за пределы блока */
}

.coin img {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.coin_1 {
  max-width: 60px;
  animation: fadeRotate 4s infinite ease-in-out;
}

.coin_2 {
  max-width: 95px;
  animation: fly2 4s infinite ease-in-out;
}

.coin_3 {
  max-width: 107px;
  animation: fly3 4s infinite ease-in-out;
}

.coin_4 {
  max-width: 126px;
  animation: fly4 4s infinite ease-in-out;
}

.coin_5 {
  max-width: 134px;
  animation: fly5 4s infinite ease-in-out;
}

.coin_6 {
  max-width: 104px;
  animation: fly6 4s infinite ease-in-out;
}

@keyframes fadeRotate {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes fly2 {
  0%, 100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
  }
  50% {
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fly3 {
  0%, 100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
  }
  50% {
    top: 30%;
    left: 15%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fly4 {
  0%, 100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
  }
  50% {
    top: 85%;
    left: 30%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fly5 {
  0%, 100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
  }
  50% {
    top: 85%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fly6 {
  0%, 100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
  }
  50% {
    top: 30%;
    left: 85%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}





.main__text-block h3 {
  color: var(--Accents-White, #FFF);
  /* Desktop/H5 Desktop */
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--Shark-950-Base, #1E1E1E);
  font-family: Rubik;
  font-size: 23.04px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
  margin-bottom: 8px;
}



.main-text_desc {
  color: var(--Accents-White, #FFF);
  /* Desktop/H2 Desktop */
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--Shark-950-Base, #1E1E1E);
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.rotire {
  width: 100%;
  padding: 50px 50px 200px 50px;
  background-color: #0C0B0B;
  /*background-image: url("../img/rotire_bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;*/
}
.one-columns {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
    align-items: stretch;
}
.one-column {
  border-radius: var(--12, 12px);
border: 1px solid #3C3C3C;
background: rgba(38, 38, 38, 0.60);
  padding: 24px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
  flex-basis: calc((100% - 48px) / 3);
}
.one-column span {
  color: var(--Accents-White, #FFF);
text-align: center;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.one-column span:nth-child(1) {
  font-size: 13.33px;

}
.one-column span:nth-child(2) {
  color: var(--Golden-Grass-500-Base, #D2A32C);
  font-size: 23.04px;
  font-weight: 600;
}
.one-column span:nth-child(3) {
  font-size: 15.96px;
}
.rotire .rtitle {
  color: var(--Accents-White, #FFF);
  text-align: center;
  font-family: Rubik;
  font-size: 47.78px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.rotire p {
  color: var(--Accents-White, #FFF);
  text-align: center;
  margin-top: 24px;
  text-align: center;
  font-family: Rubik;
  font-size: 19.2px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rotire .rtitle span {
  color: var(--Golden-Grass-500-Base, #D2A32C);
  text-align: center;
}

.rotire__columns {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 48px 0;
}

.rotire__column {
  border-radius: var(--12, 12px);
  border: var(--2, 2px) solid #E2C862;
  background: var(--Cards-Grey-gradient, radial-gradient(112.64% 141.42% at 0% 0%, #454545 0%, #1E1E1E 69.71%));
  padding: 32px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;

  flex-basis: calc((100% - 48px) / 3);
}

.rotire__column span {
  color: var(--Accents-White, #FFF);
  text-align: center;

  /* Body/Body large */
  font-family: Rubik;
  font-size: 16.2px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rotire__column span .akcent {
  color: var(--Golden-Grass-500-Base, #D2A32C);
  display: block;
}

.rotire__column p {
  color: var(--Golden-Grass-500-Base, #D2A32C);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 12px;

  /* Desktop/H4 Desktop */
  font-family: Rubik;
  font-size: 27.65px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.rotire .btn-yellow-big {
  margin: auto;
}

@media screen and (max-width: 991px) {
  .main {
    padding-top: 170px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .btn-yellow-big {
    font-size: 15px;
  }

  .header__logo img {
    width: 124px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main__text h2 {
    font-size: 38px;
  }

  .main__text-block {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background: var(--main-bg-color);
  }

  .main {
    padding: 0;
    background: none;
    display: flex;
    flex-direction: column;
    background-color: #000;
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
    background-image: url('../img/banner1.webp');
  }

  .main:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7);*/
  }

  .main__row {
    background: none;
    padding-top: 11vh;
    padding-left: 15px;
    padding-right: 15px;
    height: auto;
    min-height: 50vh;
    align-items: flex-start;
  }

  .main__text {
    position: relative;
    z-index: 2;
    margin-top: 0;
    width: 100%;
  }
  .coin {
  display: none;
}
.star {
  order: 3;
  margin-bottom: 48px;
}


  .main__text-block h3 {
    font-size: 5.5vw;
    text-align: right;
    -webkit-text-stroke: 1px #000000;
    text-stroke: 1px #000000;
  }

 .one-columns {
  flex-direction: column;
 }

  .main__text-block.bottom {
    padding-top: 10px;
  }

  .main__text-block.bottom p,
  .main__text-block.bottom h2 {
    font-size: 16px;
    line-height: 114%;
    /* 18.24px */
    text-transform: uppercase;
    color: #D2A32C;
  }

  .main__text h2 {
    font-size: 13.5vw;
    line-height: 100%;
    text-align: center;
  }


  .main__text-block {
    margin-top: 0px;
    margin-bottom: 0px;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .btn-yellow-big {
    font-size: 15px;
    /* padding: 19px 53px; */
    width: 100%;
    text-align: center;
    margin-left: 0;
    justify-content: center;
    margin-top: 45vh;

  }

  .rotire {
    padding: 0 15px 42px 15px;
  }

  .rotire h2 {
    font-size: 10.5vw;
  }

  .rotire h2 br {
    display: block;
  }

  .rotire__columns {
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
  }

  .rotire__column {
    width: 100%;
    padding: 24px 8px;
  }

  .header__btns {
    width: 100%;
  }

  .rotire .btn-yellow-big {
    width: 100%;
  }

  .btn-red {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  /*.btn-red span {
    display: none;
  }*/
  .btn-yellow {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  /*.btn-yellow span {
    display: none;
  }*/
  .header {
    padding: 14px 15px;
    z-index: 4;
    gap: 10px;
    display: flex;
    flex-direction: column-reverse;
  }

  .header__logo img {
    width: 128px;
  }
}

@media screen and (max-width: 375px) {
  .main {
    /*   height: 700px;*/
  }

  .main__row {
    padding-top: 45vh;
  }
}

@media screen and (min-width: 1024px) {
  .body {
    max-width: 62.25rem;
    margin: 0 auto;
    width: 100%;
  }
}

.container_flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.footer-providers {
  padding: 1rem 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-providers {
    padding: 1.875rem 0.75rem 2.5rem;
  }
}

.footer-providers a {
  width: 5.625rem;
  height: 2.25rem;
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-providers a {
    margin: 0.625rem;
    height: 2rem;
    width: 5rem;
  }
}

.footer-providers a svg,
.footer-providers a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 0 0.75rem;
  }
}

.footer-bottom-license {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #BDBDBD;
  text-align: center;
  margin: 0 auto;
  max-width: 43.75rem;
}

.footer-bottom-license a {
  color: #BDBDBD;
}

.footer-bottom-row {
  padding: 1.875rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .footer-bottom-row:first-child {
    padding: 1.875rem 0;
  }
}

.footer-bottom-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.0625rem;
  background: #BDBDBD;
  max-width: 45.25rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row::after {
    left: 2.375rem;
    right: 2.375rem;
    width: initial;
    max-width: initial;
    text-align: center;
  }
}

.footer-bottom-col p {
  margin: 0;
  color: #E0E0E0;
  font-size: 0.75rem;
  line-height: 1rem;
}

@media screen and (max-width: 768px) {
  .footer-bottom-col p {
    text-align: center;
  }
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.footer-bottom-col_text {
  margin-bottom: 0.75rem;
}

footer,
.footer-menu {
  background: #262626;
}

@media screen and (min-width: 768px) {
  .footer-bottom-col_text {
    padding-right: 3rem;
    margin-bottom: 0;
  }
}

.footer-menu {
  padding: 24px 0;

}

.footer-menu.red {
  background: #440907;
}

.footer-menu__link {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration: underline;
  margin: 0 0.3125rem;
}

@media screen and (max-width: 768px) {
  .footer-menu__link {
    padding: 0.625rem 0.9375rem;
  }
}

.footer-menu__link:hover {
  color: #ffffff;
}

.footer-age {
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-age {
    order: 0;
  }
}

.footer-age img {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-license {
  text-align: center;
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-license {
    order: 1;
  }
}

.joc-icon {
  width: 6.25rem;
  height: 2.5rem;
  display: block;
}

.joc-icon img {
  width: 100%;
  height: 100%;
}

.footer-license__icon {
  position: relative;
  width: 2.5rem;
  display: block;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */
rotire h2,
.rotire p {
    text-align: left;
}
.rotire h1 {
    font-weight: bold;
    text-align: center;
    font-size: 36px;
}
.rotire h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 10px 0;
}
.rotire h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0;
}
.rotire h4 {
    font-size: 20px;
}
.rotire p {
    font-size: 18px;
    margin: 10px 0;
    font-weight: normal;
}
.rotire ul li,
.rotire ol li {
    font-size: 18px;
    margin: 5px 0;
    margin-left: 25px;
    list-style-type: auto;
}
.faq-item {
    border-bottom: 1px solid #333;
    padding: 15px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-size: 1.2em;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s;
}
.faq-question:hover {
    color: #e2c862;
}
.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 1em;
}
.faq-item.active .faq-answer {
    display: block;
}

.reviews {
    margin: 0 auto;
    padding: 20px;
    background: #0c0b0b;
    border-radius: 10px;
}

.review {
    background: #1a1a1a;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.review:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.6);
}

.review span[itemprop="author"] {
    font-size: 1.2em;
    font-weight: bold;
    color: #e2c862;
}

.review meta[itemprop="datePublished"] {
    font-size: 0.9em;
    color: #aaa;
}

.review div[itemprop="reviewRating"] span {
    display: inline-block;
    background: linear-gradient(90deg, #e2c862 0%, #e2c862 30%, #f5f0cc 65%, #e2c862 100%);
    color: #0c0b0b;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    margin: 5px 0;
}

.review div[itemprop="reviewBody"] p {
    font-size: 1em;
    color: #ddd;
    margin-top: 10px;
    line-height: 1.5;
}
.rotire .main__text-btn {
  margin:25px auto;
}
.banner {
  display:flex;
  width:100%;
  align-items: center;
}
.main__text-block {
  width:60%;
}
.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 552px;
  height: 552px;
  z-index: 0; /* самый нижний слой */
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Большой круг */
.circle.big {
  width: 552px;
  height: 552px;
  background: rgba(255, 255, 255, 0.05);
}

/* Средний */
.circle.medium {
  width: 472px;
  height: 472px;
  background: rgba(255, 255, 255, 0.1);
}

/* Маленький */
.circle.small {
  width: 370px;
  height: 370px;
  background: rgba(255, 255, 255, 0.1);
}

.girl {
  background-image: url(../img/girl2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 552px;
  height: 552px;
  top: 0;
  left: 50px;
  z-index: 2; /* Верхний слой */
  pointer-events: none; /* <- не блокирует клики по иконкам */
}
.circle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 552px;
  height: 552px;
  z-index: 1; /* Под фоном */
}

.icon {
  position: absolute;
  object-fit: contain;
  animation-duration: 6s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

/* 👑 Crown */
.crown {
  width: 98px;
  height: 102.48px;
  animation-name: crownAnim;
}
@keyframes crownAnim {
  0%, 100% { left: 65px; top: 53.5px; }
  33%      { left: 443px; top: 53.5px; }
  66%      { left: 419px; top: 440.5px; }
}

/* 💲 Dollar */
.dollar {
  width: 75px;
  height: 91px;
  animation-name: dollarAnim;
}
@keyframes dollarAnim {
  0%, 100% { left: 461px; top: 79.5px; }
  33%      { left: 503px; top: 312.5px; }
  66%      { left: 73px; top: 414.5px; }
}

/* 🍒 Cherry */
.cherry {
  width: 63px;
  height: 57.56px;
  animation-name: cherryAnim;
}
@keyframes cherryAnim {
  0%, 100% { left: 65px; top: 232.5px; }
  33%      { left: 156px; top: 41.5px; }
  66%      { left: 477px; top: 280.5px; }
}

/* 7️⃣ Seven */
.seven {
  width: 75px;
  height: 70.7px;
  animation-name: sevenAnim;
}
@keyframes sevenAnim {
  0%, 100% { left: 482px; top: 245.5px; }
  33%      { left: 398px; top: 425.5px; }
  66%      { left: 16px; top: 173.5px; }
}

/* ⭐ Star */
.star {
  width: 73px;
  height: 77.69px;
  animation-name: starAnim;
}
@keyframes starAnim {
  0%, 100% { left: 91px; top: 435.5px; }
  33%      { left: 13px; top: 174.5px; }
  66%      { left: 452px; top: 75.5px; }
}

/* 🔔 Bell */
.bell {
  width: 73px;
  height: 75.61px;
  animation-name: bellAnim;
}
@keyframes bellAnim {
  0%, 100% { left: 440px; top: 440.5px; }
  33%      { left: 13px; top: 337.5px; }
  66%      { left: 138px; top: 36.5px; }
}
.banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}


.rightbanner {
  width: 100%;
  max-width: 552px;
  height: auto;
  aspect-ratio: 1 / 1; /* чтобы сохранялась пропорция */
  position: relative;
  transform-origin: center;
  scale: 1;
}
.thead1 {
  font-size:19px;
  font-weight:500;
  margin-bottom:25px;
  text-transform: uppercase;
}
.thead2 {
  font-size:48px;
  font-weight:700;
  line-height:75px;
}
.bntext {
  margin-top:50px;
}
.bntext p {
  font-size:23px;
  font-weight:600;
  margin-bottom:15px;
}
@media(min-width:768px) {
  .thead2mobile {
    display:none;
  }
}
.bonusmob {
  display:none;
}
.sectionbonus {
  display:flex;
  margin-bottom:50px;
}
.bonustx .main__text-btn {
  margin:0;
  margin-top:25px;
}
.bonusimg {
  width:50%;
}
.bonusimg img {
  width:100%;
}
.rotire p.txh {
  font-size:33px;
  font-weight:600;
}
.rotire p.txb {
  font-size:23px;
  color:#EAB308;
  font-weight:600;
  margin-top:25px;
}
.rotire .bonustx ul li {
  list-style-type: disc;
  font-weight:400;
  font-size:16px;
}
@media (max-width: 768px) {
  .sectionbonus {
    flex-direction:column;
  }
  .bonusimg {
    width:100%;
  }
  .banner {
    flex-direction: column-reverse;
  }
  .banner-wrapper {
    padding:0px;
  }
  .main__text-block {
    width:100%;
  }
  .btn-yellow-big {
    margin-top:0px;
  }
  .star {
    width:100%;
  }

  .girl {
    height:405px;
    background-position:30px;
    margin:0 auto;
    width:100%;
    top:0;
    left:0;
  }
  .circle-container {
    right: -45px;
    left:auto;
  }
  .circles {
    top: -55px;
    right: -75px;
    left:auto;
  }
  .thead1 {
    text-align:center;
    margin-bottom:0px;
  }
  .thead2 {
    display:none;
  }
  .thead2mobile {
    font-size:32px;
    font-weight:600;
    line-height: 50px;
    text-align:center;
    margin-bottom:25px;
  }
  .bntext p {
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
  }
  .main__text-block {
    z-index:5;
  }
  .bntext {
    display:none;
  }
  .bonusmob {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom:25px;
  }
  .bonusmob p {
    text-align:center;
  }
  .bonusmob p {
    font-size:32px;
  }
  p.bonustext {
    font-size:24px;
    font-weight:600;
  }
  p.bonuspromo {
    font-size:15px;
    font-weight:500;
  }
}