:root {
  --background: #0B0B0B;
  --text: #fff;
  --footer: #1F071D;
  --btn-log: #E6E6E6;
  --btn-reg: linear-gradient(45deg, #FF2DA6 0%, #FF68BE 100%);
  --link: #FF2DA6;
  --radius: 15px;
  --radius-btn: 18px;
  --back: #000000cc;
  --gradient: radial-gradient(ellipse 75% 85% at 88% 8%,#57091f 0%,#350512 35%,#170207 58%,#000 82%);
  --border: rgba(255, 45, 166, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

button {
  cursor: pointer;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

@font-face {
  font-style: normal;
  font-family: "Pacifico";
  font-weight: 400;
  src: url("fonts/Pacifico-Regular.ttf");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text);
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

.wrapper {
  margin: auto;
  max-width: 100%;
  padding: 0 10px;
  width: 1180px;
}

/* Header */
.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  transition: transform 0.1s ease;
  z-index: 29;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__content-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__content-left .logo img {
  width: 120px;
}
@media (min-width: 640px) {
  .header__content-left .logo img {
    width: 150px;
  }
}
.header__content-menu {
  display: none;
  gap: 4px;
}
@media (min-width: 960px) {
  .header__content-menu {
    display: flex;
    align-items: center;
  }
}
.header__content-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  min-width: 40px;
  padding: 8px 12px;
  color: var(--text);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.header__content-link:hover {
  color: var(--link);
}
.header__content-link:hover svg {
  fill: var(--link);
}
.header__content-link svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}
.header__content-search {
  height: 40px;
  min-width: 40px;
  display: none;
}
@media (min-width: 960px) {
  .header__content-search {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__content-search svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}
.header__content-search:hover svg {
  fill: var(--link);
}
.header__content-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__content-btns .btn-reg {
  width: 115px;
}
.header__content-btns .btn-log {
  width: 60px;
}

.btn {
  border-radius: var(--radius-btn);
  background-color: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  height: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-log {
  background: var(--btn-log);
  color: var(--background);
}
.btn-log:hover {
  opacity: 0.8;
}

.btn-reg {
  background: var(--btn-reg);
}
.btn-reg:hover {
  opacity: 0.8;
}

/* Content */
.content-block {
  margin: 12px 0;
}

.slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.slider .main-slider-next,
.slider .main-slider-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: none;
  background-color: var(--btn-log);
}
@media (min-width: 640px) {
  .slider .main-slider-next,
  .slider .main-slider-prev {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.slider .main-slider-next svg,
.slider .main-slider-prev svg {
  width: 24px;
  height: 24px;
  fill: var(--background);
}
.slider .main-slider-prev {
  left: 20px;
}
.slider .main-slider-next {
  right: 20px;
}
.slider .main-slider {
  width: 100%;
  min-width: 0;
  height: 256px;
  overflow: hidden;
}
@media (min-width: 960px) {
  .slider .main-slider {
    height: 360px;
  }
}
.slider .main-slider .swiper-wrapper,
.slider .main-slider .swiper-slide {
  height: 100%;
}
.slider .main-slider .slide-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.slider .main-slider .slide-main img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.slider .main-slider .slider-text {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 16px;
}
.slider .main-slider .slider-text span {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 26px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 2px;
}
@media (min-width: 960px) {
  .slider .main-slider .slider-text span {
    font-size: 48px;
    line-height: 52px;
  }
}
.slider .main-slider .slider-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
@media (min-width: 960px) {
  .slider .main-slider .slider-text p {
    font-size: 24px;
    line-height: 32px;
  }
}
.slider .main-slider .slider-text .btn {
  padding: 0 20px;
  animation-name: pulse;
  animation-duration: 1.15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  height: 35px;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
.tabs {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.tabs__item {
  display: flex;
  align-items: center;
  border-radius: var(--radius-btn);
  gap: 8px;
  height: 40px;
  padding: 6px 12px;
  background: var(--footer);
}
.tabs__item:hover {
  background: var(--btn-reg);
}
.tabs__item img {
  width: 24px;
  height: 24px;
}
.tabs__item span {
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.jackpot {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--footer);
  margin-bottom: 20px;
}
.jackpot__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
.jackpot__top-icon {
  display: flex;
  gap: 4px;
}
.jackpot__top-icon span {
  color: var(--btn-log);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.jackpot__top-icon svg {
  width: 16px;
  height: 16px;
}
.jackpot__top-value {
  color: var(--text);
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  text-transform: uppercase;
}
.jackpot__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  position: relative;
  margin-top: 8px;
}
.jackpot__bottom-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 8px;
  border-radius: var(--radius);
}
.jackpot__bottom-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.jackpot__bottom-back {
  width: 52px;
  height: 52px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.jackpot__bottom-back svg {
  width: 100%;
  height: 100%;
}
.jackpot__bottom-text {
  color: var(--text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
}
.jackpot__bottom-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.jackpot__bottom-id {
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--btn-log);
}
.jackpot__bottom p {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
  text-transform: uppercase;
}
.jackpot__bottom p svg {
  width: 20px;
  height: 20px;
}
.jackpot__bottom-value {
  color: var(--btn-log);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.games {
  margin-bottom: 20px;
}
.games__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.games__top span {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--text);
}
.games__top-more {
  display: flex;
  align-items: center;
  gap: 4px;
}
.games__top-more span {
  font-size: 16px;
  line-height: 20px;
  color: var(--btn-log);
}
.games__top-more svg {
  width: 20px;
  height: 20px;
}
.games__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 8px;
  grid-column-gap: 8px;
}
@media (min-width: 640px) {
  .games__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .games__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .games__list {
    grid-template-columns: repeat(7, 1fr);
  }
}
.games__list-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--footer);
}
.games__list-img {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease-out;
  transform: scale3d(1, 1, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.games__list-img::before {
  content-visibility: hidden;
  content: "";
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--border);
  transition: opacity 0.3s ease-in-out;
  z-index: 4;
}
.games__list-img:hover {
  transform: translateZ(0) scale3d(1.05, 1.05, 1.05);
}
.games__list-img:hover::before {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 1;
  content-visibility: visible;
}
.games__list-img:hover .play {
  content-visibility: visible;
  opacity: 1;
  transform: translateZ(0) scale3d(1.05, 1.05, 1.05);
}
.games__list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__list-img .play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-reg);
  position: absolute;
  transition: transform 0.35s ease-out;
  content-visibility: hidden;
  opacity: 0;
  z-index: 4;
  transform: translate(40%);
}
.games__list-img .play svg {
  width: 25px;
  height: 25px;
}
.games__list-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 50px;
  padding: 8px 12px;
}
.games__list-title {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
.games__list-provider {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--btn-log);
}

.img-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.img-content img {
  border-radius: var(--radius);
}

footer .footer {
  background-color: var(--footer);
  border-radius: var(--radius);
}
footer .footer__row {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
footer .footer__row:last-child {
  border-bottom: 0;
}
footer .footer__row span {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}
footer .footer__row a {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--text);
}
footer .footer__row a:hover {
  color: var(--link);
}
footer .footer__row p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--text);
}
footer .footer__row .licenses {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer__row .licenses img {
  width: 34px;
  height: 34px;
}

.seo__content {
  padding: 16px;
  background-color: var(--footer);
  border-radius: var(--radius);
}
.seo__content h1, .seo__content h2, .seo__content h3, .seo__content h4 {
  padding: 15px 0;
}
@media (min-width: 960px) {
  .seo__content h1, .seo__content h2, .seo__content h3, .seo__content h4 {
    padding: 20px 0;
  }
}
.seo__content h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  padding: 0;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .seo__content h1 {
    font-size: 36px;
  }
}
.seo__content h2 {
  font-size: 22px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__content h2 {
    font-size: 32px;
  }
}
.seo__content h3 {
  font-size: 20px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__content h3 {
    font-size: 28px;
  }
}
.seo__content h4 {
  font-size: 18px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__content h4 {
    font-size: 24px;
  }
}
.seo__content p {
  line-height: 1.4;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__content p {
    font-size: 18px;
  }
}
.seo__content a {
  font-size: 16px;
  color: var(--btn-reg);
}
@media (min-width: 960px) {
  .seo__content a {
    font-size: 18px;
  }
}
.seo__content a:hover {
  transition: 0.3s ease-out;
  color: var(--reg-hover);
}
.seo__content ul {
  padding-left: 30px;
  margin-bottom: 20px;
}
.seo__content ul li {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__content ul li {
    font-size: 18px;
  }
}
.seo__content ol {
  padding-bottom: 20px;
  padding-left: 30px;
  counter-reset: myCounter;
}
.seo__content ol li {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
}
@media (min-width: 960px) {
  .seo__content ol li {
    font-size: 18px;
  }
}
.seo__content ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: var(--btn-reg);
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.table-block {
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-btn);
  margin-bottom: 20px;
}
.table-block table {
  width: 100%;
  border-collapse: collapse;
}
.table-block table tr {
  background: var(--background);
}
.table-block table tr:nth-child(2n) {
  background: none;
}
.table-block table td {
  text-align: center;
  padding: 15px;
  color: var(--text);
  font-size: 16px;
}

.faq__item {
  background: var(--background);
  border-radius: var(--radius-btn);
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.faq__item h3 {
  color: var(--text);
  padding: 15px 56px 15px 17px;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
.faq__item h3:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  top: 30%;
  transition: 0.3s ease-out;
  background-image: url(img/faq-icon.svg);
  right: 15px;
  height: 28px;
  width: 28px;
}
.faq__item .faq__answer {
  background: var(--content);
  border-bottom-right-radius: var(--radius-btn);
  border-bottom-left-radius: var(--radius-btn);
  padding: 17px;
  display: none;
  transition: 0.3s ease-out;
}
.faq__item .faq__answer p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
}
.faq__item .faq__answer p:last-child {
  padding-bottom: 0;
}
.faq__item .faq__answer.active {
  display: block;
}

.faq__item.open h3::after {
  transform: rotate(0);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.modal__content {
  position: relative;
  z-index: 1;
  background-color: var(--card);
  border-radius: var(--radius-btn);
  padding: 25px;
  overflow: hidden;
  animation: fadeIn 0.3s ease forwards;
  width: 100%;
  margin: 0 20px;
}
@media (min-width: 960px) {
  .modal__content {
    width: 500px;
    margin: 0;
  }
}
.modal__content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.modal__content-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
@media (min-width: 960px) {
  .modal__content-title {
    font-size: 28px;
  }
}
.modal__content-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.modal__content-close svg {
  fill: var(--background);
}
.modal__content-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal__content-bottom p {
  color: var(--text);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
.modal__content-bottom img {
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 200px;
  opacity: 0.4;
}
@media (min-width: 640px) {
  .modal__content-bottom img {
    opacity: 1;
  }
}
.modal__content-bottom .jackpot__btn {
  margin: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  height: 32px;
  border-radius: var(--radius-btn);
  background-color: var(--btn-reg);
  color: var(--text);
  width: 200px;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */