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

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

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

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

:root {
  --red-50: #fff1f1;
  --red-100: #ffdfdf;
  --red-200: #ffc5c5;
  --red-300: #ff9d9d;
  --red-400: #ff6565;
  --red-500: #fe3535;
  --red-600: #ec1616;
  --red-700: #c70e0e;
  --red-800: #a41010;
  --red-900-base: #6c1010;
  --red-950: #4a0505;
  --gold-50: #fbf8eb;
  --gold-100: #f5f0cc;
  --gold-200: #ede09b;
  --gold-300: #e2c862;
  --gold-400: #d8b137;
  --gold-500-base: #d2a32c;
  --gold-600: #ac7a22;
  --gold-700: #8a5a1e;
  --gold-800: #734920;
  --gold-900: #633d20;
  --gold-950: #391f0f;
  --accents-white: #fff;
  --accents-black: #0e0e0e;
  --grey-50: #f6f6f6;
  --grey-100: #e7e7e7;
  --grey-200: #d1d1d1;
  --grey-300: #b0b0b0;
  --grey-400: #888;
  --grey-500: #6d6d6d;
  --grey-600: #5d5d5d;
  --grey-700: #4f4f4f;
  --grey-800: #454545;
  --grey-900: #3d3d3d;
  --grey-950-base: #1e1e1e;
  --accents-gold: #eab308;
  --accents-red-warning: #b13;
  --accents-green: #2dac57;
  --accents-website-gold-idle: #f1d46a;
  --accents-website-gold-active: #ffe81d;
  --grad: linear-gradient(90deg, #ef4444, #fbbf24, #fde047);
  --track: linear-gradient(
    90deg,
    rgba(100, 20, 20, 0.25),
    rgba(160, 130, 30, 0.25)
  );
  --bg: #121212;
  --card: #1b1b1d;
  --accent: #f2cc66;
  --accent-ink: #1a1a1a;
  --gold: #ffe08a;
}

*,
*: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 {
  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-color: #181818;
}

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;
  /* отступ вокруг бегунка */
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.container {
  position: relative;
  margin: 0 auto;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding: 16px 160px;
  margin: auto;
}
.header__logo {
  width: auto;
  max-height: 40px;
}

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

.btn-yellow {
  border-radius: 4px;
  border: 1px solid var(--button-border-main, #e1ae36);
  background: var(--accents-website-gold-idle);
  color: var(--button-dark-text, #262626);
  font-family: var(--second-family);
  font-size: 14px;
  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: 4px;
  border: 1px solid var(--button-border-accent, #751010);
  background: #d93731;
  color: #fff;
  font-family: var(--second-family);
  font-size: 14px;
  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;
}

.main {
  background: url("../img/main-bg.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  padding-bottom: 10vh;
  position: relative;
}

.main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30vh;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
  z-index: 5;
}

.main__section {
  padding: 50px 160px 0;
  display: flex;
  justify-content: start;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.bonus__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-img {
  padding-top: 100px;
  width: 40vw;
  z-index: 6;
}

.woman {
  position: absolute;
  bottom: 0;
  right: 160px;
  height: 90vh;
}

.bonus__card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  border-radius: 32px;
  padding: 24px 6px;
  width: 35vw;
  height: min-content;
}

.btn-yellow-big {
  color: var(--button-dark-text, #262626);
  font-family: var(--second-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  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;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 16px;
  padding: 16px 24px;
  max-width: 280px;
}

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

.steps {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 1rem;
}

.seo-h1,
.seo-intro {
  opacity: 0;
  position: absolute;
}

.steps__grid {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: #1b1b1d;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  view-timeline-name: --step;
  view-timeline-axis: block;
}

.step__bar {
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background: var(--track);
}

.step__bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: var(--grad);
  animation: fill both;
  animation-timeline: --step;
  animation-range: entry 20% cover 40%;
}

@keyframes fill {
  to {
    width: var(--fill, 100%);
  }
}

.step__content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step__num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-family: var(--font-family);
  background: linear-gradient(#2a2a2e, #19191c);
  font-size: 33px;
  font-weight: 300;
}

.step h3 {
  font-family: var(--font-family);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.step p {
  font-family: var(--font-family);
  margin: 0.25rem 0 0;
  color: #c8c8cc;
  font-size: 1rem;
}

.bonus-cards {
  background: #1a1a1a;
  color: #fff;
  padding: 16px;
}

.bonus__head {
  max-width: 1100px;
  margin: 0 auto 28px;
  text-align: center;
}

.bonus__head h2 {
  margin: 0 0 0.4rem;
  font: 800 clamp(28px, 5vw, 56px) / 1.05 system-ui, sans-serif;
  letter-spacing: 0.3px;
}

.bonus__head p {
  margin: 0;
  color: #c9c9cf;
  font-size: clamp(14px, 2.2vw, 20px);
}

.bonus__grid {
  max-width: 1160px;
  margin: 28px auto 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 70vw);
  overflow-x: scroll;
}

@media (min-width: 900px) {
  .bonus__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bcard {
  list-style: none;
  background: radial-gradient(120% 120% at 50% 0%, #1f1f22 0%, var(--card) 60%);
  border-radius: 26px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.bcard__link {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.bcard__media {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #0e0e0f;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.bcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bcard__body {
  margin-top: 4px;
}

.bcard__body h3 {
  margin: 0 0 6px;
  font: 800 clamp(18px, 3vw, 32px) / 1.15 system-ui, sans-serif;
  color: #ffe082;
}

.bcard__body p {
  margin: 0;
  color: #c9c9cf;
  font-size: clamp(13px, 2vw, 18px);
}

.bcard:hover .bcard__media img {
  transform: scale(1.05);
}

.bcard:hover,
.bcard:focus-within {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 10px 28px rgba(0, 0, 0, 0.5);
}

.bcard__link:focus-visible {
  outline: 2px solid #ffd670;
  outline-offset: 4px;
  border-radius: 26px;
}

.bonus__cta {
  display: flex;
  justify-content: center;
  margin: 36px 0 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--primary:hover {
  filter: brightness(1.04);
}

.btn--primary:active {
  transform: translateY(1px);
}

.cashback {
  background: #1a1a1b;
  color: #fff;
  padding: 20px 0;
}

.cb-head {
  width: min(1200px, 92vw);
  margin: 0 auto 18px;
  text-align: center;
}

.cb-head h2 {
  margin: 0 0 0.5rem;
  font: 800 clamp(28px, 5.5vw, 44px) / 1.1 system-ui;
}

.cb-head p {
  margin: 0;
  color: #c9c9cf;
  font-size: clamp(14px, 2.2vw, 18px);
}

.cb-figure {
  width: min(1200px, 92vw);
  margin: 20px auto 0;
  position: relative;
  padding: 0 16px;
}

.cb-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.cb-img {
  display: block;
  width: 100%;
  height: clamp(220px, 35vw, 360px);
  object-fit: cover;
  border-radius: inherit;
}

.cb-coin {
  position: absolute;
  z-index: 4;
  width: clamp(54px, 8vw, 88px);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.45));
  animation: float 6s ease-in-out infinite;
}

.coin-1 {
  width: 80px;
  left: 180px;
  top: 0;
  transform: rotate(-8deg);
  animation-delay: 0.2s;
}

.coin-2 {
  width: 120px;
  right: 10px;
  top: -12px;
  transform: rotate(10deg);
  animation-delay: 0.6s;
}

.coin-3 {
  width: 50px;
  left: 65%;
  top: 0;
  transform: rotate(-12deg);
  animation-delay: 0s;
}

.coin-4 {
  width: 100px;
  left: 20px;
  bottom: 80px;
  transform: rotate(14deg);
  animation-delay: 1s;
}

.coin-5 {
  left: 25%;
  bottom: 0;
  transform: rotate(-6deg);
  animation-delay: 0.4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-6px) rotate(calc(var(--r, 0deg) + 4deg));
  }
}

@media (max-width: 720px) {
  .cb-figure {
    padding: 0 10px;
  }
  .cb-coin {
    width: clamp(40px, 10vw, 64px);
  }
  .coin-1 {
    left: 18px;
    top: -18px;
  }
  .coin-2 {
    right: -10px;
    top: 0;
  }
  .coin-3 {
    left: 40%;
    top: -14px;
  }
  .coin-4 {
    left: -8px;
    bottom: -18px;
  }
  .coin-5 {
    right: 30px;
    bottom: -22px;
  }
}

.raffles {
  background: #1a1a1a;
  color: #ffffff;
  padding: 20px 0;
}

.rf-head {
  width: min(1160px, 92vw);
  margin: 0 auto 22px;
  text-align: center;
}

.rf-head h2 {
  margin: 0 0 0.35rem;
  font: 800 clamp(28px, 6vw, 48px) / 1.1 system-ui;
}

.rf-head p {
  margin: 0;
  color: #c9c9cf;
  font-size: clamp(14px, 2.2vw, 18px);
}

.rf-summary {
  width: min(1160px, 92vw);
  margin: 20px auto 28px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .rf-summary {
    grid-template-columns: 1fr 1fr;
  }
}

.rf-card {
  background: linear-gradient(180deg, #1e1e21 0%, #19191b 100%);
  border-radius: 26px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 36px rgba(0, 0, 0, 0.45);
  padding: 18px 20px;
}

.rf-card__top {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.rf-card__label {
  font: 600 13px/1.1 system-ui;
  letter-spacing: 0.08em;
  color: #d6d6d9;
}

.rf-card__timer {
  text-align: right;
}

.rf-card__timer span {
  display: block;
  color: #b7b7bd;
  font-size: 12px;
}

.rf-card__timer b {
  color: #ffd97a;
  font: 600 16px/1.2 system-ui;
  letter-spacing: 0.06em;
}

.rf-card__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 6px 0 10px;
}

.rf-amount {
  font-weight: 700;
  color: #ffd97a;
}

.rf-amount b {
  font: 600 clamp(26px, 5.2vw, 34px) / 1 system-ui;
  margin-right: 8px;
}

.rf-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  margin: 12px 0;
}

.rf-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.rf-stats li {
  text-align: center;
}

.rf-stats li span {
  display: block;
  color: #bdbdc4;
  font-size: 13px;
}

.rf-stats li b {
  display: block;
  margin-top: 6px;
  font: 600 22px/1.1 system-ui;
}

.rf-tickets {
  width: min(1160px, 92vw);
  margin: 0 auto;
  background: #18191a;
  border-radius: 26px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 10px 28px rgba(0, 0, 0, 0.45);
  padding: 18px;
}

.rf-tickets__head {
  text-align: center;
  margin-bottom: 10px;
}

.rf-tickets__head h3 {
  margin: 0 0 0.25rem;
  font: 800 clamp(20px, 4.2vw, 28px) / 1.1 system-ui;
}

.rf-tickets__head p {
  margin: 0;
  color: #c9c9cf;
  font-size: clamp(13px, 2vw, 16px);
}

.rf-tickets__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  padding: 10px 6px 6px;
}

@media (min-width: 900px) {
  .rf-tickets__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ticket {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  background: radial-gradient(120% 120% at 0% 0%, #232326 0%, #1b1b1d 60%);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

@media (max-width: 520px) {
  .ticket {
    grid-template-columns: 120px 1fr;
  }
}

.ticket__media {
  border-radius: 18px;
  overflow: hidden;
  background: #0e0e0f;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

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

.ticket__body h4 {
  margin: 0 0 6px;
  font: 800 20px/1.2 system-ui;
}

.ticket__body p {
  margin: 0 0 8px;
  color: #cfcfd5;
}

.ticket__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 14px;
  color: #e8d07a;
  font-weight: 700;
}

.ticket__list li span {
  color: #d7d7dd;
  font-weight: 600;
  margin-left: 6px;
}

.howto {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 0;
}

.howto__head {
  width: min(1160px, 92vw);
  margin: 0 auto 18px;
  text-align: center;
}

.howto__head h2 {
  margin: 0 0 0.5rem;
  font: 800 clamp(26px, 6vw, 44px) / 1.1 system-ui;
}

.howto__head p {
  margin: 0;
  color: #c9c9cf;
  font-size: clamp(14px, 2.2vw, 18px);
}

.howto__grid {
  list-style: none;
  width: min(1160px, 92vw);
  margin: 24px auto 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .howto__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-card {
  view-timeline-name: --card;
  view-timeline-axis: block;
}

.how-card__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(241, 212, 106, 0.2) 100%
  );
  font-size: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.how-main {
  flex: 1;
  min-width: 0;
}

.how-bar {
  height: 14px;
  border-radius: 999px;
  margin: 4px 0 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(100, 20, 20, 0.25),
    rgba(160, 130, 30, 0.25)
  );
}

.how-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff1f1f, #ffb12c, #ffe26a); /* заливка */
  animation: how-fill both;
  animation-timeline: --card;
  animation-range: entry 20% cover 40%;
}

@keyframes how-fill {
  to {
    width: var(--fill, 100%);
  }
}

.how-main h3 {
  margin: 0 0 4px;
  font: 800 clamp(18px, 3.6vw, 28px) / 1.2 system-ui;
}

.how-main p {
  margin: 0;
  color: #c9c9cf;
  font-size: clamp(14px, 2vw, 16px);
}

.howto__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.how-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font: 500 15px/1 system-ui;
  background: linear-gradient(#f4d370, #e8bd54);
  color: #1a1a1a;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35), 0 10px 28px rgba(240, 185, 60, 0.25);
}

.how-btn:hover {
  filter: brightness(1.04);
}

.how-btn:active {
  transform: translateY(1px);
}

@supports not (animation-timeline: view()) {
  .how-bar::after {
    width: var(--fill, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-bar::after {
    animation: none;
    width: var(--fill, 100%);
  }
}

.fifth__section {
  background: #1a1a1a;
  padding: 20px 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 39px;
  text-align: center;
  color: var(--accents-white);
}

.fifth__section h2 {
  font-weight: 600;
  font-size: 39px;
}

.fifth__section h3 {
  font-weight: 400;
  font-size: 19px;
  line-height: 140%;
  padding-bottom: 36px;
}

.fifth__section h4 {
  font-weight: 600;
  font-size: 27px;
  color: var(--accents-website-gold-idle);
}

.fifth__section h5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.fifth__section h6 {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  padding-bottom: 4px;
}

.fifth__section p {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
}

.fifth__section-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 70vw;
  margin: auto;
  overflow-x: auto;
}

.fifth__section-list article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  gap: 12px;
  border-radius: 8px;
  padding: 0 24px 24px;
  width: 224px;
  height: 276px;
  background: radial-gradient(
    112.64% 141.42% at 0% 0%,
    #454545 0%,
    #1e1e1e 69.71%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05),
    0 0 15px rgba(0, 0, 0, 0.6);
}

.coin-container {
  position: relative;
  width: 150px;
  height: 180px;
  overflow: hidden;
}

.coin {
  position: absolute;
  top: -50px;
  width: 40px;
  opacity: 0;
  animation: fall 2.5s linear infinite;
}

.coin:nth-child(2) {
  left: 20%;
  animation-delay: 0.5s;
}
.coin:nth-child(3) {
  left: 30%;
  animation-delay: 1s;
}
.coin:nth-child(4) {
  left: 50%;
  animation-delay: 1.5s;
}
.coin:nth-child(5) {
  left: 60%;
  animation-delay: 0.8s;
}
.coin:nth-child(6) {
  left: 10%;
  animation-delay: 1.2s;
}
.coin:nth-child(7) {
  left: 55%;
  animation-delay: 1.7s;
}
.coin:nth-child(8) {
  left: 35%;
  animation-delay: 2s;
}

.vip-offers-section {
  background: rgba(26, 26, 26, 0.65);
  color: #e6e6e6;
  padding: 20px 16px;
  position: relative;
  z-index: 2;
}

.vip-offers-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.novisib {
  opacity: 0;
  position: absolute;
}

.vip-offers-section h1,
.vip-offers-section h2,
.vip-offers-section h3 {
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.vip-offers-section h1 {
  font-size: 32px;
}

.vip-offers-section h2 {
  font-size: 26px;
}

.vip-offers-section h3 {
  font-size: 20px;
  color: #ffcf66;
}

.vip-offers-section p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.vip-offers-section ul,
.vip-offers-section ol {
  margin-left: 22px;
  margin-bottom: 16px;
}

.vip-offers-section li {
  margin: 6px 0;
}

@media (min-width: 992px) {
  .vip-offers-section {
    padding: 10px 160px;
  }
}

@keyframes fall {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(360deg);
    opacity: 0;
  }
}

.coin-container:not(.animate) .coin,
.coin-container:not(.animate) .sparkle {
  animation: none;
}

@media screen and (max-width: 991px) {
  .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;
  }
}

@media screen and (max-width: 768px) {
  .btn-yellow-big {
    font-size: 15px;
    margin-top: -12px;
    /* padding: 19px 53px; */
    text-align: center;
    margin-left: 0;
    justify-content: center;
  }

  .main {
    height: 120vh;
  }

  .main::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 70vh;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.1) 0%, #1a1a1a 100%);
    z-index: 2;
  }

  .header__btns {
    width: 100%;
  }

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

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

  .header {
    z-index: 4;
  }

  .header .container {
    padding: 14px 15px;
    gap: 10px;
    display: flex;
    flex-direction: column-reverse;
  }

  .header__logo img {
    width: 128px;
  }

  .bonus__card {
    align-items: center;
    position: relative;
    z-index: 0;
    max-width: 90vw;
    min-width: 360px;
    height: 370px;
    padding: 0;
  }

  .bonus-img {
    width: 80vw;
    padding: 0 0 20px;
  }

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

  .woman {
    left: 5%;
    z-index: 4;
    height: 72vh;
  }

  .main__section {
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 16vh;
    left: 0;
    right: 0;
    padding: 0;
  }

  .rf-card__top {
    gap: 0;
  }

  .rf-card__timer b {
    white-space: nowrap;
  }

  .fifth__section {
    padding: 16px;
  }

  .fifth__section-list {
    width: 90vw;
    gap: 16px;
  }
}

@media screen and (max-width: 375px) {
  .main {
    height: 125vh;
  }

  .woman {
    left: 10%;
    height: 70vh;
  }

  .main::before {
    height: 30vh;
  }

  .main__section {
    top: 18vh;
  }
}

@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: #1a1a1a;
}

@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 */
