* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h5, .title, .logo {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.f-al-center {
  align-items: center;
}

.f-jc-between {
  justify-content: space-between;
}

.f-jc-center {
  justify-content: center;
}

.f-gap-12 {
  gap: 12px;
}

.f-gap-24 {
  gap: 24px;
}

.f-wrap {
  flex-wrap: wrap;
}

.f-jc-end {
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-weight: bolder;
  transition: 0.3s opacity;
  border: none;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.75;
}

.section {
  padding: 24px;
}

.page__section {
  padding: 64px 24px 0 24px;
}

aside.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  max-width: 220px;
  height: 100vh;
  padding: 100px 0 0 0;
}

.logo, .custom-logo-link {
  height: 100px;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  padding: 19px 0;
  width: 100%;
  max-width: 240px;
  font-size: 18px;
  z-index: 200;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.logo img, .custom-logo-link img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.current__lang {
  cursor: pointer;
}

.langs_dropped {
  position: absolute;
  top: 100%;
  padding: 12px;
  right: -9999px;
  transition: 0.3s right;
}
.langs_dropped a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.langs_dropped_active {
  right: 0;
}

.menu {
  list-style: none;
}
.menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s opacity;
}
.menu a:hover {
  opacity: 0.75;
}
.menu .current-menu-item a {
  opacity: 0.75;
}

.tags-flex {
  position: relative;
}

.tags {
  margin-bottom: 18px;
}

.dropped-providers {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 24px;
  border-radius: 12px;
  z-index: 500;
  display: none;
}

.dropped-providers_active {
  display: flex;
}

.single__provider {
  width: 100%;
  font-size: 12px;
  max-width: 120px;
}

.main {
  width: 100%;
  padding-left: 222px;
}

.header {
  padding: 12px;
  width: 100%;
  padding-left: 240px;
  position: fixed;
  top: 0;
  z-index: 155;
  left: 0;
}

.header__search {
  background: rgba(34, 34, 34, 0.6901960784);
  padding: 12px 24px;
  border-radius: 12px;
}

.swiperTopParalax {
  width: 100%;
  height: 560px;
}

.swiperTopParalax .swiper-slide {
  position: relative;
}
.swiperTopParalax .swiper-slide .caption {
  width: 100%;
  max-width: 450px;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.swiperTopParalax .swiper-slide .title {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
}
.swiperTopParalax .swiper-slide .subtitle {
  font-size: 48px;
  line-height: 1.2;
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
}
.swiperTopParalax .swiper-slide p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.dropdown {
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
}

.section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.section__description {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  font-size: 14px;
}

.big-section__title {
  font-size: 24px;
}

.archive__games {
  margin: 24px 0;
}

.looped__game {
  width: 100%;
  max-width: calc(12.5% - 12px);
  height: 180px;
  border-radius: 12px;
  position: relative;
}
.looped__game:hover .game__overlay {
  opacity: 0.75;
}
.looped__game:hover .game__caption {
  opacity: 1;
}

.label {
  position: absolute;
  top: 3%;
  right: 3%;
  padding: 6px 12px;
  border-radius: 12px 0 12px 0;
  font-size: 12px;
  font-weight: bolder;
}

.game__overlay {
  position: absolute;
  border-radius: 12px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  transition: 0.3s opacity;
}

.game__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: 0.3s opacity;
}
.game__caption .title {
  font-weight: bolder;
  font-size: 12px;
  margin-bottom: 12px;
  color: #fff;
}
.game__caption .demo {
  display: block;
  margin: 12px 0 0 0;
  font-size: 12px;
  color: #bababa;
}

.bonus__grid {
  width: 100%;
  max-width: calc(50% - 12px);
  padding: 42px 24px;
  border-radius: 12px;
  background-position: center;
  color: #fff;
}
.bonus__grid p {
  margin: 0 0 12px 0;
}

.bonus__grid.full {
  width: 100%;
  max-width: 100%;
}

.cs__like {
  max-width: calc(33.3333333333% - 12px);
  background: #665e5e !important;
}
.cs__like img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 240px;
}
.cs__like p {
  line-height: 1.5;
  font-size: 14px;
}

.see__all {
  font-size: 12px;
  padding: 6px 12px;
  max-width: 100px;
}

.big-section {
  padding: 48px 24px;
}

.mystery img {
  width: 100%;
  max-width: 50%;
  border-radius: 12px;
  object-fit: cover;
  height: 500px;
}

.mystery__caption {
  width: 100%;
  padding: 0 48px;
  max-width: 550px;
}

.entry-content {
  text-align: justify;
}
.entry-content .faq-items {
  display: block;
}
.entry-content .faq-items .drop-top {
  padding: 0.5rem;
  cursor: pointer;
  border: 1px solid #efefef;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry-content .faq-items .drop-top:after {
  content: "";
  background: url(images/down.svg) no-repeat;
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
}
.entry-content .faq-items .drop-top p {
  margin-bottom: 0;
}
.entry-content .faq-items .drop-content {
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  display: none;
}
.entry-content .faq-items .drop-content__active {
  display: block;
}
.entry-content .faq-items .drop-top__active {
  background: #fff;
  color: #222;
}
.entry-content .faq-items .drop-top__active a {
  color: #222;
}
.entry-content a {
  color: #fff;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5 {
  margin-bottom: 18px;
}
.entry-content p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 18px;
}
.entry-content ul, .entry-content ol {
  padding: 0 0 0 1rem;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  opacity: 0.85;
}
.entry-content li {
  font-size: 16px;
  line-height: 2;
}
.entry-content img {
  border-radius: 12px;
}
.entry-content .alignleft {
  float: left;
  margin: 1rem 1rem 1rem 0;
}
.entry-content .alignright {
  float: right;
  margin: 1rem 0 1rem 1rem;
}

.slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  opacity: 0.55;
  width: 100%;
  height: 100%;
}

.bonusSwiper .swiper-slide {
  position: relative;
  height: 450px;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bonusSwiper .swiper-slide p {
  font-size: 14px;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.slider__bonus_pic {
  width: 100%;
  max-width: 227px;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
}

.upper {
  font-size: 14px;
}

.bonus-title {
  font-weight: bolder;
  font-size: 32px;
  margin: 24px 0;
  text-transform: uppercase;
  width: 100%;
  max-width: 320px;
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
}

.support-form {
  display: flex;
  flex-direction: column;
}

.form__input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  margin: 12px 0;
}

.form__checker {
  display: none;
}

.section-subtitle {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.provs .swiper-slide, .payments .swiper-slide {
  padding: 20px;
  width: auto !important;
  max-width: 200px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 15px;
  flex-shrink: 0;
  background: rgba(179, 141, 47, 0.9) !important;
  border: 1px solid rgba(179, 141, 47, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.provs .swiper-slide:hover, .payments .swiper-slide:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.provs .swiper-slide img, .payments .swiper-slide img {
  object-fit: contain;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: filter 0.3s ease;
}
.provs .swiper-slide img:hover, .payments .swiper-slide img:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.provs .swiper-slide img {
  width: 120px;
  height: 60px;
}

.payments .swiper-slide img {
  width: 100px;
  height: 50px;
}

.preloader {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.frame__heading {
  font-size: 16px;
  padding: 12px;
}

.game-h1 {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.single__frame {
  width: 100%;
  height: 460px;
  position: relative;
  background: #000000;
  border-radius: 12px;
}
.single__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
}

.copyright {
  width: 100%;
  max-width: 320px;
}

.text p {
  font-size: 10px;
  line-height: 1.5;
  margin: 0 0 6px 0;
}

.menu-title {
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-bottom: 12px;
}

.menu-row {
  width: 100%;
  max-width: 600px;
}

.footer__menu-item {
  width: 100%;
  max-width: 360px;
}
.footer__menu-item ul {
  list-style: none;
}
.footer__menu-item a {
  font-size: 14px;
  line-height: 1.5;
  display: block;
}

.lang img {
  border-radius: 12px;
  display: block;
}

/* CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 12px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 12px;
}

.all_com_pr span:before {
  color: #FB9C30;
}

.com_block_star {
  margin: 10px 0;
}

.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}

.comments-rating label {
  display: inline-block;
  font-size: 14px;
}

.com_block_star label {
  font-size: 14px;
}

.rating-container {
  font-size: 0;
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating-container * {
  font-size: 1.4rem;
}

.rating-container > input {
  display: none;
}

.rating-container > input + label {
  font-family: "dashicons";
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}

.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: #FB9C30;
  text-shadow: 0 0 1px #888;
}

.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}

.rating-container > .star-cb-clear + label:before {
  width: 0.5em;
}

.rating-container:hover > input + label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}

.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: #FB9C30;
  text-shadow: 0 0 1px #888;
}

.comment-respond {
  margin: 1.5rem 0 0 0;
}

.comment-respond h3 {
  margin-bottom: 0.75rem;
}

.comments-area .comment-form .comment-form-author label,
.comments-area .comment-form .comment-form-email label,
.comments-area .comment-form .comment-form-comment label {
  display: block;
  margin-bottom: 0.5rem;
}

.comments-area .comment-form input,
.comments-area .comment-form textarea {
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #efefef;
}

.comments-area .comment-form input::placeholder,
.comments-area .comment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.comments-area .comment-form textarea {
  width: 50%;
  height: 100px;
}

.comments-area .comment-form input {
  width: 50%;
}

.comments-area .comment-form .submit {
  background: #ff8159;
  background-color: #fff;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem;
  cursor: pointer;
}

.comments-area .comment-notes {
  display: none;
}

.comments-area .comment-list {
  list-style: none;
  padding: 0;
}

.comments-area .comment-list li {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.comments-area .comment-list li time {
  display: none;
}

.comments-area .comment-list li p {
  margin: 1rem 0;
  font-size: 14px;
  line-height: 22px;
}

.commentmetadata {
  display: none;
}

.reply {
  display: none;
}

.comment-form-email {
  display: none;
}

#reply-title {
  color: #fff;
  font-weight: bolder;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}

.required-field-message {
  color: #efefef;
}

.button-85 {
  color: #fff !important;
}

.logo, .custom-logo-link {
  display: block;
}

.logo, .custom-logo-link img {
  object-fit: contain;
  object-fit-width: 100%;
  object-fit-height: 100px;
}

.bonuses-flex {
  margin-right: -10px;
  gap: 10px;
}

.bonuses-flex .swiper-slide {
  max-width: calc(25% - 10px);
  padding: 1rem;
  border-radius: 0.5rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.bonuses-flex .swiper-slide::after {
  content: "";
  background: #222;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.bonuses-flex .swiper-slide a {
  margin: 0 auto;
}

.bonuses-flex .bonus-title {
  height: 100px;
  font-size: 1.5rem;
}

.bonuses-flex .swiper-slide div, .bonuses-flex .swiper-slide a, .bonuses-flex .swiper-slide p {
  position: relative;
  z-index: 5;
  margin: 0 auto;
}

.bonuses-flex .swiper-slide p {
  height: 30px;
}

.bonuses-flex .btn {
  background: #fff !important;
}

.slider__bonus_pic {
  z-index: 1;
  max-width: 400px;
  object-fit: cover;
  opacity: 0.85;
  height: 400px;
  top: 0;
  left: 0;
  transform: translate(0);
}

.error-404 {
  position: relative;
  height: 80vh;
}

.error-404__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.error-404__code {
  font-size: 6rem;
  font-weight: bolder;
}

.error-404__description {
  font-size: 2rem;
  font-weight: normal;
  margin: 1.5rem 0;
}

@media (max-width: 1280px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(33.3333333333% - 10px);
  }
}
@media (max-width: 1024px) {
  .bonuses-flex .swiper-slide {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .bonuses-flex .swiper-slide {
    max-width: 100%;
  }
}
@media (max-width: 1610px) {
  .looped__game {
    max-width: calc(14.2857142857% - 12px);
  }
}
@media (max-width: 1440px) {
  .cs__like {
    max-width: calc(50% - 12px);
  }
  .looped__game {
    max-width: calc(16.6666666667% - 12px);
  }
}
@media (max-width: 1240px) {
  .looped__game {
    max-width: calc(25% - 12px);
  }
}
@media (max-width: 1100px) {
  .entry-content .alignleft, .entry-content .alignright {
    width: 100%;
    margin: 1rem auto;
    float: none;
    text-align: center;
  }
  .tags-container {
    flex-wrap: wrap;
  }
  .tag {
    font-size: 12px;
    white-space: nowrap;
  }
  .mySwiper {
    height: 420px;
  }
  .swiperTopParalax .swiper-slide .subtitle {
    font-size: 36px;
    line-height: 1.3;
  }
  .bonus__grid {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .looped__game {
    max-width: 47%;
    height: 150px;
  }
}
/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

thead {
  background: rgba(179, 141, 47, 0.9);
}
thead th {
  padding: 16px 12px;
  text-align: left;
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid rgba(179, 141, 47, 0.3);
  letter-spacing: 0.5px;
}

tbody tr {
  transition: background-color 0.3s ease;
}
tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
tbody tr:hover {
  background: rgba(179, 141, 47, 0.1);
}
tbody tr td {
  padding: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
tbody tr td:first-child {
  font-weight: bolder;
  color: #FB9C30;
}
tbody tr td:last-child {
  font-weight: bolder;
  color: #4CAF50;
}

/* Responsive Table */
.table-responsive {
  overflow-x: auto;
  margin: 24px 0;
}
.table-responsive table {
  min-width: 600px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 301;
  position: relative;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

@media (max-width: 760px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #FF8C00;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .burger-line {
  background-color: #FFA500;
}

.mobile-menu-toggle:active .burger-line {
  background-color: #FF7F00;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background-color: #FF8C00;
}

.mobile-menu-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: #FF8C00;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 250;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  z-index: 300;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__header .custom-logo-link {
  position: static;
  transform: none;
  height: 60px;
  max-width: 150px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-menu__content {
  padding: 20px 0;
}

.mobile-menu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu__nav a {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.mobile-menu__nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu__nav--lower {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 760px) {
  aside.sidebar {
    left: -9999px !important;
    transition: left 0.3s ease;
    width: 80% !important;
    max-width: 300px !important;
  }
  aside.sidebar.mobile-sidebar-open {
    left: 0 !important;
    z-index: 300 !important;
  }
  body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  body.menu-open {
    overflow: hidden;
  }
  .main {
    padding-left: 0;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100vw;
  }
  .header {
    padding-left: 0;
    padding-right: 0;
    position: fixed !important;
    top: 0;
    z-index: 155;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .header > .flex {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    gap: 12px;
  }
  
  @media (max-width: 425px) {
    .header > .flex.f-jc-between {
      justify-content: flex-end !important;
    }
  }
  .main {
    padding-top: 70px;
  }
  .mobile-menu-toggle {
    order: -1;
    margin-right: auto;
  }
  .header .buttons {
    gap: 8px;
  }
  .header .btn {
    max-width: 120px;
    font-size: 12px;
    padding: 8px 12px;
  }
  .header__search {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    z-index: 999999 !important;
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    pointer-events: auto !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 7px !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(255, 140, 0, 0.3) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
  }
  
  .mobile-menu-toggle * {
    pointer-events: none !important;
  }
  
  .header {
    z-index: 200;
  }
  
  .header > .flex {
    position: relative;
    z-index: 1;
  }
  .mobile-menu-overlay {
    display: block;
  }
  .swiperTopParalax .swiper-slide p {
    font-size: 12px;
    margin: 12px 0;
  }
  .swiperTopParalax .swiper-slide .caption {
    max-width: 280px;
  }
  .swiperTopParalax .swiper-slide .subtitle {
    font-size: 22px;
    line-height: 1.3;
  }
  .tags-flex {
    flex-wrap: wrap;
  }
  .tags-container {
    width: 100%;
    max-width: 100%;
  }
  .providers {
    margin: 24px 0 0 0;
    width: 100%;
  }
  .dropdown {
    justify-content: center;
  }
  .mystery-flex {
    flex-wrap: wrap;
  }
  .mystery img {
    width: 100%;
    max-width: 100%;
  }
  .mystery .caption {
    max-width: 100%;
  }
  .container {
    max-width: 100%;
  }
  .footer-flex {
    flex-direction: column-reverse;
  }
  .menu-item {
    width: 100%;
    max-width: 100%;
  }
  .menu-title {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding: 6px;
  }
  .menu-row {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  /* Mobile Table Styles */
  table {
    font-size: 12px;
  }
  table thead th {
    padding: 12px 8px;
    font-size: 12px;
  }
  table tbody td {
    padding: 8px;
    font-size: 12px;
  }
}
/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  background: #ffde3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid #ffde3a;
}
.scroll-to-top:hover {
  background: #ffd000;
  border-color: #ffd000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: #2d2d2d;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=style.css.map */
