@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #15d0fa;
  --color-accent: #D24DFF;
  --color-btn: #26408B;
  --color-warning: #f15353;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-light);
  background: var(--color-dark);
}

body.lock {
  overflow: hidden;
}

a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-primary);
}

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

.wrapper {
  padding-top: 70px;
  background: url("../img/wrapper.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  z-index: 2;
}
.wrapper::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgb(0, 0, 0));
  inset: 0;
  z-index: -1;
}

.main__btn {
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0px 100px 100px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(72, 82, 245, 0.05);
  box-shadow: 0px -10px 20px 0px rgba(72, 82, 245, 0.5) inset;
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  background-color: rgba(181, 181, 250, 0.5);
  transform: translateX(-200%) skewX(-45deg);
  transition: all 2s ease;
}
.main__btn:hover::before {
  transform: translateX(200%) skewX(-45deg);
}

.section__title {
  font-size: 3rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media screen and (max-width: 1200.98px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .section__title {
    font-size: 1.5rem;
  }
}

/*  COMPONENTS  */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  padding: 14px 0;
  background-image: linear-gradient(to right, #22c55e, #a70ee9);
  background-size: 200% auto;
  background-position-x: 100%;
  border-radius: 8px;
  color: #080c11;
  transition: all 0.3s ease-in-out;
}

.main__btn {
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  color: var(--color-light);
  z-index: 2;
  transition: all 0.3s ease;
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(24px);
  z-index: -1;
  transform: translateX(-150%) skewX(-15deg);
  transition: all 1s ease;
}
.main__btn:hover {
  color: var(--color-light);
}
.main__btn:hover::before {
  transform: translateX(150%) skewX(-15deg);
}

/*  COMPONENTS  */
/*  STRUCTURE  */
.header {
  background-color: var(--color-dark);
  padding: 10px 0;
  position: absolute;
  height: 70px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  background: transparent;
}
.header__logo {
  max-width: 50px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.header__disclaimer {
  background-color: #36006a;
  padding: 5px 0;
  color: var(--color-light);
}
.header__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.header__content img {
  max-width: 24px;
}

.intro {
  padding: 1rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 768.98px) {
  .intro {
    padding: 1.875rem 0;
  }
}
.intro__title {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 992.98px) {
  .intro__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .intro__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480.98px) {
  .intro__title {
    font-size: 1.75rem;
  }
}
.intro__subtitle {
  font-size: 1rem;
  text-align: center;
}
.intro__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 768.98px) {
  .intro__list {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 480.98px) {
  .intro__list {
    display: none;
  }
}
.intro__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0.878px solid rgba(49, 60, 84, 0.6);
  background: linear-gradient(91deg, #220f2d 0%, #180f25 99.96%);
  padding: 6px 12px;
  border-radius: 9999px;
}
.intro__item img {
  height: 24px;
  width: auto;
}

.offers {
  padding: 2rem 0;
}

@media screen and (max-width: 480.98px) {
  .offers__logo {
    max-width: 250px;
    width: 100%;
  }
}

.offers__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
}

.offers__list-item {
  width: 100%;
  padding: 1rem 0;
  background: #0e1217;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

/* .offers__list-item:nth-child(even) {
  background: transparent;
} */
.offers__list-item--top {
  position: relative;
}

.offers__list-item--top::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 8px;
  background: linear-gradient(260.52deg, #0974cb -4.98%, #4f23c7 48.42%, #d61c3b 96.9%);
  z-index: -1;
}

@media (max-width: 767.98px) {
  .offers__list-item {
    flex-wrap: wrap;
    padding: 0;
  }
  .offers__list-item:not(:first-child) {
    border: 1px solid #2b2e2e;
    border-radius: 8px;
  }
  .offers__list-item::before {
    top: -17px;
    left: 10px;
    width: 120px;
    height: 28px;
    z-index: 2;
  }
}
.offers__number {
  display: block;
  width: 3rem;
  height: 3rem;
  color: #64696f;
  font-size: 1.5rem;
  line-height: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .offers__number {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 767.98px) {
  .offers__number {
    display: none;
  }
}
.offers__payments {
  margin-top: 1rem;
}

.offers__payments img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .offers {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .offers__list-item--top .offers__block--logo {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    justify-content: space-between;
    border-color: transparent;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .offers__list-item--top .offers__block--logo::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: linear-gradient(260.52deg, #1c99fe -4.98%, #7644ff 48.42%, #fd4766 96.9%);
  }
}
.offers__block--logo {
  position: relative;
  max-width: 260px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(81.27deg, #101318 -0.03%, #171d2c 52.97%, #08090c 99.97%);
  border: 1px solid #2b2e2e;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .offers__block--logo {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .offers__block--logo {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    justify-content: space-between;
    border-color: transparent;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .offers__block--logo::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: #2b2e2e;
  }
}
@media screen and (max-width: 480.98px) {
  .offers__list-item--top .offers__block--logo {
    justify-content: center;
  }
}
.offers__block--bonus {
  padding: 20px 12px;
  text-align: center;
  max-width: 200px;
  width: 100%;
  position: relative;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.offers__block--bonus span:nth-child(2) {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .offers__block--bonus span:nth-child(2) {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .offers__block--bonus span:nth-child(2) {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .offers__block--bonus span:nth-child(2) {
    font-size: 3rem;
    font-weight: 700;
  }
}
@media (max-width: 767.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .offers__block--bonus span:nth-child(2) {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .offers__block--bonus span:nth-child(2) {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offers__block--bonus {
    max-width: 130px;
  }
}
@media (max-width: 767.98px) {
  .offers__block--bonus {
    max-width: 50%;
    gap: 0;
  }
}
.offers__block--text {
  position: relative;
  flex-grow: 1;
  padding: 0 1rem;
  max-width: 300px;
}
.offers__block--text ul {
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .offers__block--text {
    padding: 0.5rem 1rem;
  }
}
.offers__block--text li {
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .offers__block--text li span {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .offers__block--text li:not(:last-child) {
    margin-bottom: 0.2rem;
  }
  .offers__block--text li span {
    font-size: 0.8rem;
  }
}
.offers__block--text img {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.offers__block--text:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 125px;
  background: linear-gradient(90deg, rgba(66, 66, 66, 0) 0%, #424242 50.31%, rgba(66, 66, 66, 0) 100%);
}

.offers__block--text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 125px;
  background: linear-gradient(90deg, rgba(66, 66, 66, 0) 0%, #424242 50.31%, rgba(66, 66, 66, 0) 100%);
}

@media (max-width: 767.98px) {
  .offers__block--text {
    max-width: 50%;
    padding: 1rem;
  }
  .offers__block--text:after {
    display: none;
  }
  .offers__block--text:before {
    top: 0;
    transform: unset;
    height: 100%;
  }
}
.offers__block--btn {
  position: relative;
  z-index: 1;
  max-width: 270px;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .offers__block--btn {
    max-width: 180px;
    padding: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .offers__block--btn {
    max-width: 100%;
    padding: 1rem;
  }
  .offers__block--btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(66, 66, 66, 0) 0%, #424242 50.31%, rgba(66, 66, 66, 0) 100%);
  }
}
.offers__payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media screen and (max-width: 480.98px) {
  .rating {
    margin: 0 auto;
  }
}

.rating__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

@media (max-width: 767.98px) {
  .rating__inner {
    flex-direction: column;
  }
}
.rating__img {
  width: 60px;
  height: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.rating__reviews {
  font-weight: 600;
  color: #64696f;
  font-size: 0.8rem;
}

.rating__text {
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .rating {
    flex-direction: column;
  }
}
.notice {
  padding: 3rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .notice {
    padding: 1.875rem 0;
  }
}
.notice__heading {
  margin-bottom: 1.5rem;
}
.notice__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .notice__title {
    font-size: 1.375rem;
  }
}
.notice__text {
  margin-bottom: 1.5rem;
}
.notice__list {
  margin-bottom: 1.5rem;
}
.notice__list--bold {
  font-weight: 500;
}
.notice__item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.notice__suplist {
  margin-bottom: 0.5rem;
}

.info {
  padding: 5rem 0;
  color: #fff;
}
.info__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info__title {
  text-align: center;
  margin-bottom: 2rem;
}
.info__item {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(100, 200, 255, 0.1);
  background: rgba(3, 26, 33, 0.7019607843);
}
.info__item.active .info__question {
  background: #1d1823;
}
.info__item.active .info__question::after {
  transform: rotate(45deg);
}
.info__question {
  background: #271e32;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 1rem 2rem 1rem 1rem;
  border: none;
  outline: 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.info__question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: transform 0.3s;
}
.info__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s;
}
.info__answer p {
  padding: 1rem;
  margin: 0;
  color: #d0d0d0;
}

.reviews {
  padding: 3rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .reviews {
    padding: 1.875rem 0;
  }
}
.reviews__title {
  margin-bottom: 1rem;
  max-width: 100%;
}
.reviews__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .reviews__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 768.98px) {
  .reviews__list {
    flex-direction: column;
  }
}
.reviews__item {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--color-accent);
  color: var(--color-light);
  background-color: #0c0d16;
}
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.reviews__rating svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #facc15;
}
.reviews__text {
  font-style: italic;
}
.reviews__author {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.safe-play {
  padding: 5rem 0;
  background: #0D0A1A;
  border-top: 2px solid #36006a;
  color: var(--color-light);
  position: relative;
  z-index: 2;
  background: url("../img/safe-play-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.safe-play::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
@media screen and (max-width: 992.98px) {
  .safe-play {
    padding: 1.875rem 0;
  }
}
.safe-play__inner {
  border: 1px solid #36006a;
  border-radius: 1.5rem;
  background-color: #0c0d16;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.safe-play__text {
  text-align: center;
  margin-bottom: 0.5rem;
}
.safe-play__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992.98px) {
  .safe-play__help {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.safe-play__media {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
}
.safe-play__media svg {
  margin: 0 auto;
  display: block;
}
.footer {
  background: linear-gradient(to right, #000, #1a0f14, #0f0f1a);
  color: var(--color-light);
  border-top: 2px solid var(--color-accent);
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding-top: 1.5rem;
  }
}
.footer__list {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 992.98px) {
  .footer__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    flex-direction: column;
  }
}
.footer__description {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768.98px) {
  .footer__description {
    flex-direction: column;
  }
}
.footer__description p + p {
  margin-top: 1.5rem;
}
.footer__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992.98px) {
  .footer__help {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__help-link {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
}
.footer__help-link svg {
  margin: 0 auto;
  display: block;
}
.footer__help-link img {
  margin: 0 auto;
}
.footer__copy {
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  border-top: 1px solid var(--color-accent);
}
.footer__copy span {
  display: block;
  text-align: center;
  margin-top: 1rem;
  opacity: 0.5;
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-item {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0c0d16;
  color: var(--color-light);
  padding: 1.5rem 1rem;
  text-align: center;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookies-item__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .cookies-item__btns {
    flex-direction: column;
    align-items: center;
  }
}
.cookies-item button {
  margin: 0 5px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  max-width: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#accept-cookies {
  background-color: #1dd494;
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

#accept-cookies:hover {
  transform: scale(1.1);
}

#reject-cookies {
  background-color: var(--color-warning);
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

#reject-cookies:hover {
  transform: scale(1.1);
}

.legal-page {
  padding: 5rem 0;
  background-image: url("../img/legal-page.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--color-light);
  position: relative;
  z-index: 2;
}
.legal-page::before {
  position: absolute;
  content: "";
  z-index: -1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
.legal-page h2, .legal-page h3 {
  margin-bottom: 0.625rem;
}
.legal-page p {
  margin-bottom: 1rem;
}
.legal-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.legal-page ul {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  padding-left: 18px;
}
.legal-page a:hover {
  color: var(--color-primary);
}
.legal-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
}
.legal-page__subtitle {
  text-align: center;
}
.legal-page__content {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #0c0d16;
  border: 2px solid var(--color-accent);
}
@media screen and (max-width: 768.98px) {
  .legal-page__content {
    padding: 1rem;
  }
}
.legal-page__text {
  margin-bottom: 1rem;
}
.legal-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  *//*# sourceMappingURL=main.css.map */