@import url("https://fonts.cdnfonts.com/css/svn-gilroy");

* {
  box-sizing: border-box;
  position: relative;
}
body {
  font-family: "SVN-Gilroy", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol{
  margin-left: 0;
}
.container {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn {
  width: max-content;
  /* background: #B6E034; */
  background: linear-gradient(180deg, #ff971d, #ff971d);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: linear-gradient(180deg, #ff971d, #ff971d);
  color: #fff;
}

input[type="submit"] {
  background: #b6e034;
  background: linear-gradient(180deg, #ff971d, #ff4d4d);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 25px !important;
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
input[type="submit"]:hover {
  background: #b6e034;
  background: linear-gradient(180deg, #ff4d4d, #ff971d);
}
.btn i {
  margin-right: 12px;
}
.header {
  padding-top: 65px;
}
.header-navbar__wrapper {
  background-color: #1a1a1a;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}
.header-logo svg {
  height: 35px;
  width: auto;
}
.header-logo img {
  height: 35px;
  width: auto;
}
.header-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header-navbar ul.active {
  display: flex;
  flex-direction: column;
}
.header-navbar ul li {
  padding: 10px 0;
}
.header-navbar ul li a {
  text-decoration: none;
  padding: 5px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}

/* .header-navbar ul li:first-child a{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
} */
/* .header-navbar ul li:not(:last-child) a:after{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 1px;
    background-color: #cbcbcb;
} */
/* .header-navbar ul li:last-child a{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
} */
.header-navbar .sub-menu {
  display: none;
}
.sub-menu li {
  padding: 0 !important;
}
.sub-menu li a {
  background: none !important;
  width: max-content !important;
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu-item-has-children:before {
  content: "";
  background: url(../img/chevron.svg) no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: -5px;
  top: 15px;
  color: #fff;
}
.menu-item-has-children:hover .sub-menu {
  display: flex !important;
  align-items: flex-start;
  flex-direction: column;
  background-color: #1a1a1a;
  padding: 10px;
  top: 54px;
  box-shadow: none;
  z-index: 1;
}

.sub-menu.open {
  display: flex !important;
  align-items: flex-start;
  flex-direction: column;
  background-color: #dd9292;
  backdrop-filter: blur(6px);
  padding: 10px;
  top: 54px;
  box-shadow: none;
}
.header-banner {
  height: 500px;
}
.header-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
.header-banner__content {
  position: absolute;
  left: 13%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 44px;
  line-height: normal;
  color: #fff;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 25px;
  border-radius: 15px;
}
.header-banner__content p {
  margin: 10px 0;
}
.header-banner__content .btn {
  margin-top: 35px;
}
.game {
  display: grid;
  grid-template-columns: repeat(2, 65% 30%);
  gap: 35px;
  padding: 25px 0;
}
.game-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #f8fbfd;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 35px;
}
.game-stock__img {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  height: 100px;
  width: 200px;
}
.game-stock__text {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  flex: 1 1 auto;
}
.game-stock__action {
  flex: 0 0 auto;
}

.game-demo iframe,
.game-demo img {
  height: 350px;
  width: 100%;
object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}

.game-action {
  text-align: center;
}
.toc {
  background-color: #f8fbfd;
  border-radius: 15px;
  padding: 15px;
  max-width: 520px;
  margin-bottom: 35px;
}
.toc-title {
  font-weight: bold;
  font-size: 24px;
}
.toc-list {
  margin: 15px 0;
  padding-left: 30px;
  font-size: 16px;
}
.toc-list a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid;
}
.toc-list a:hover {
  border-bottom-color: transparent;
}
.content-bonuses__before img,
.content-bonuses__after img {
  border-radius: 15px;
  overflow: hidden;
}
.content-img {
  max-width: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}
.bonuses {
  padding: 25px 0;
}
.bonuses-list {
  padding-top: 25px;
}
.bonus-item {
  background-color: #f8fbfd;
  border-radius: 15px;
  /* box-shadow: 0 16px 25px 0 rgba(41,41,37,.25),0 7px 14px 0 rgba(41,41,37,.15); */
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.bonus-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  background: #a53eeb;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  width: max-content;
  border-radius: 5px;
  transform: rotate(-15deg);
  display: none;
}

.bonus-img {
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20%;
}

.bonus-img__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.rating-value__wrapper {
  font-weight: bold;
}
.bonus-brand {
  flex: 0 0 20%;
}
.bonus-brand__title {
  font-weight: 600;
  font-size: 20px;
}

.bonus-games__title {
  font-size: 12px;
  color: #9d9d9d;
}

.bonus-games__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.bonus-games__list li {
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.bonus-rating {
  text-align: center;
}

.bonus-rating__title {
  font-size: 14px;
  margin-bottom: 10px;
}

.bonus-rating__value {
  font-weight: 600;
  font-size: 28px;
}

.bonus-rating__value i {
  color: red;
}

.bonus {
  text-align: center;
}

.bonus i {
  font-size: 40px;
  color: green;
}

.bonus-info {
  text-align: center;
  flex: 0 0 20%;
}

.bonus-title {
  font-size: 16px;
}

.bonus-value {
  font-size: 28px;
  font-weight: 600;
}

.bonus-value i {
  color: #83b812;
}

.bonus-term {
  font-size: 26px;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 20%;
  text-align: center;
}
.bonus-action {
  flex: 0 0 20%;
  text-align: right;
}
.games {
  padding: 25px 0;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding-top: 55px;
}
.game-item {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 16px 25px 0 rgba(41,41,37,.25),0 7px 14px 0 rgba(41,41,37,.15); */
}
.game-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.8);
}
.game-item:hover {
  transform: scale(1.2);
  z-index: 2;
  transition: 0.2s ease-in-out;
}
.game-item:hover .game-content {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}
.game-title {
  margin-bottom: 12px;
  color: #fff;
  font-weight: bold;
}
.game-content .btn {
  padding: 5px 20px;
  font-size: 16px;
}
.bonus-spec {
  padding: 25px 0;
}
.bonus-spec__wrapper {
  position: relative;
  border-radius: 15px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #f8fbfd;
  /* box-shadow: 0 16px 25px 0 rgba(41,41,37,.25),0 7px 14px 0 rgba(41,41,37,.15); */
}

.bonus-spec__banner {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 1;
}

.bonus-spec__banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bonus-spec__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.bonus-spec__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.bonus-spec__content {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 34px;
  line-height: normal;
  max-width: 500px;
  width: 100%;
}
.bonus-spec__content span {
  font-size: 20px;
  font-weight: 500;
}
.feature {
  padding: 25px 0;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 55px;
}
.feature-item {
  background-color: #f8fbfd;
  /* box-shadow: 0 16px 25px 0 rgba(41,41,37,.25),0 7px 14px 0 rgba(41,41,37,.15); */
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}
.feature-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-item__icon i {
  font-size: 44px;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffc107;
  color: #fff;
}
.feature-item__title {
  font-weight: 600;
  margin: 12px 0;
}
.feature-item__text {
  font-size: 14px;
}
.bonus-month {
  padding: 25px 0;
}
.content {
  padding: 25px 0;
}
.content-wrapper {
  display: flex;
  background-color: #f8fbfd;
  padding: 40px;
  border-radius: 15px;
  gap: 40px;
}
.content-text {
  width: 100%;
}
.content-nav {
  padding: 20px;
  flex: 0 0 25%;
  background-color: #eaedf1;
  border-radius: 15px;
  position: sticky;
  top: 100px;
  min-height: max-content;
  height: 100vh;
  overflow-y: scroll;
}
.content-nav::-webkit-scrollbar {
  display: none;
}
.content-nav ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.content-nav ol li {
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 0;
}
.content-nav ol li a {
  text-decoration: none;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
}
.faq {
  padding: 25px 0;
}
.ac {
  background-color: #f8fbfd;
  border-color: #b7b7b7;
  border-radius: 15px;
  padding: 10px;
}
.ac button {
  text-transform: uppercase;
}
.payments-items,
.soft-items,
.respons-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  padding: 25px 0;
}
.payment-item,
.soft-item,
.respons-item {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.payment-item img,
.soft-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bottom-stock {
  background: #fff;
  padding: 10px 0;
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  color: #1a1a1a;
  display: none;
}

.bottom-stock__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-right: 35px;
}

.bottom-stock__rating {
  flex: 0 0 auto;
}

.bottom-stock__rating-text {
  font-size: 12px;
}

.bottom-stock__img {
  width: 150px;
  height: 75px;

  border-radius: 15px;
  overflow: hidden;
  flex: 0 0 auto;
  margin: 0 auto;
}

.bottom-stock__text {
  flex: 0 1 auto;
  text-align: center;
}

.bottom-stock__action {
  flex: 0 0 auto;
}

.bottom-stock__close {
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer {
  background-color: #292925;
  padding: 25px 0;
  color: #d3d3d3;
  text-align: center;
}
.footer-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}
.footer-nav ul li a {
  text-decoration: none;
  color: #d3d3d3;
}
.footer-img ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}
.single-game {
  padding: 0 0 55px;
}
.single-game .content {
  padding: 0;
}
.single-frame iframe {
  width: 100%;
  height: 600px;
}
.signle-game__action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.breadcrumbs {
  color: #1a1a1a;
  padding: 30px 0;
}
.breadcrumbs a {
  color: #1a1a1a;
}
.cons {
  padding: 25px 0;
}
.cons-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cons-block {
  background-color: #f8fbfd;
  border-radius: 15px;
  padding: 15px;
}
.cons-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cons-plus .fa.fa-plus {
  color: #00b600;
}
.cons-minus .fa.fa-minus {
  color: #ff0000;
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 1em 0;
  -webkit-overflow-scrolling: touch; /* Для плавного скролла на iOS */
}

/* Необязательные стили для визуального отображения скролла */
.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.table-props table td {
  background: #fff !important;
}
.table-props table span {
  background-color: #f8fbfd;
  border-radius: 5px;
  padding: 5px 15px;
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}
.table-props .column-1 {
  font-weight: bold;
  min-width: 200px;
}
table {
  border: 2px solid #ededed !important;
  border-collapse: collapse !important;
}
table tr:first-child {
  background: #ededed !important;
}
table td {
  border: 2px solid #ededed !important;
  padding: 10px !important;
}
.author {
  padding: 55px 0;
}
.author-block {
  background-color: #f8fbfd;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.author-photo {
  max-width: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-content {
  width: 100%;
  max-width: 900px;
}
.author-name {
  font-size: 28px;
  font-weight: 600;
}
.cookieinfo {
  z-index: 99 !important;
}
.contact-form{
  margin-bottom: 35px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-title {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 600;
}
.contact-form label,
.contact-form .form-group__title {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form .rating {
  font-size: 24px;
  color: #f1c40f;
  margin-bottom: 15px;
}

.contact-form .rating span {
  cursor: pointer;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form .submit-btn {
  background-color: #2c3e50;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .submit-btn:hover {
  background-color: #1a252f;
}

.contact-form hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 30px 0;
}
@media screen and (max-width: 920px) {
  .header-logo img {
    max-width: 130px;
  }
  .menu-toggle {
    width: 35px;
    height: 35px;
    font-size: 35px;
    border: none;
    background: none;
    margin-left: auto;
    color: #fff;
  }
  .menu-toggle,
  .main-navigation.toggled ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-navbar ul {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    background: #1a1a1a;
    padding: 20px;
    gap: 0;
  }
  .header-navbar ul li {
    width: 100%;
  }
  .header-navbar ul li a {
    width: max-content;
    justify-content: flex-start;
    padding: 0;
  }
  .menu-item-has-children:hover .sub-menu {
    display: none !important;
  }
  .header-navbar ul.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-navbar .sub-menu.open {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    background: none;
    display: flex !important;
  }
}
@media screen and (max-width: 620px) {
  .header-banner__content {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    font-size: 34px;
  }
  .header-banner__content .btn {
    width: 100%;
  }
  .game {
    grid-template-columns: auto;
  }
  .game-stock {
    flex-direction: column;
  }
  .bottom-stock {
    bottom: 0;
  }
  .bottom-stock__wrapper {
    flex-wrap: wrap;
  }
  .bottom-stock__rating {
    display: none;
  }
  .bottom-stock__img {
    width: 100px;
  }
  /* .bottom-stock__text{
        display: none;
    } */
  .bottom-stock__action {
    width: 100%;
  }
  .bottom-stock__action .btn {
    width: 100%;
  }
  .bottom-stock__close {
    top: 0;
    transform: none;
  }
  .bonuses {
    padding: 25px 0;
  }
  .bonus-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .bonus-title {
    font-size: 18px;
  }
  .bonus-value {
    font-size: 32px;
  }
  .bonus-term {
    font-size: 18px;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bonus-spec__banner {
    display: none;
  }
  .bonus-spec__content {
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    font-size: 28px;
  }
  .bonus-spec__content .btn {
    width: 100%;
  }
  .feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .content {
    padding: 25px 0;
  }
  .content-wrapper {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .content-nav {
    position: relative;
    top: 0;
  }
  .faq {
    padding: 25px 0;
  }
  .cons-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
