@charset "UTF-8";

html {
  box-sizing: border-box;
}

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

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

@font-face {
  font-family: "Rubik";
  src: url("fonts/Rubik/Rubik-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2"),
    url("fonts/Montserrat/Montserrat-SemiBold.woff") format("woff"),
    url("fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

ul[class],
ol[class] {
  padding: 0;
}

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

ul[class] {
  list-style: none;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

::selection {
  background: #f2d669;
  color: #fff;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #202020;
}

body::-webkit-scrollbar-thumb {
  background-color: #f2d669;
  border-radius: 20px;
  border: 3px solid #202020;
}

.calendar__item-gift.shake {
  animation: shake 0.5s ease-in-out;
}

.header {
  overflow: hidden;
  position: relative;
}

.header__wrapper {
  padding-top: 24px;
  min-height: 800px;
  height: 100vh;
  background-image: url("../img/back.webp");
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

@media (max-width: 1350px) {
  .header__wrapper {
    background-size: 100%;
    background-position: top;
  }
}

@media (max-width: 1150px) {
  .header__wrapper {
    max-height: 80dvh;
  }
}

@media (max-width: 950px) {
  .header__wrapper {
    max-height: 100dvh;
    background-size: 1250px;
    background-position: 85% top;
  }
}

@media (max-width: 775px) {
  .header__wrapper {
    background-position: 85% top;
  }
}

@media (max-width: 500px) {
  .header__wrapper {
    background-position: 90% top;
  }
}

@media (max-width: 450px) {
  .header__wrapper {
    background-image: url("../img/mobile.png");
    background-size: cover;
    background-position: top center;
   /* max-height: 80dvh;*/
   max-height: none;
        height: auto;
  }
}

.header__top {
  display: flex;
  justify-content: space-between;
}



.header__top .logo {

  position: relative;
  z-index: 3;
  transition: transform 0.3s;
}

.header__top .logo::before {
  border-radius: 125.571px;
  background: rgba(255, 181, 0, 0.75);
  backdrop-filter: blur(25.652311325073242px);
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 178px;
  height: 70px;
  transform: rotate(-10deg);
  z-index: 2;
}

.header__top .logo img {
  width: 178px;
  z-index: 3;
  position: relative;
  padding: 6px 23px 17px 23px;
  border-radius: 37.611px;
  background: rgba(21, 7, 7, 0.67);
  backdrop-filter: blur(17.631235122680664px);
  display: block;
}

.header__top .logo:hover {
  transform: scale(1.1);
}

@media (max-width: 550px) {
  .header__top .logo {
    margin-top: 12px;
  }
}

.header__btns {
  display: flex;
  column-gap: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 550px) {
  .header__btns {
    width: 100%;
  }
}

.header__btn {
  display: flex;
  column-gap: 8px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 4px;
  position: relative;
  z-index: 3;
}

@media (max-width: 550px) {
  .header__btn {
    width: 100%;
    justify-content: center;
  }
}

.header__btn path {
  transition: fill 0.3s;
}

.header__btn.log {
  border-radius: var(--8, 8px);
  background: #262626;
  color: #FFF;
  transition: all 0.3s;
}

@media (hover: hover) {
  .header__btn.log:hover {
    background-color: #3f3f3f;
    border-color: #3f3f3f;
  }

  /* .header__btn.log:hover path {
    fill: #d2a32c;
  }*/
}

.header__btn.reg {
  background-color: #FFD700;
  border-radius: var(--8, 8px);
  color: #1E1E1E;
  transition: all 0.3s;
}

@media (hover: hover) {
  .header__btn.reg:hover {
    background-color: #ffcd4e;
    border-color: #ffcd4e;
  }

  /* .header__btn.reg:hover path {
    fill: #4a0505;
  }*/
}

.header__info {
  max-width: 550px;
  margin-left: auto;
  width: 100%;
  font-family: Rubik, sans-serif;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  position: relative;
}
.header__info-top {
  display: flex;
  flex-direction: column;
  width: 450px;
  border-radius: 67.829px;
  background: linear-gradient(125deg, #302C2A -3.22%, rgba(31, 11, 11, 0.00) 100%);
  backdrop-filter: blur(13.856496810913086px);
  padding: 16px 16px 48px 16px;
 position: relative;
  gap: 10px;
}
.header__info-top span {
  color: var(--Accents-White, #FFF);
  text-align: center;
  font-family: Rubik;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -4.598px;
}

.header__info-top span.absolute {
  position: absolute;
  top: 33%;
  left: 44%;
  z-index: 4;
}

.header__info-top span.accent {
  color: #FFB500;
  text-align: center;
  font-family: Rubik;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.header__info-top .bg {
  border-radius: 54.263px;
  background: rgba(21, 7, 7, 0.67);
  backdrop-filter: blur(13.856496810913086px);
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding: 23px 28px;
}

.header__info-top span.accent.font-2 {
  font-size: 25px;
}

.header__info-top .btn {
  border-radius: 13.513px;
  border: 1.689px solid var(--Button-Border-main, #E1AE36);
  background: var(--Button-Main, #FFB700);
  box-shadow: 0px 0px 96.2px 0px #000000;
  color: var(--Button-Dark-text, #262626);
  font-family: Rubik;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.541px;
  padding: 27px 50px;
  width: max-content;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -44px;
  transition: all 0.3s ease 0s;
}

.header__info-top .btn:hover {
  background: #f8a500;
}
.header__info-bottom {
  border-radius: 59.466px;
background: linear-gradient(163deg, rgba(28, 13, 8, 0.76) 68.26%, rgba(28, 13, 8, 0.00) 109.74%);
backdrop-filter: blur(12.147985458374023px);
padding: 20px 15px 20px 0;
}
.header__info-bottom .dupa {
  color: #FFF;
text-align: center;
font-family: Rubik;
font-size: 13px;
text-align: center;
font-style: normal;
font-weight: 400;
line-height: normal;
margin: 0 auto 14px auto;
display: block;
}
.header__info-bottom .bg {
  border-radius: 59.466px;
background: linear-gradient(125deg, #302C2A -3.22%, rgba(31, 11, 11, 0.00) 100%);
backdrop-filter: blur(12.147985458374023px);
padding: 14px 0 0 15px;
}
.header__info-bottom .row {
  display: flex;
  gap: 58px;
  padding: 16px 35px;
  border-radius: 47.573px;
background: rgba(21, 7, 7, 0.67);
backdrop-filter: blur(12.147985458374023px);
}
.header__info-bottom .game {
  display: flex;
  flex-direction: column;
  text-align: center;
font-family: Rubik;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 102.289%; /* 22.622px */
}
.header__info-bottom .game img {
  width: 90px;
  height: auto;
}
.header__info-bottom .game p {
  color: #FFF;
  margin-top: 15px;

}
.header__info-bottom .game span {
  color: #FFB500;
  font-weight: 300;
}
.header__info-bottom .accent {
  color: #FFB500;
  font-weight: 500;
}
@media (max-width: 1150px) {
  .header__info {
    margin-top: 135px;
  }
}

@media (max-width: 950px) {
  .header__info {
    margin-top: 277px;
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .header__info {
    margin-top: 440px;
  }
}

@media (max-width: 450px) {
  .header__info {
    margin-top: 255px;
  }
}

.header__info-subtitle {
  position: relative;
  z-index: 3;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header__info-description {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 500px) {
  .header__info {
    gap: 70px;
  }

  .header__info-subtitle {
    font-size: 16px;
  }

  .header__info-subtitle br {
    display: none;
  }

  .header__info-description {
    font-size: 16px;
  }

  .header__info-description br {
    display: none;
  }
}

.header__info-title {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  z-index: 3;
}

@media (max-width: 500px) {
  .header__info-title {
    font-size: 37px;

  }
}

.header__info-title span {
  color: #FFD700;
  font-size: 48px;
}

.header__info-btn {
  color: #262626;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 8px;
  background: #FFD700;
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  padding: 16px 24px;
}

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

@media (hover: hover) {
  .header__info-btn:hover {
    background: #FFB700;
  }
}

@media (max-width: 550px) {
  .header__info-btn {
    display: inline-block;
    width: 100%;

    width: calc(100%);
    text-align: center;
  }
}

.top {
  padding: 48px 0 96px 0;
}

.top__container {}

.top__items {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  width: 100%;
  gap: 24px;
}

.top__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Rubik, sans-serif;
  text-align: center;
  padding: 24px 0;
  max-width: 360px;
  flex-basis: calc((100% - 48px) / 3);
  border-radius: var(--12, 12px);
  border: 1px solid var(--LP-gradient-button, #E2C862);
  background: linear-gradient(100deg, #232323 0%, #121212 100%);
  padding: 24px 16px;
  box-shadow: 0px 60px 60px 0px rgba(0, 0, 0, 0.40);
}

.top__item-info {}

.top__item-num {
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

.top__item-title {
  color: #d2a32c;
  font-size: 23px;
  font-weight: 600;
  margin-top: 12px;
}

.top__item-text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 700px) {
  .top {
    padding: 24px 0 65px 0;
  }

  .top__items {
    flex-direction: column;
    gap: 16px;
  }

  .top__item {
    max-width: 100%;
    flex-basis: 100%;
  }
}

.bottom {
  /* margin-top: 24px;*/
  margin-bottom: 96px;
}

.bottom .bottom__items-container {
  /* overflow-x: auto;*/
  display: flex;
  flex-direction: column;
  /* scroll-behavior: smooth;*/
  padding: 30px 0 0px 0;
  align-items: center;
}

.bottom .bottom__items-container::-webkit-scrollbar {
  display: none;
}

.bottom__items {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  width: 100%;
  padding: 0 48px;
}

.bottom__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: Rubik, sans-serif;
  text-align: left;
  padding: 24px 0;
  max-width: 360px;
  min-width: 240px;
}

.bottom__item img {
  width: 71px;
  transition: transform 0.3s;
}

.bottom__item img:hover {
  transform: rotate(-10deg);
}

.bottom__item-num {
  font-size: 13.33px;
  font-weight: 400;
  color: #fff;
  margin-top: 24px;
}

.bottom__item-title {
  color: #FFD700;
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin-top: 12px;
}

.bottom__item-text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #CCC;
}

.bottom.bottom-prima {
  margin-bottom: 114px;
}

.bottom.bottom-prima .calendar__title {
  ;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.bottom.bottom-prima .calendar__text {
  color: #FFD700;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.calendar {
  position: relative;
  /*background-image: url("../img/calendar/bg.webp");*/
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}

@media (max-width: 700px) {
  .calendar {
    background-size: 1000px;
  }

  .bottom__items {
    flex-direction: column;
    padding: 0;
  }

  .bottom__item {
    flex-direction: row;
    gap: 16px;
  }

  .bottom__item-title {
    margin-top: 0;
  }

  .bottom__item-text br {
    display: none;
  }

}

.calendar__btn {
  width: 136px;
  height: 44px;
  background-color: #f1d46a;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 144px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  transition: all 0.3s;
}

@media (max-width: 800px) {
  .calendar__btn {
    margin-bottom: 128px;
  }
}

@media (hover: hover) {
  .calendar__btn:hover {
    background-color: #000;
    color: #f1d46a;
  }
}

.calendar__decor {
  position: absolute;
  z-index: 2;
  top: -45px;
  left: 50%;
  transform: translate(-50%);
  z-index: 4;
}

.calendar__box {
  position: relative;
  overflow: hidden;
  padding-top: 1px;
}

.calendar__box:before {
  position: absolute;
  content: "";
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: #efae00cc;
  top: -45px;
  left: 50%;
  transform: translate(-50%);
  z-index: 3;
  filter: blur(50px);
}

.calendar__wrapper {
  position: relative;
  border-radius: 12px;
  z-index: 2;
}

.calendar__wrapper:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: 0;
  z-index: -1;
  border-radius: 12px;
  background: linear-gradient(to bottom, #f1d46a 0%, transparent 30%);
}

.calendar__wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #222020, #222020 30%, #22202000 90%);
  border-radius: 12px;
}

.calendar__info {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 48px;
  color: #fff;
  font-family: Rubik, sans-serif;
  max-width: 743px;
  margin: 0 auto;
}

.calendar__title {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;

  font-weight: 700;
  margin-bottom: 24px;
}

.calendar__text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #CCC;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 48px;
}

.calendar__items {
  position: relative;
  z-index: 3;
  padding: 0 96px 48px;
  display: flex;
  /*  justify-content: center;*/
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .calendar__info {
    padding-left: 8px;
    padding-right: 8px;
  }

  .calendar__items {
    gap: 16px;
    padding: 8px;
    justify-content: center;
  }

  .calendar__title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .calendar__title br {
    display: none;
  }

  .calendar__text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .calendar__text br {
    display: none;
  }
}

.calendar__item {
  width: 168px;
  height: 168px;
  border-radius: 8px;
  background: linear-gradient(to bottom, #024acf, #6c96e4);
  position: relative;
  font-family: Inter, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: opacity 0.3s;
  cursor: pointer;
}

@media (max-width: 800px) {
  .calendar__item {
    width: 148px;
    height: 148px;
  }
}

.calendar__item-gift {
  width: 100px;
  margin: 0 auto;
}

.calendar__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 8px;
}

.calendar__item-bg--lock {
  display: none;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.3s;
}

.calendar__item-status {
  position: absolute;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 5;
  color: #fff;
  font-size: 11px;
  top: 4px;
  left: 4px;
}

.calendar__item-day {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s;
  z-index: 5;
}

.calendar__item-btn {
  position: absolute;
  font-size: 19px;
  color: #000;
  background-color: #f1d46a;
  border-radius: 8px;
  width: 160px;
  text-align: center;
  padding: 12px;
  z-index: 4;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
  bottom: 4px;
}

.calendar__item.completed {
  background: transparent;
  opacity: 0.5;
}

.calendar__item.completed .calendar__item-status {
  background-color: #4caf50;
}

.calendar__item.completed:hover {
  opacity: 1;
}

.calendar__item.completed:hover .calendar__item-day {
  transform: translateY(-50px);
}

.calendar__item.completed:hover .calendar__item-btn {
  opacity: 1;
}

.calendar__item.active .calendar__item-status {
  background-color: #2196f3;
}

.calendar__item.active:hover .calendar__item-day {
  transform: translateY(-50px);
}

.calendar__item.active:hover .calendar__item-btn {
  opacity: 1;
}

.calendar__item.locked .calendar__item-status {
  background-color: #9e9e9e;
}

.calendar__item.locked .calendar__item-bg--lock {
  display: block;
}

.calendar__item.locked .calendar__item-status,
.calendar__item.locked .calendar__item-day {
  transition: opacity 0.3s;
  opacity: 0.8;
}

.calendar__item.locked:hover .calendar__item-bg--lock {
  opacity: 0.7;
}

.calendar__item.locked:hover .calendar__item-status,
.calendar__item.locked:hover .calendar__item-day {
  opacity: 1;
}

.footer {
  padding: 24px 0;
  background-color: #000000;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  font-family: Rubik, sans-serif;
  font-size: 13.3px;
  font-weight: 400;
  gap: 12px;
  padding: 24px 0;
  margin-bottom: 12px;
}

.footer__link {
  transition: color 0.3s;
}

.footer__link:hover {
  color: #ccc;
}

.footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  margin-bottom: 12px;
}

.footer__partner {
  transition: transform 0.3s;
  border-radius: var(--8, 8px);
  background: #262626;
  padding: 0 30px;
  width: 160px;
  height: 52px;
  display: flex;
}

.footer__partner img {
  margin: auto;
  object-fit: contain;
}

@media (hover: hover) {
  .footer__partner:hover {
    transform: scale(1.1);
  }
}

.footer__adult {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  font-family: Rubik, sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 24px 0;
  border-top: 1px solid #454545;
  border-bottom: 1px solid #454545;
  flex-wrap: wrap;
}

.footer__adult img {
  height: 48px;
  width: auto;
}

.footer__adult a img {
  transition: transform 0.3s;
}

.footer__adult a img:hover {
  transform: scale(1.1);
}

@media (max-width: 700px) {
  .footer__adult {
    gap: 24px;
  }
}

.footer__adult-img {
  display: flex;
  align-items: center;
  column-gap: 24px;
}

.footer__text {
  padding: 24px 0;
  text-align: center;
  font-family: Rubik, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  max-width: 816px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1158px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

body {
  background-color: #000000;
}

.f-bg {
  border-top: 1px solid var(--Grey-800, #454545);
}

.footer-providers {
  padding: 24px 0;
  display: flex;
  gap: 128px;
  justify-content: center;
  align-items: center;
}

.footer-providers a {
  display: block;
}

.footer-providers img {
  width: 160px;
  height: auto;
}

.footer-menu {
  padding: 16px 0;
}

.footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 70%;
}

.footer-menu__link {
  flex-basis: calc((100% - 48px) / 3);
  color: var(--Gold-Idle, #FFB700);
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  padding: 8px 0;
  line-height: normal;
}

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

.footer-bottom {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.80);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  justify-content: space-between;
}

.footer-bottom-col_flex {
  display: flex;
  gap: 24px;
}

.footer-bottom img {
  width: auto;
  height: 32px;
}

@media (max-width: 700px) {
  .header__top .logo img {
    width: 120px;
  }
  .header__top .logo::before {
    width: 120px;
    height: 50px;
  }
  .header__info-top .bg {
    font-size: 50px;
    letter-spacing: -2px;
  }
  .header__info-top span.accent {
    font-size: 30px;
  }
  .header__info-top span.accent.font-2 {
    font-size: 20px;
}
.header__info-top .btn {
  font-size: 15px;
  padding: 15px 40px;
  bottom: -20px;
}
.header__info-top span.absolute {
  top: 30%;
}
.header__info-bottom {
  padding: 13px 0;
  border-radius: 39.071px;
}
.header__info-bottom .bg {
  border-radius: 39.071px;
  padding: 9px;
}
.header__info::before {
  top: -70px;
    left: -30px;
  width: calc(100% + 60px);
}
  .header__info-bottom .row {
    gap: 25px;
    padding: 10px 30px;
    border-radius: 31.257px;
  }
  .header__info-bottom .game img {
    width: 60px;
  }
  .footer-providers {
    gap: 0;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom-row:nth-child(2) {
    margin-bottom: 0;
  }

  .footer-menu__list {
    gap: 0;
  }

  .footer-menu__link {
    flex-basis: 100%;
  }
}
.content {
  font-family: Rubik;
  color:#fff;
  padding: 20px;
  line-height: 1.6;
}
.content h1 {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #444;
  padding-bottom: 0.2em;
}

.content h2 {
  font-size: 1.6em;
  color: #f0f0f0;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

.content h3 {
  font-size: 1.3em;
  color: #cccccc;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.content p {
  font-size: 1em;
  margin-bottom: 1em;
  color: #d0d0d0;
}

.content ul,
.content ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.content ul li,
.content ol li {
  margin-bottom: 0.5em;
  color: #c8c8c8;
}

.content li:hover {
  color: #ffffff;
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  background-color: #1e1e1e;
  color: #e0e0e0;
}

.content th,
.content td {
  padding: 12px 15px;
  border: 1px solid #333;
  text-align: left;
}

.content th {
  background-color: #2a2a2a;
  color: #ffffff;
  font-weight: bold;
}

.content tr:nth-child(even) {
  background-color: #1a1a1a;
}

.content tr:hover {
  background-color: #2d2d2d;
}
.content .table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5em;
  border: 1px solid #333;
  border-radius: 8px;
}

.content .table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.content .table-wrapper::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.content .table-wrapper::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 4px;
}
.faq-block {
  background-color: #181818;
  color: #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.8em;
  margin-bottom: 1em;
  color: #ffffff;
  border-bottom: 2px solid #333;
  padding-bottom: 0.3em;
}

.faq-item {
  margin-bottom: 1em;
  border-bottom: 1px solid #333;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  color: #f0f0f0;
  font-size: 1.1em;
  padding: 15px 10px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-question:hover {
  background-color: #222;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 10px;
  color: #ccc;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 10px;
}

.reviews {
  background-color: #181818;
  color: #e0e0e0;
  padding: 30px;
  border-radius: 12px;
  margin: 0 auto;
  margin-top:50px;
}

.reviews h2 {
  font-size: 1.8em;
  margin-bottom: 1.5em;
  border-bottom: 2px solid #333;
  padding-bottom: 0.4em;
  color: #ffffff;
}

.review {
  padding: 20px 0;
  border-bottom: 1px solid #2b2b2b;
}

.review:last-child {
  border-bottom: none;
}

.review span[itemprop="author"] {
  display: inline-block;
  font-weight: bold;
  font-size: 1.05em;
  color: #ffcc66;
  margin-bottom: 5px;
}

.review meta[itemprop="datePublished"] + div::before {
  color: #888;
  font-size: 0.9em;
  display: inline-block;
  margin-top: 5px;
}

.review div[itemprop="reviewRating"] {
  margin-top: 5px;
  font-size: 0.95em;
  color: #ffa500;
}

.review div[itemprop="reviewBody"] {
  margin-top: 10px;
  font-size: 1em;
  line-height: 1.6;
  color: #d0d0d0;
}

.review span[itemprop="author"] + div[itemprop="reviewRating"] span {
  font-weight: bold;
  margin-left: 5px;
}


.banner {
  display:flex;
  justify-content:flex-end;
  margin-top:110px;
}
.burning {
  background: #150707D9;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding:10px;
  margin-bottom:-5px;
}
.offer-container {
  position: relative; /* ВАЖНО: нужно для позиционирования псевдоэлемента */
  width: 39%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-container::before {
  content: '';
  position: absolute;
  top: -15px; /* сверху от контейнера */
  left: 50%; /* по центру */
  transform: translateX(-50%) translateY(-20%); /* немного вверх */
  background-image: url(../img/coins-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 120%; /* чуть шире контейнера */
  height: 150%; /* пропорционально */
  z-index: 100; /* ниже контента */
  pointer-events: none;
}

.offer {
  background-color: rgba(0, 0, 0, 0.6); /* Тёмная подложка */
  background-image: 
    linear-gradient(295.11deg, #FFB700 5.08%, rgba(255, 183, 0, 0) 97.92%),
    linear-gradient(111.27deg, rgba(21, 7, 7, 0.84) 11.72%, rgba(21, 7, 7, 0.504) 93.94%);
  backdrop-filter: blur(23.5592px);
  -webkit-backdrop-filter: blur(23.5592px);
    width:100%;
    border-radius: 20px;
    padding:10px;
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:10px;

    
}

.bonusoffer, .promooffer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 14.04px;
  width:100%;
  border-radius:20px;
  background: rgba(21, 7, 7, 0.67);
  font-family:Rubik;
}

.bonusoffer p {
  font-size: 45px;
  font-weight: 300;
  color: #FFB500;
  font-family:Rubik;
}
.promooffer {
  font-family:Rubik;
  font-weight:300;
  font-size:40px;
  color:#fff;
}
.promooffer span {
  font-weight:700;
  font-family:Rubik;
  color:#FFB700;
}

.burning {
  width:250px;
}
.offer-container a {
  color:#262626;
  font-family:Rubik;
  font-weight:700;
  font-size:36px;
  background: #FFB700;
  box-shadow: 0px 0px 19.1px 0px #FFBB0E;
width:75%;
text-align:center;
z-index:100;
margin-top:-5px;
border-radius:15px;
padding-top:10px;
padding-bottom:10px;
}
.offer-container a:hover {
  background: #ecab05;
  box-shadow: 0px 0px 19.1px 0px #ecab05;
}


@media(max-width:450px) {
  .banner {
    margin-top: 45vh;
  }
.offer-container {
  width:100%;
}
.offer-container::before {
  top:20px;
}
}