/* Base */
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0a1a1a; /* темно-бирюзовый фон */
  color: #d4e6e6; /* светлый текст с бирюзовым отливом */
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

:root {
  --bg: #0a1a1a;
  --bg2: #0e2424;
  --muted: #2a8c8c; /* приглушенный бирюзовый */
  --card: #143030;
  --stroke: #00bcd4; /* яркий бирюзовый */
  --accent1: #00e5ff;
  --accent2: #00bcd4;
  --vc-btn-start: #00bcd4;
  --vc-btn-end: #008b8b;
  --vc-btn-border: #00e5ff;
  --mirror-bg: #143030;
  --mirror-border: #00bcd4;
  --card-bg: #143030;
  --card-border: #00bcd4;
  --glow-teal: 0 0 8px #00bcd4, 0 0 12px #008b8b;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

.container {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
}

/* Sticky header offset */
[id] {
  scroll-margin-top: 76px;
}

.slot-single a,
.article-single__content a {
  color: #00e5ff;
  text-decoration: underline;
  transition: 0.3s;
}
.slot-single a:hover,
.article-single__content a:hover {
  color: #80deea;
  text-shadow: 0 0 4px #00bcd4;
}
.slot-single a.slot-single__btn {
  color: #0a1a1a;
}
.slot-single__iframe-wrap iframe {
  margin: 0 0 30px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg2);
  border-bottom: 1px solid var(--stroke);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 10px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo {
  height: 26px;
  filter: drop-shadow(0 0 4px #00bcd4);
}
.header__name {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #00e5ff;
  text-shadow: 0 0 4px #00bcd4;
}
.header__nav {
  display: none;
  gap: 20px;
  align-items: center;
}
.header__nav .nav__link[aria-current="true"] {
  text-decoration: underline;
  text-shadow: 0 0 3px #00e5ff;
}
.burger {
  display: grid;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--stroke);
  padding: 8px;
  color: #fff;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s;
}
.burger:hover {
  box-shadow: var(--glow-teal);
  border-color: #00e5ff;
}
.burger span {
  width: 18px;
  height: 2px;
  background: #00e5ff;
  display: block;
}

/* Mobile menu */
.header__menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 26, 0.95);
  backdrop-filter: blur(4px);
  display: none;
}
.header__menu.active {
  display: block;
}
.header__menu-nav {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 78%;
  max-width: 360px;
  background: var(--bg2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--stroke);
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}
.header__exit-menu {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--stroke);
  background: #000000cc;
  color: #fff;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
}
img.custom-logo {
  width: 140px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  background: #00bcd4;
  color: #0a1a1a;
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 6px #00bcd4;
}
.btn:active {
  transform: scale(0.98);
}
.btn--solid {
  background: #00e5ff;
  color: #0a1a1a;
  box-shadow: 0 0 10px #00e5ff;
}
.btn--solid:hover {
  box-shadow: 0 0 20px #00e5ff, 0 0 8px #00e5ff;
  filter: brightness(1.05);
}
.btn--lg {
  padding: 14px 22px;
  font-size: 1.05rem;
}

/* Hero slider */
.hero {
  padding: 18px 1px;
}
.slider {
  position: relative;
  border: 1px solid var(--stroke);
  background: url(/wp-content/uploads/2026/05/bonus.jpg) no-repeat left top;
  background-size: cover;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}
.slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 16px;
  padding-left: 10%;
  padding-right: 10%;
}
.slide__media {
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #2e2e2e;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-md);
}
.lead {
  color: var(--muted);
  margin: 0 0 10px;
  text-shadow: 0 0 3px #00bcd4;
}
.badge {
  display: inline-block;
  background: #00bcd4;
  padding: 6px 10px;
  margin-bottom: 8px;
  box-shadow: none;
  border-radius: var(--border-radius-sm);
}
.badge--alt {
  background: #008b8b;
}
.promo {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 8px 0 14px;
}
.promo__code {
  padding: 8px 12px;
  background: #1e3a3a;
  border: 1px dashed var(--stroke);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #00e5ff;
  border-radius: var(--border-radius-sm);
}
.promo__copy {
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  background: #00bcd4;
  color: #0a1a1a;
  cursor: pointer;
  border-radius: var(--border-radius-md);
  transition: all 0.2s;
}
.promo__copy:hover {
  box-shadow: var(--glow-teal);
  background: #00e5ff;
}

/* Slider controls */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--stroke);
  background: #0e2424;
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}
.nav--prev {
  left: 8px;
}
.nav--next {
  right: 8px;
}
.nav:hover {
  box-shadow: var(--glow-teal);
  background: #00bcd4;
}
.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  gap: 6px;
  justify-content: center;
}
.dot {
  width: 8px;
  height: 8px;
  background: #5e5e5e;
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  border-radius: 50%;
}
.dot[aria-selected="true"] {
  background: #00e5ff;
  transform: scale(1.25);
  box-shadow: 0 0 10px #00bcd4;
}

/* Content */
.content {
  padding: 24px 1px;
}
.typography h2 {
  margin: 0 0 8px;
  color: #00e5ff;
  text-shadow: 0 0 4px #00e5ff;
}
.typography h3 {
  margin: 16px 0 8px;
  color: #00e5ff;
}
.typography p,
.typography li {
  color: #d4e6e6;
}
.table {
  margin: 16px 0;
  border: 1px solid var(--stroke);
  overflow: hidden;
  max-width: 100%;
  border-radius: var(--border-radius-md);
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cell {
  padding: 10px 12px;
  border-bottom: 1px solid var(--stroke);
}
.row:last-child .cell {
  border-bottom: none;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.card {
  border: 1px solid var(--stroke);
  background: #1e3a3a;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

/* SEO Text Block */
.seo-text {
  padding: 32px 16px 48px;
  background: var(--card);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.seo-text__inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-text__title {
  font-size: 1.5rem;
  margin: 0 0 16px;
  font-weight: 700;
  color: #00e5ff;
}
.seo-text__content p {
  color: #d4e6e6;
  line-height: 1.65;
  margin: 0 0 14px;
}
.seo-text__content a {
  color: #00e5ff;
  text-decoration: underline;
}
.seo-text__content a:hover {
  color: #ffffff;
}

.footer__cols nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.content h1,
article h1 {
  visibility: visible;
}

/* Games */
.games,
.articles-archive,
.article-single,
.slot-single {
  padding: 24px 1px;
}
.games__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.games__more {
  white-space: nowrap;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.game {
  border: 1px solid var(--stroke);
  background: #1e3a3a;
  overflow: hidden;
  transition: transform 0.15s;
  border-radius: var(--border-radius-md);
}
.game:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}
.game__link {
  display: block;
  height: 100%;
}
.game__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}
.game__media img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
  transition: transform 0.35s;
}
.game:hover .game__media img {
  transform: scale(1.04);
}
.game__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
}
.game__title {
  font-size: 1rem;
  margin: 0;
  color: #00e5ff;
}
.game__tag {
  font-size: 0.75rem;
  opacity: 0.9;
  background: #00bcd4;
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

/* CTA center */
.cta-center {
  display: flex;
  justify-content: center;
  margin: 22px 0;
}

/* FAQ */
.faq {
  padding: 8px 16px 28px;
}
.section-title {
  margin: 0 0 10px;
  color: #00e5ff;
}
.faq__details {
  border: 1px solid var(--stroke);
  background: #1e3a3a;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}
.faq__details summary {
  cursor: pointer;
  padding: 12px 14px;
  list-style: none;
  color: #00e5ff;
  font-weight: bold;
}
.faq__details[open] summary {
  background: #2a4a4a;
}
.faq__content {
  padding: 14px 14px 14px;
  color: #d4e6e6;
}

/* Footer */
.footer {
  margin-top: 24px;
  padding: 20px 16px;
  background: var(--bg2);
  color: #00e5ff;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  border-top: 1px solid var(--stroke);
}
.footer__cols {
  display: grid;
  gap: 16px;
}
.footer__link {
  display: block;
  padding: 6px 0;
  color: #00e5ff;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
}
/* Desktop */
@media (min-width: 768px) {
  .container {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
  }
  .header__nav {
    display: flex;
  }
  .burger {
    display: none;
  }
  .slide {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 28px;
    padding-left: 10%;
    padding-right: 10%;
  }
  .hero {
    padding: 28px 1px 1px;
  }
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .games__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    margin: 0 auto;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}
.nav__link {
  font-size: 20px;
  transition: text-shadow 0.2s;
}
.nav__link:hover {
  text-shadow: 0 0 6px #00e5ff;
}

/* ========== Animations & Interactions ========== */
:root {
  --ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-soft: cubic-bezier(0.2, 0.7, 0.2, 1);
}
.enhanced .btn {
  will-change: transform, filter;
  position: relative;
  overflow: hidden;
}
.enhanced .btn--solid {
  transition: transform 0.18s var(--ease-out), filter 0.18s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.enhanced .btn--solid:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 20px #00e5ff, 0 0 10px #00e5ff;
  transform: translateY(-1px);
}
.enhanced .btn--solid:active {
  transform: translateY(0);
  box-shadow: 0 0 12px #00e5ff;
}
.enhanced .btn .ripple {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  width: 12px;
  height: 12px;
  animation: ripple 0.6s var(--ease-soft);
}
@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(22);
    opacity: 0;
  }
}
.enhanced .promo__copy.is-copied {
  animation: btnPulse 0.6s var(--ease-out);
  border-color: #00e5ff;
}
@keyframes btnPulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
    box-shadow: 0 0 20px #00bcd4;
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}
.enhanced .card,
.enhanced .game {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  will-change: transform;
}
.enhanced .card:hover,
.enhanced .game:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(0, 188, 212, 0.5);
}
.enhanced .game__media img {
  transition: transform 0.35s var(--ease-soft);
  will-change: transform;
}
.enhanced .game:hover .game__media img {
  transform: scale(1.04);
}
.enhanced .reveal {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  filter: saturate(0.9);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.enhanced .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.enhanced .reveal[data-delay="1"] {
  transition-delay: 0.06s;
}
.enhanced .reveal[data-delay="2"] {
  transition-delay: 0.12s;
}
.enhanced .reveal[data-delay="3"] {
  transition-delay: 0.18s;
}
.enhanced .reveal[data-delay="4"] {
  transition-delay: 0.24s;
}
.enhanced .reveal[data-delay="5"] {
  transition-delay: 0.3s;
}
.enhanced .slide .slide__content {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.enhanced .slide.is-active .slide__content {
  opacity: 1;
  transform: none;
}
.enhanced .slide .slide__media {
  transition: transform 0.6s var(--ease-soft), filter 0.6s var(--ease-soft);
}
.enhanced .slide.is-active .slide__media {
  transform: none;
  filter: none;
}
.enhanced .dot {
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.enhanced .dot:hover {
  transform: scale(1.2);
}
.enhanced .dot[aria-selected="true"] {
  box-shadow: 0 0 0 6px rgba(0, 188, 212, 0.3);
}
.enhanced .badge {
  animation: breathe 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 12px #00bcd4;
  }
}

/* адаптив */
@media (max-width: 768px) {
  .games__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .game__info {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 12px;
    gap: 10px;
  }
  .footer__cols nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .games__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
#content .size-full {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 16px;
}
#content .capion {
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

/* Таблица */
.casino-table {
  max-width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  overflow: hidden;
  background: rgba(20, 48, 48, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--stroke);
  border-radius: var(--border-radius-md);
}
.casino-table td {
  padding: 16px 20px;
  color: #d4e6e6;
  font-size: 15px;
  line-height: 1.6;
  vertical-align: top;
  border-right: 1px solid var(--stroke);
  border-bottom: 1px solid rgba(0, 188, 212, 0.2);
}
.casino-table tr > td:last-child {
  border-right: none;
}
.casino-table tr:first-child td {
  background: #2a4a4a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--stroke);
}
.casino-table tr:last-child td {
  border-bottom: none;
}
.casino-table tr:hover td {
  background: rgba(0, 188, 212, 0.15);
  transition: background 0.25s ease;
}
#content h1,
#content h2,
#content h3 {
  font-size: 25px;
  margin: 16px 0 16px;
  font-weight: 700;
  color: #00e5ff;
  
}
h1 {
  font-size: 25px;
}
.slot-related__grid h3 {
  font-size: 1rem;
  margin: 16px 0 16px;
  padding: 5%;
  color: #00e5ff;
}

/* Comments */
.vc-comments {
  margin-top: 48px;
  color: #d4e6e6;
  margin-bottom: 50px;
}
.vc-comments__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}
.vc-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vc-comment-list .comment,
.vc-comment-list .pingback {
  position: relative;
  margin: 0 0 14px;
  padding: 16px 16px 16px 72px;
  background: rgba(20, 48, 48, 0.7);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
  border-radius: var(--border-radius-md);
}
.vc-comment-list .avatar {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid #00e5ff;
  border-radius: 50%;
}
.vc-comment-list .comment-author {
  font-weight: 700;
  color: #00e5ff;
}
.vc-comment-list .comment-metadata {
  font-size: 12px;
  opacity: 0.75;
  margin-left: 8px;
}
.vc-comment-list .comment-metadata a {
  color: #00e5ff;
}
.vc-comment-list .comment-content {
  margin-top: 8px;
  line-height: 1.7;
}
.vc-comment-list .comment-content p {
  margin: 0 0 10px;
}
.vc-comment-list .reply {
  margin-top: 10px;
}
.vc-comment-list .reply a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  background: #2a4a4a;
  text-decoration: none;
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border-radius: var(--border-radius-sm);
}
.vc-comment-list .reply a:hover {
  transform: translateY(-1px);
  background: #00bcd4;
  border-color: #00e5ff;
}
.vc-comment-list .children {
  list-style: none;
  margin: 10px 0 0 22px;
  padding: 0;
  border-left: 1px dashed var(--stroke);
}
.vc-comment-list .children > .comment {
  margin-top: 12px;
}
.comments-pagination,
.navigation.comment-navigation {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}
.page-numbers {
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  background: #2a4a4a;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  border-radius: var(--border-radius-sm);
}
.page-numbers.current,
.page-numbers:hover {
  background: #00bcd4;
  border-color: #00e5ff;
  transform: translateY(-1px);
}
.vc-comment-respond {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--stroke);
  background: rgba(20, 48, 48, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--border-radius-md);
}
.vc-comment-form p {
  margin-bottom: 12px;
}
.vc-comment-form input[type="text"],
.vc-comment-form input[type="email"],
.vc-comment-form input[type="url"],
.vc-comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  background: #2a4a4a;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border-radius: var(--border-radius-sm);
}
.vc-comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.vc-comment-form input:focus,
.vc-comment-form textarea:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 12px #00e5ff;
  background: #3a5a5a;
}
.vc-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--stroke);
  background: #00bcd4;
  color: #0a1a1a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border-radius: var(--border-radius-md);
}

/* Bonus content */
.bonuscontent {
  margin: 40px 0;
  color: #ffffff;
}
.bonuscontent .h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: #00e5ff;
}
.bonuscontent > p {
  opacity: 0.85;
  margin-bottom: 16px;
}
.bonusbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background: #1e3a3a;
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border-radius: var(--border-radius-md);
}
.bonusbox + .bonusbox {
  margin-top: 12px;
}
.bonusbox::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: none;
  opacity: 0;
}
.bonusbox:hover {
  background: #2a4a4a;
  border-color: #00e5ff;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.3);
}
.box2 {
  flex: 1 1 auto;
  min-width: 0;
}
.box2 b {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
  margin-bottom: 6px;
  color: #00e5ff;
  word-break: break-word;
}
.badge {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--stroke);
  background: #00bcd4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
}
.box3 {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.bonuslink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  white-space: nowrap;
  border: 1px solid var(--vc-btn-border);
  background: #00bcd4;
  color: #0a1a1a;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: filter 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-radius: var(--border-radius-md);
}
.bonuslink:hover,
.bonuslink:focus-visible {
  filter: brightness(1.1);
  box-shadow: 0 0 20px #00bcd4;
  border-color: #00e5ff;
  outline: none;
}
@media (max-width: 900px) {
  .box2 b {
    font-size: 15px;
  }
}
@media (max-width: 720px) {
  .bonusbox {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }
  .box2 span.badge {
    font-size: 11px;
    padding: 5px 9px;
  }
  .box3 {
    width: 100%;
  }
  .bonuslink {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
  .casino-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .bonuscontent .h2 {
    font-size: 20px;
  }
  .box2 b {
    font-size: 14px;
  }
  .bonuslink {
    padding: 11px 14px;
    font-size: 14px;
  }
}

/* Mirror content */
.mirrorcontent {
  margin: 40px 0;
  color: #d4e6e6;
}
.mirrorcontent .h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: #00e5ff;
}
.mirrorcontent > p {
  opacity: 0.85;
  margin-bottom: 16px;
}
.mirror-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #1e3a3a;
  border: 1px solid var(--mirror-border);
  backdrop-filter: blur(6px);
  border-radius: var(--border-radius-md);
}
.mirror-table th,
.mirror-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
  border-right: 1px solid var(--stroke);
  color: #d4e6e6;
  font-size: 15px;
  line-height: 1.6;
}
.mirror-table th:last-child,
.mirror-table td:last-child {
  border-right: none;
}
.mirror-table thead th {
  background: #2a4a4a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--stroke);
}
.mirror-table tr:last-child td {
  border-bottom: none;
}
.mirror-table tbody tr:hover td {
  background: rgba(0, 188, 212, 0.15);
  transition: background 0.25s ease;
}
.status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--border-radius-sm);
}
.status.online {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.2);
  border: 1px solid #00e5ff;
}
.status.offline {
  color: #a9a9a9;
  background: rgba(169, 169, 169, 0.2);
  border: 1px solid #a9a9a9;
}
.mr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--vc-btn-border);
  background: #00bcd4;
  color: #0a1a1a;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: filter 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  border-radius: var(--border-radius-md);
}
.mr:hover,
.mr:focus-visible {
  filter: brightness(1.1);
  box-shadow: 0 0 20px #00bcd4;
  border-color: #00e5ff;
  outline: none;
}
@media (max-width: 720px) {
  .mirror-table,
  .mirror-table thead,
  .mirror-table tbody,
  .mirror-table th,
  .mirror-table td,
  .mirror-table tr {
    display: block;
    width: 100%;
  }
  .mirror-table thead {
    display: none;
  }
  .mirror-table tr {
    margin-bottom: 14px;
    border: 1px solid var(--mirror-border);
    background: rgba(20, 48, 48, 0.7);
    padding: 10px 12px;
    border-radius: var(--border-radius-md);
  }
  .mirror-table td {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
  }
  .mirror-table td::before {
    content: attr(data-label);
    font-weight: 700;
    opacity: 0.8;
  }
  .mirror-table tbody tr td:nth-child(1)::before {
    content: "Зеркало";
  }
  .mirror-table tbody tr td:nth-child(2)::before {
    content: "Статус";
  }
  .mirror-table tbody tr td:nth-child(3)::before {
    content: "";
  }
  .mr {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 16px;
  }
}

/* Support content */
.supportcontent {
  margin: 40px 0;
  color: #ffffff;
}
.supportcontent .h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #00e5ff;
}
.support-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 900px) {
  .support-list {
    grid-template-columns: 1fr 1fr;
  }
}
.support-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background: #1e3a3a;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border-radius: var(--border-radius-md);
}
.support-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: none;
  opacity: 0;
}
.support-item:hover {
  background: #2a4a4a;
  border-color: #00e5ff;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.3);
}
.support-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.support-body {
  min-width: 0;
}
.support-body .mct {
  font-size: 16px;
  font-weight: 800;
  color: #00e5ff;
  margin: -2px 0 6px 0;
}
.support-body p {
  margin: 0 0 8px;
  line-height: 1.65;
}
.support-email a {
  color: #00e5ff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 229, 255, 0.5);
}
.support-email a:hover {
  border-bottom-color: transparent;
}
.support-cta {
  display: flex;
  align-items: center;
}
.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  white-space: nowrap;
  border: 1px solid var(--vc-btn-border);
  background: #00bcd4;
  color: #0a1a1a;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: filter 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-radius: var(--border-radius-md);
}
.support-link:hover,
.support-link:focus-visible {
  filter: brightness(1.1);
  box-shadow: 0 0 20px #00bcd4;
  border-color: #00e5ff;
  outline: none;
}
@media (max-width: 720px) {
  .support-item {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "icon title"
      "icon text"
      "cta  cta";
    gap: 12px;
    padding: 14px;
  }
  .support-icon {
    grid-area: icon;
  }
  .support-body {
    grid-area: text;
  }
  .support-body .mct {
    grid-area: title;
    font-size: 15px;
  }
  .support-cta {
    grid-area: cta;
  }
  .support-link {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  figure {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
@media (max-width: 420px) {
  .supportcontent .h2 {
    font-size: 20px;
  }
  .support-body .mct {
    font-size: 14px;
  }
}
figure {
  margin: 0 auto;
}
.subscribecontent {
  border: 1px solid var(--stroke);
  background: rgba(20, 48, 48, 0.5);
  padding-right: 20px;
  padding-left: 20px;
  border-radius: var(--border-radius-md);
}
.bonuscontent p a {
  display: flex;
  width: 230px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}
.slot-single iframe {
  width: 700px;
  height: 500px;
  border-radius: var(--border-radius-md);
}
.slot-single__breadcrumbs {
  margin-bottom: 10px;
  font-size: 14px;
}
.slot-single__title {
  margin-bottom: 20px;
  font-weight: 700;
  visibility: visible;
  text-align: center;
  color: #00e5ff;
}
.slot-single__iframe-wrap {
  margin-bottom: 20px;
  text-align: center;
}
.slot-single__iframe-wrap iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: var(--border-radius-md);
}
.slot-single__btn-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.slot-related {
  padding: 40px 0 0;
}
.slot-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .slot-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .slot-related__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #content .games__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    margin: 0 auto;
  }
}
.articles-preview {
  padding: 0px 0;
}
.articles-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
}
.articles-preview__head h2 {
  font-size: 24px;
}
.articles-preview__more {
  font-size: 14px;
}
.articles-preview__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.article-card__inner {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  background: #1e3a3a;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-bottom: 12px;
  border-radius: var(--border-radius-md);
}
.article-card__inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}
.article-card__media {
  flex: 0 0 140px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}
.article-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__content {
  flex: 1;
  min-width: 0;
}
.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 6px;
}
.article-card__cat {
  padding: 2px 8px;
  background: #00bcd4;
  border-radius: var(--border-radius-sm);
}
.article-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #00e5ff;
}
.article-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 8px;
}
.article-card__read {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  opacity: 0.8;
}
@media (max-width: 700px) {
  .article-card__inner {
    flex-direction: column;
  }
  .article-card__media {
    flex: 0 0 auto;
    width: 100%;
  }
}
.article-single__header {
  margin-bottom: 30px;
}
article img,
article figure {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
}
.wp-caption-text {
  text-align: center;
  font-style: italic;
}
#menu-osnovnoe-menyu-header {
  display: flex;
  gap: 25px;
  list-style-type: none;
}
.pagination {
  margin-top: 50px;
}
.pagination h2 {
  display: none;
}
@media (max-width: 768px) {
  .article-single__content {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  .slot-single__iframe-wrap iframe {
    width: 100%;
    min-height: 400px;
    border: none;
  }
  #menu-osnovnoe-menyu-header {
    list-style-type: none;
  }
}
.footer {
  background: #0e2424;
  padding: 40px 0 30px;
  color: #00e5ff;
  border-top: 1px solid var(--stroke);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
.footer__brand img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 4px #00bcd4);
}
.footer__nav-list {
  display: flex;
  gap: 25px;
  list-style-type: none;
}
.footer__link {
  font-size: 16px;
  opacity: 0.85;
  text-decoration: none;
  transition: text-shadow 0.2s;
}
.footer__link:hover {
  opacity: 1;
  text-shadow: 0 0 6px #00e5ff;
}
.footer__btn {
  white-space: nowrap;
}
.footer__bottom {
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
}
@media (max-width: 700px) {
  .footer__top {
    flex-direction: column;
    gap: 20px;
  }
  .footer__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
.container-content {
  display: flex;
  gap: 50px;
}
.container-content-item-content {
  max-width: 70%;
  width: 100%;
}
.content-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.content-main {
  flex: 1 1 auto;
  min-width: 0;
}
.sidebar {
  flex: 0 0 320px;
  max-width: 360px;
  color: #d4e6e6;
  background: #143030;
  padding: 18px 18px 20px;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
  position: sticky;
  top: 110px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--stroke);
}
.sidebar .widget {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}
.sidebar .widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar .widget-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00e5ff;
}
.sidebar .ls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 20px;
}
.sidebar .main-button,
.sidebar .secondary-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border-radius: var(--border-radius-md);
}
.sidebar .main-button {
  background: #00e5ff;
  color: #0a1a1a;
  box-shadow: 0 0 12px #00e5ff;
}
.sidebar .main-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px #00e5ff;
}
.sidebar .secondary-button {
  background: #2a4a4a;
  border: 1px solid #00bcd4;
  color: #ffffff;
}
.panel-info {
  margin-bottom: 20px;
  padding: 12px 14px;
  background: #0e2424;
  border-radius: var(--border-radius-md);
}
.panel-info-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  padding: 4px 0;
}
.panel-info-item + .panel-info-item {
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  padding-top: 6px;
  margin-top: 4px;
}
.panel-info-item-label {
  opacity: 0.8;
}
.panel-info-item-data {
  font-weight: 600;
  white-space: nowrap;
}
.last-reviews {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
}
.last-reviews-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.last-reviews ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.last-reviews li {
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.last-reviews li:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  .content-layout {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .sidebar {
    position: static;
    width: 100%;
    max-width: 100%;
  }
}
.sidebar .search-form {
  margin-bottom: 20px;
}
.sidebar .search-form label {
  display: block;
}
.sidebar .search-field {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: #ffffff;
  background: #2a4a4a;
  border: 1px solid #00bcd4;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  border-radius: var(--border-radius-sm);
}
.sidebar .search-field::placeholder {
  color: rgba(230, 230, 230, 0.5);
}
.sidebar .search-field:focus {
  background: #3a5a5a;
  border-color: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
}
.sidebar .wp-block-search {
  margin-bottom: 20px;
}
.sidebar .wp-block-search__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #00e5ff;
  opacity: 0.9;
}
.sidebar .wp-block-search__inside-wrapper {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: #2a4a4a;
  padding: 3px;
  border-radius: var(--border-radius-md);
}
.sidebar .wp-block-search__input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 14px;
  background: transparent;
  color: #ffffff;
}
.sidebar .wp-block-search__input::placeholder {
  color: rgba(230, 230, 230, 0.5);
}
.sidebar .wp-block-search__button {
  flex: 0 0 auto;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: #00bcd4;
  color: #0a1a1a;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border-radius: var(--border-radius-md);
}
.sidebar .wp-block-search__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 12px #00bcd4;
}
@media (max-width: 480px) {
  .sidebar .wp-block-search__inside-wrapper {
    flex-direction: column;
  }
  .sidebar .wp-block-search__button {
    width: 100%;
    text-align: center;
  }
}
.container-content-item-sidebar {
  overflow: auto;
  max-width: 30%;
}
.container-content-item-sidebar #block-4,
.container-content-item-sidebar #block-5,
.container-content-item-sidebar #block-6 {
  display: none !important;
}
@media (max-width: 1199px) {
  .container-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .container-content-item-content {
    max-width: 100%;
  }
  .container-content-item-sidebar {
    max-width: 100%;
  }
  .sidebar {
    max-width: 100%;
  }
}
.casino-footer {
  background: #0e2424;
  color: #ffffff;
  padding: 40px 0 30px;
  font-size: 14px;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  border-top: 1px solid var(--stroke);
}
.casino-footer a {
  color: #00e5ff;
  text-decoration: none;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}
.casino-footer a:hover {
  color: #80deea;
  text-shadow: 0 0 6px #00bcd4;
}
.casino-footer a.btn {color:#0a1a1a;}
.review-date {
  font-size: 13px;
  opacity: 0.5;
}
.review-text {
  font-size: 14px;
  font-style: italic;
}
.slot-related__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #00e5ff;
}
.casino-footer__top-links ul {
  padding: 0;
  margin: 0 0 26px;
  text-align: center;
  list-style-type: none;
}
.casino-footer__top-links ul li {
  display: inline-block;
  margin: 5px 10px;
}
.casino-footer__link {
  font-size: 14px;
  opacity: 0.9;
}
.casino-footer__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.casino-footer__btn {
  min-width: 180px;
  text-align: center;
  padding-inline: 28px;
  background: #00bcd4;
  color: #0a1a1a;
  border: 1px solid #00e5ff;
  border-radius: var(--border-radius-md);
  transition: all 0.2s;
}
.casino-footer__btn:hover {
  box-shadow: 0 0 15px #00bcd4;
}
.casino-footer__btn--download {
  opacity: 0.95;
}
.casino-footer__btn--download:hover {
  opacity: 1;
}
.casino-footer__providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
  margin-bottom: 26px;
  opacity: 0.75;
}
.casino-footer__providers img {
  max-height: 34px;
  width: auto;
  filter: grayscale(1);
  transition: filter 0.2s;
}
.casino-footer__providers img:hover {
  filter: grayscale(0) drop-shadow(0 0 6px #00e5ff);
}
.casino-footer__middle-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 24px;
  font-size: 14px;
}
.casino-footer__responsible {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  margin-bottom: 26px;
  opacity: 0.9;
}
.casino-footer__responsible img {
  max-height: 40px;
  width: auto;
}
.casino-footer__legal-links {
  margin-bottom: 26px;
}
.casino-footer__legal-links ul {
  margin: 0 0 15px;
  max-width: 100%;
  list-style: none;
  text-align: center;
  padding: 0;
}
.casino-footer__legal-links li {
  display: inline-block;
  margin: 5px 10px;
}
.casino-footer__legal-links a {
  font-size: 13px;
  opacity: 0.9;
  display: block;
}
.casino-footer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 26px;
  margin-bottom: 24px;
  opacity: 0.8;
}
.casino-footer__payments img {
  max-height: 30px;
  width: auto;
  filter: grayscale(1);
  transition: filter 0.2s;
}
.casino-footer__payments img:hover {
  filter: grayscale(0) drop-shadow(0 0 4px #00bcd4);
}
.casino-footer__bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(245, 230, 240, 0.8);
}
.casino-footer__license {
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .casino-footer {
    padding-top: 30px;
  }
  .casino-footer__cta {
    flex-direction: column;
    align-items: center;
  }
  .casino-footer__btn {
    width: 100%;
    max-width: 260px;
  }
}
blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 15px;
  border-left: 5px solid #00e5ff;
  font-size: 18px;
  font-style: italic;
  color: #d4e6e6;
}
@media (max-width: 600px) {
  .casino-footer__legal-links {
    text-align: center;
  }
}
.esub {
  padding: 24px 0;
  background: transparent;
}
.esub .MuiContainer-root {
  max-width: 620px !important;
  margin: 0 auto;
}
.esub form {
  background: #143030;
  padding: 18px 18px;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
  border-radius: var(--border-radius-lg);
}
.esub .MuiGrid-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.esub .esubEmail {
  flex: 1 1 260px;
}
.esub .esubSubmit {
  flex: 0 0 160px;
}
.esub .MuiOutlinedInput-root {
  background: #2a4a4a;
  padding-inline: 4px;
  border-radius: var(--border-radius-sm);
}
.esub .MuiOutlinedInput-input {
  padding: 10px 14px;
  font-size: 14px;
  color: #ffffff;
}
.esub .MuiOutlinedInput-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.esub .MuiOutlinedInput-notchedOutline {
  border-color: #00bcd4;
}
.esub .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
}
.esub .MuiButton-root {
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  background: #00bcd4;
  color: #0a1a1a;
  box-shadow: 0 0 12px #00bcd4;
  border-radius: var(--border-radius-md);
}
.esub .MuiButton-root:hover {
  background: #00e5ff;
  box-shadow: 0 0 20px #00bcd4;
}
.esub #esubSubjectInput {
  display: none;
}
@media (max-width: 600px) {
  .esub form {
    padding: 16px 14px;
  }
  .esub .MuiGrid-container {
    flex-direction: column;
    align-items: stretch;
  }
  .esub .esubEmail,
  .esub .esubSubmit {
    flex: 1 1 auto;
    width: 100%;
  }
  .esub .MuiButton-root {
    width: 100%;
  }
}
.casino-footer__responsible a {
  width: 15%;
}
.games-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.games-tabs__btn {
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 14px;
  background: #2a4a4a;
  color: #00e5ff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  border-radius: var(--border-radius-md);
}
.games-tabs__btn:hover {
  background: #00bcd4;
  color: #0a1a1a;
}
.games-tabs__btn.is-active {
  background: #00e5ff;
  color: #0a1a1a;
  box-shadow: 0 0 20px #00e5ff;
  transform: translateY(-1px);
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #008b8b;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.breadcrumbs__item a.breadcrumbs__link {
  color: #00e5ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.breadcrumbs__item a.breadcrumbs__link:hover {
  color: #80deea;
  text-shadow: 0 0 4px #00bcd4;
}
.breadcrumbs__item--current .breadcrumbs__current {
  color: #fff;
  font-weight: 600;
}
.breadcrumbs__sep {
  color: #00e5ff;
  margin: 0 4px;
  user-select: none;
}
.breadcrumbs {
  margin-top: 5%;
}
.game {
  display: flex;
  flex-direction: column;
}
.game__media {
  margin-bottom: 10px;
}
.game__thumb-link,
.game__thumb-link img {
  display: block;
  width: 100%;
  height: auto;
}
.game__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.game__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.game__title a {
  color: inherit;
  text-decoration: none;
}
.game__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.game__btn {
  width: 100%;
  text-align: center;
  background: #00bcd4;
  color: #0a1a1a;
  border: 1px solid #00e5ff;
  border-radius: var(--border-radius-md);
  transition: all 0.2s;
}
.game__btn:hover {
  box-shadow: 0 0 12px #00bcd4;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}
.table-scroll table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
}
.table-scroll th,
.table-scroll td {
  white-space: nowrap;
}
.bonuscontent a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  background: #00e5ff;
  color: #0a1a1a;
  border-radius: var(--border-radius-md);
}
@media (max-width: 480px) {
  .breadcrumbs {
    font-size: 13px;
  }
  .breadcrumbs__list {
    gap: 4px;
  }
}
@media (max-width: 600px) {
  .games-tabs {
    gap: 6px;
  }
  .games-tabs__btn {
    font-size: 13px;
    padding: 7px 12px;
  }
  .enhanced .btn--solid {
    font-size: 12px;
  }
}
.btn-hero-mobile {
  display: none;
}
@media (max-width: 767px) {
  .btn-hero-mobile {
    display: inline-flex;
    margin-top: 10px;
  }
  .slides .slide {
    height: auto;
  }
  .game__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
    width: 100%;
  }
}
.vc-comment-form input[type="text"],
.vc-comment-form input[type="email"],
.vc-comment-form input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  background: #2a4a4a;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border-radius: var(--border-radius-sm);
}
.header__logo {
  height: 50px;
}
.game__actions .game__btn:last-child {
  background: #ff4107;
  color: #fff !important;
}
.comment-form-url {
  display: none !important;
}
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #143030;
  border: 1px solid #00bcd4;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
  color: #d4e6e6;
  max-width: 100%;
  border-radius: var(--border-radius-md);
}
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #00bcd4;
  border-right: 1px solid #00bcd4;
  color: #d4e6e6;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .m-table {
    width: 100%;
    overflow: auto !important;
    border: 1px solid #00bcd4;
    box-sizing: border-box;
    margin: 20px 0 20px;
    border-radius: var(--border-radius-md);
  }
  .m-table table {
    margin: 0 0 0 0 !important;
    border: none !important;
    border-radius: 0 !important;
  }
}

.block-promo_s {
  border-radius: var(--border-radius-lg);
  border: 1px solid #00e5ff;
  background: #143030;
  text-align: center;
  padding: 20px;
  color: #fff;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}
.text-promo_s {
  font-size: 25px;
  font-weight: 900;
  margin: 0 0 20px 0;
  color: #fff;
}
.button-promo_s {
  margin: 15px auto;
  display: block;
  max-width: 240px;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  border-radius: var(--border-radius-md);
  background: #00bcd4;
  color: #0a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}
.block-promo_s a {
  border: 1px solid #00e5ff !important;
}
.button-promo_s:hover {
  background: #00e5ff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px #00bcd4;
}
.games__head a.btn {
  display: none;
}