/* 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: #0a0a0a; /* чёрный фон */
  color: #ffffff; /* белый текст */
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
:root {
  --bg: #0a0a0a;
  --bg2: #0a0a0a;
  --muted: #aaaaaa;
  --card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.10);
  --accent1: #ff0000; /* красный */
  --accent2: #cc0000; /* тёмно-красный */
  --radius: 16px;
}
.container {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
}

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

.slot-single a,
.article-single__content a {
  color: #ff0000;
  text-decoration: underline;
  transition: .3s;
}
.slot-single a:hover,
.article-single__content a:hover {
  color: #ff3333;
  text-decoration: underline;
  transition: .3s;
}
.slot-single .btn {
  display: block;
  max-width: 250px;
  text-align: center;
  margin: 15px auto 0;
}
.slot-single .btn a {
  text-decoration: none;
}
/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg2);
  border-bottom: 1px solid var(--stroke);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 10px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.header__logo {
  height: 26px;
}
.header__name {
  font-weight: 800;
  letter-spacing: .5px;
  color: #ffffff;
}
.header__nav {
  display: none;
  gap: 20px;
  align-items: center;
}
.header__nav .nav__link[aria-current="true"] {
  text-decoration: underline;
  color: #ff0000;
}
.burger {
  display: grid;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 8px;
  color: #fff;
  cursor: pointer;
}
.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
}
blockquote {
  border-left: 5px solid #ff0000;
  padding-left: 15px;
  margin: 0 0 15px;
  font-style: italic;
  font-size: 18px;
}
blockquote p {
  margin: 0;
}
/* Mobile menu */
.header__menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  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);
}
.header__exit-menu {
  position: absolute;
  z-index: 99;
  right: 15px;
  top: 20px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: #0006;
  color: #fff;
  cursor: pointer;
}
.block-promo_s {
  border-radius: 15px;
  border: 1px solid var(--stroke);
  background: var(--card);
  text-align: center;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
}
.text-promo_s {
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px 0;
}
.button-promo_s {
  margin: 15px auto;
  display: block;
  max-width: 240px;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  border-radius: 18px;
  background: #0a0a0a;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #ff0000;
}
.block-promo_s a {
  border: 1px solid #ff0000 !important;
}
.button-promo_s:hover {
  background: #ff0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #0a0a0a;
}
ul,
ol {
  margin: 0 0 15px 30px;
  padding: 0;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, filter .2s;
}
.btn:active {
  transform: scale(.98);
}
.btn--solid {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #ffffff;
}
.btn--lg {
  padding: 14px 22px;
  font-size: 1.05rem;
}

/* Hero slider */
.hero {
  padding: 30px 16px;
}
.slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: url(/wp-content/uploads/2026/07/3.jpg) left center;
  background-size: cover;
  padding: 60px 30px;
}
.slider .h2 {
  color: #fff;
  font-weight: 900;
  font-size: 25px;
}
.slide a.btn {
  text-align: center;
  width: 240px;
  margin: 30px 0 0;
}

@media (max-width: 767px) {
  .slider {
    text-align: center;
    padding: 30px 15px;
  }
  .slide a.btn {
    margin: 15px auto;
    display: block;
  }
}
.slide .lead {
  color: #ffffff;
}

.lead {
  color: var(--muted);
  margin: 0 0 10px;
}
.badge {
  display: inline-block;
  background: #ff0000;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  box-shadow: 0 0 24px rgba(255, 0, 0, .25);
}
.badge--alt {
  background: #cc0000;
}

/* Slider controls */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: #0006;
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.nav--prev {
  left: 8px;
}
.nav--next {
  right: 8px;
}
.nav:hover {
  background: #ff0000;
  color: #0a0a0a;
}
.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  gap: 6px;
  justify-content: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff4;
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.dot[aria-selected="true"] {
  background: #ff0000;
  transform: scale(1.25);
}

/* Content */
.content {
  padding: 1px 16px 24px;
}
.typography h2 {
  margin: 0 0 8px;
  color: #ffffff;
}
.typography h3 {
  margin: 16px 0 8px;
  color: #ff0000;
}
.typography p,
.typography li {
  color: #d5e0ff;
}
.table {
  margin: 16px 0;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
}
.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: var(--card);
  border-radius: 12px;
  overflow: hidden;
}

/* ================= 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;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-text__content p {
  color: #d5e0ff;
  line-height: 1.65;
  margin: 0 0 14px;
}

.seo-text__content a {
  color: #ff0000;
  text-decoration: underline;
}

.seo-text__content a:hover {
  color: #ff3333;
}

.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: 1px 1px 24px;
}
.games__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  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);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
  transition: transform .15s;
}
.game:hover {
  transform: translateY(-2px);
  border-color: #ff0000;
}
.game__link {
  display: block;
  height: 100%;
}
.game__media {
  position: relative;
  overflow: hidden;
}
.game__media img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
}
.game__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
}
.game__title {
  font-size: 1rem;
  margin: 0;
  color: #ffffff;
}
.game__tag {
  font-size: .75rem;
  opacity: .9;
  background: #ff0000;
  padding: 4px 8px;
  border-radius: 999px;
  color: #ffffff;
}

/* 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: #ff0000;
}
.faq__details {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--card);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq__details summary {
  cursor: pointer;
  padding: 12px 14px;
  list-style: none;
  color: #ffffff;
}
.faq__details[open] summary {
  background: rgba(255, 0, 0, 0.08);
}
.faq__content {
  padding: 14px 14px 14px;
  color: #d5e0ff;
}

/* Footer */
.footer {
  margin-top: 24px;
  padding: 20px 16px;
  background: var(--bg2);
  color: #cdd7ee;
}
.footer__cols {
  display: grid;
  gap: 16px;
}
.footer__link {
  display: block;
  padding: 6px 0;
  color: #dfe9ff;
}
.footer__link:hover {
  color: #ff0000;
}

/* Desktop */
@media (min-width: 768px) {
  .container {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 3%;
    padding-right: 3%;
  }
  .header__nav {
    display: flex;
  }
  .burger {
    display: none;
  }

  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}
.nav__link {
  font-size: 20px;
}
@media (min-width: 1400px) {
  .games__grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1399px) {
  .games__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .games__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.nav__link {
  font-size: 20px;
}
/* ================= Animations & Interactions (scoped) ================ */

/* Easing vars */
:root {
  --ease-out: cubic-bezier(.16, .84, .44, 1);
  --ease-soft: cubic-bezier(.2, .7, .2, 1);
}

/* Buttons: gradient slide, lift, shadow */
.enhanced .btn {
  will-change: transform, filter;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.enhanced .btn--solid {
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: transform .18s var(--ease-out), filter .18s var(--ease-out), background-position .4s var(--ease-soft), box-shadow .25s var(--ease-out);
}
.enhanced .btn--solid:hover {
  background-position: 100% 0%;
  filter: brightness(1.02);
  box-shadow: 0 8px 24px rgba(255, 0, 0, .25);
  transform: translateY(-1px);
}
.enhanced .btn--solid:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 0, 0, .18);
}

/* Ripple (создаётся JS-ом, элемент .ripple внутри кнопки) */
.enhanced .btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, .35);
  pointer-events: none;
  width: 12px;
  height: 12px;
  animation: ripple .6s var(--ease-soft);
}
@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(22);
    opacity: 0;
  }
}

/* Promo copy feedback */
.enhanced .promo__copy.is-copied {
  animation: btnPulse .6s var(--ease-out);
  border-color: #ff0000;
}
@keyframes btnPulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(255, 0, 0, .25);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

/* Cards & games hover */
.enhanced .card,
.enhanced .game {
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  will-change: transform;
}
.enhanced .card:hover,
.enhanced .game:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
}
.enhanced .game__media img {
  transition: transform .35s var(--ease-soft);
  will-change: transform;
}
.enhanced .game:hover .game__media img {
  transform: scale(1.04);
}

/* Reveal on scroll */
.enhanced .reveal {
  opacity: 0;
  transform: translateY(12px) scale(.98);
  filter: saturate(.9);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), filter .6s var(--ease-out);
}
.enhanced .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.enhanced .reveal[data-delay="1"] {
  transition-delay: .06s;
}
.enhanced .reveal[data-delay="2"] {
  transition-delay: .12s;
}
.enhanced .reveal[data-delay="3"] {
  transition-delay: .18s;
}
.enhanced .reveal[data-delay="4"] {
  transition-delay: .24s;
}
.enhanced .reveal[data-delay="5"] {
  transition-delay: .30s;
}

/* Dots micro-motion */
.enhanced .dot {
  transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.enhanced .dot:hover {
  transform: scale(1.2);
}
.enhanced .dot[aria-selected="true"] {
  box-shadow: 0 0 0 6px rgba(255, 0, 0, .15);
}

/* Badge gentle breathing */
.enhanced .badge {
  animation: breathe 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 24px rgba(255, 0, 0, .25);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 0, 0, .35);
  }
}
/* адаптив */
@media (max-width: 768px) {
  .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;
  }
}

#content .size-full {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 16px;
}

#content .capion {
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

#content h1,
h2,
h3 {
  font-size: 1.5rem;
  margin: 16px 0 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slot-related__grid h3 {
  font-size: 1rem;
  margin: 16px 0 16px;
  padding: 5%;
}

/* Контейнер */
.vc-comments {
  margin-top: 48px;
  color: #eaeaea;
  margin-bottom: 50px;
}

/* Заголовки */
.vc-comments__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 20px;
  color: #ffffff;
}

/* Список комментариев */
.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: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

/* Аватар */
.vc-comment-list .avatar {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ff0000;
}

/* Мета: автор, дата */
.vc-comment-list .comment-author {
  font-weight: 700;
  color: #ff0000;
}
.vc-comment-list .comment-metadata {
  font-size: 12px;
  opacity: .75;
  margin-left: 8px;
}
.vc-comment-list .comment-metadata a {
  color: #bbb;
}

/* Текст */
.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-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--card);
  text-decoration: none;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  color: #ffffff;
}
.vc-comment-list .reply a:hover {
  transform: translateY(-1px);
  background: #ff0000;
  border-color: #cc0000;
  color: #0a0a0a;
}

/* Вложенные комментарии */
.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-radius: 10px;
  border: 1px solid var(--stroke);
  background: var(--card);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  color: #fff;
}
.page-numbers.current,
.page-numbers:hover {
  background: #ff0000;
  border-color: #cc0000;
  transform: translateY(-1px);
  color: #0a0a0a;
}

/* Форма */
.vc-comment-respond {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.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: rgba(255, 255, 255, .04);
  color: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.vc-comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.vc-comment-form input:focus,
.vc-comment-form textarea:focus {
  border-color: #ff0000;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, .15);
  background: rgba(255, 0, 0, .05);
}

/* Кнопка отправки */
.vc-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #cc0000;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.vc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, .3);
  border-color: #ff0000;
}

.vc-comment-form .error,
.vc-comment-form .logged-in-as {
  font-size: 13px;
  opacity: .8;
}

/* === Палитра кнопок сайта (подставь свои, если уже есть переменные темы) === */
:root {
  --vc-btn-start: #ff0000;
  --vc-btn-end: #cc0000;
  --vc-btn-border: #ff3333;
}

/* Контейнер */
.bonuscontent {
  margin: 40px 0;
  color: #ffffff;
}
.bonuscontent .h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 8px;
  color: #ff0000;
}
.bonuscontent>p {
  opacity: .85;
  margin-bottom: 16px;
}

/* Карточки бонусов — одна колонка */
.bonusbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.bonusbox+.bonusbox {
  margin-top: 12px;
}
/* Деликатная «неоновая» окантовка */
.bonusbox::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  pointer-events: none;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255, 0, 0, .2), rgba(204, 0, 0, .2), rgba(255, 0, 0, .2));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .6;
}
.bonusbox:hover {
  background: rgba(255, 0, 0, .04);
  border-color: #ff0000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* Текст и бейдж */
.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: #ffffff;
  word-break: break-word;
}
.badge {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ff0000;
  color: #0a0a0a;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Правая колонка (CTA) */
.box3 {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.bonuslink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--vc-btn-border);
  background: linear-gradient(90deg, var(--vc-btn-start), var(--vc-btn-end));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .03em;
  transition: filter .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bonuslink:hover,
.bonuslink:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(255, 0, 0, .3);
  border-color: #ff0000;
  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;
  }
}
@media (max-width: 420px) {
  .bonuscontent .h2 {
    font-size: 20px;
  }
  .box2 b {
    font-size: 14px;
  }
  .bonuslink {
    padding: 11px 14px;
    font-size: 14px;
  }
}

/* Контейнер */
.mirrorcontent {
  margin: 40px 0;
  color: #eaeaea;
}
.mirrorcontent .h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 8px;
  color: #ff0000;
}
.mirrorcontent>p {
  opacity: .85;
  margin-bottom: 16px;
}

/* Таблица */
.mirror-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: var(--mirror-bg);
  border: 1px solid var(--mirror-border);
  backdrop-filter: blur(6px);
}
.mirror-table th,
.mirror-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 0, 0, .12);
  border-right: 1px solid rgba(255, 0, 0, .12);
  color: #fff;
  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: linear-gradient(90deg, rgba(255, 0, 0, .15), rgba(204, 0, 0, .05));
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid #cc0000;
}
.mirror-table tr:last-child td {
  border-bottom: none;
}
.mirror-table tbody tr:hover td {
  background: rgba(255, 0, 0, .05);
  transition: background .25s ease;
}

/* Статус */
.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}
.status.online {
  color: #ff0000;
  background: rgba(255, 0, 0, .1);
  border: 1px solid #ff0000;
}
.status.offline {
  color: #ff4d4d;
  background: rgba(255, 77, 77, .1);
  border: 1px solid rgba(255, 77, 77, .25);
}

/* Адаптив */
@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);
    border-radius: 12px;
    background: var(--card);
    padding: 10px 12px;
  }
  .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: .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: "";
  }
}
@media (max-width: 420px) {
  .mirrorcontent .h2 {
    font-size: 20px;
  }
}

/* Контейнер */
.supportcontent {
  margin: 40px 0;
  color: #ffffff;
}
.supportcontent .h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 16px;
  color: #ff0000;
}

/* Список (адаптивная сетка) */
.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;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(6px);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.support-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  pointer-events: none;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255, 0, 0, .18), rgba(204, 0, 0, .18), rgba(255, 0, 0, .18));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .6;
}
.support-item:hover {
  background: rgba(255, 0, 0, .04);
  border-color: #ff0000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* Иконка */
.support-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

/* Текстовая часть */
.support-body {
  min-width: 0;
}
.support-body .mct {
  font-size: 16px;
  font-weight: 800;
  color: #ff0000;
  margin: -2px 0 6px 0;
}
.support-body p {
  margin: 0 0 8px;
  line-height: 1.65;
}
.support-email a {
  color: #ff0000;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 0, 0, .35);
}
.support-email a:hover {
  border-bottom-color: transparent;
}

/* CTA-кнопка (без «скачка») */
.support-cta {
  display: flex;
  align-items: center;
}
.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--vc-btn-border);
  background: linear-gradient(90deg, var(--vc-btn-start), var(--vc-btn-end));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .03em;
  transition: filter .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.support-link:hover,
.support-link:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(255, 0, 0, .3);
  border-color: #ff0000;
  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;
}

.bonuscontent p a {
  display: block;
  width: 280px;
  margin: 15px auto;
  text-align: center;
  justify-content: center;
}

.slot-single iframe {
  width: 700px;
  height: 500px;
}

.slot-single__breadcrumbs {
  margin-bottom: 10px;
  font-size: 14px;
}

.slot-single__title {
  margin-bottom: 20px;
  font-weight: 700;
  visibility: visible;
  text-align: center;
  color: #ff0000;
}

.slot-single__iframe-wrap {
  margin-bottom: 20px;
  text-align: center;
}

.slot-single__iframe-wrap iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

.slot-single__btn-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.slot-single__content {
  max-width: 800px;
}

/* Грид других слотов */
.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;
  }
}

.articles-preview {
  padding: 0px 0;
}

.articles-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.articles-preview__head h2 {
  font-size: 24px;
  color: #ffffff;
}

.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;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  margin-bottom: 12px;
}

.article-card__inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .45);
  border-color: #ff0000;
}

.article-card__media {
  flex: 0 0 140px;
  border-radius: 12px;
  overflow: hidden;
}

.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: .8;
  margin-bottom: 6px;
}

.article-card__cat {
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff0000;
  color: #0a0a0a;
}

.article-card__title {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}

.article-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
  margin-bottom: 8px;
}

.article-card__read {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .8;
  color: #ff0000;
}

@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 {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.wp-caption-text {
  text-align: center;
  font-style: italic;
  color: var(--muted);
}

#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,
  .slot-single {
    padding: 20px;
  }
  .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: #0a0a0a;
  padding: 40px 0 30px;
  color: #fff;
  border-top: 1px solid var(--stroke);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer__brand img {
  height: 42px;
  width: auto;
}

.footer__nav-list {
  display: flex;
  gap: 25px;
  list-style-type: none;
}

.footer__link {
  font-size: 16px;
  opacity: .85;
  text-decoration: none;
  color: #dfe9ff;
}

.footer__link:hover {
  opacity: 1;
  color: #ff0000;
}

.footer__btn {
  white-space: nowrap;
}

.footer__bottom {
  text-align: center;
  opacity: .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 {
  width: 70%;
}
.container-content-item-sidebar {
  width: 30%;
}
/* Лейаут контента + сайдбар */
.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: #fff;
  margin-top: 30px;
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .7);
  background: var(--card);
  border: 1px solid var(--stroke);
}

/* Виджеты внутри сайдбара */
.sidebar .widget {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--stroke);
}

.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: #ffffff;
}

/* Блок кнопок "Скачать" / "Регистрация" */
.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;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
}

/* Основная кнопка — как главные CTA на сайте */
.sidebar .main-button {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 0, 0, .3);
}

.sidebar .main-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(255, 0, 0, .45);
}

/* Вторая кнопка — полупрозрачная, более спокойная */
.sidebar .secondary-button {
  background: var(--card);
  border: 1px solid #ff0000;
  color: #ffffff;
}

.sidebar .secondary-button:hover {
  background: #ff0000;
  color: #0a0a0a;
}

.panel-info {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(255, 0, 0, .18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(204, 0, 0, .16), transparent 55%),
    var(--card);
  border: 1px solid var(--stroke);
}

.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 var(--stroke);
  padding-top: 6px;
  margin-top: 4px;
}

.panel-info-item-label {
  opacity: .8;
}

.panel-info-item-data {
  font-weight: 600;
  white-space: nowrap;
  color: #ff0000;
}

/* Блок последних отзывов */
.last-reviews {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--stroke);
}

.last-reviews-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Если шорткод выводит список <ul><li> */
.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 var(--stroke);
}

.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%;
  }
  .container-content-item-content {
    width: 100%;
  }
  .container-content-item-sidebar {
    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: #fff;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.sidebar .search-field::placeholder {
  color: rgba(255, 255, 255, .35);
}

.sidebar .search-field:focus {
  background: rgba(255, 0, 0, .05);
  border-color: #ff0000;
}

/* Сайдбарный поиск на блоках WP */
.sidebar .wp-block-search {
  margin-bottom: 20px;
}

/* Заголовок "Поиск" над полем */
.sidebar .wp-block-search__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  opacity: .8;
}

/* Обёртка поля + кнопки */
.sidebar .wp-block-search__inside-wrapper {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: var(--card);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--stroke);
}

/* Поле ввода */
.sidebar .wp-block-search__input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

.sidebar .wp-block-search__input::placeholder {
  color: rgba(255, 255, 255, .35);
}

/* Кнопка поиска */
.sidebar .wp-block-search__button {
  flex: 0 0 auto;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  transition: transform .15s ease, box-shadow .15s ease;
}

.sidebar .wp-block-search__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 0, 0, .35);
}

/* На очень узких экранах делаем вертикальный стек */
@media (max-width: 480px) {
  .sidebar .wp-block-search__inside-wrapper {
    flex-direction: column;
    border-radius: 16px;
  }

  .sidebar .wp-block-search__button {
    width: 100%;
    text-align: center;
  }
}

.container-content-item-sidebar {
  overflow: auto;
}

.container-content-item-sidebar #block-4,
.container-content-item-sidebar #block-5,
.container-content-item-sidebar #block-6 {
  display: none !important;
}

@media (max-width: 900px) {
  .container-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-content-item-content {
    max-width: 100%;
  }
}

/* === Общий футер === */
.casino-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 40px 0 30px;
  font-size: 14px;
  border-top: 1px solid var(--stroke);
}

/* Ссылки в стиле сайта */
.casino-footer a {
  color: #ff0000;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.casino-footer a:hover {
  color: #ff3333;
  opacity: 1;
}

/* Верхние текстовые ссылки */
.casino-footer__top-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 26px;
  text-align: center;
}

.casino-footer__top-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 26px;
  text-align: center;
  list-style-type: none;
}

.casino-footer__link {
  white-space: nowrap;
  font-size: 14px;
  opacity: 0.9;
}

/* === CTA-кнопки "Скачать" / "Регистрация" === */
/* используем существующие .btn .btn--solid с градиентом сайта,
   здесь только выравниваем и задаём размеры */
.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;
}

/* если хочется чуть отличать левую кнопку по «весу», можно ослабить вторую */
.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(100%) opacity(69%) invert(100%);
}

/* Навигация "Главная / Карта сайта" */
.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;
  filter: grayscale(100%) opacity(69%) invert(100%);
}

/* Юридические ссылки */
.casino-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-bottom: 26px;
}

.casino-footer__legal-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-bottom: 26px;
  list-style-type: none;
}

.casino-footer__legal-links a {
  font-size: 13px;
  opacity: 0.9;
}

/* Платёжные системы */
.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(100%) opacity(69%) invert(100%);
}

/* Низ футера */
.casino-footer__bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.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;
  }
}

@media (max-width: 600px) {
  .casino-footer__top-links {
    gap: 8px 16px;
  }

  .casino-footer__top-links ul {
    gap: 8px 16px;
  }

  .casino-footer__legal-links {
    gap: 8px 16px;
    text-align: center;
  }

  .casino-footer__legal-links ul {
    gap: 8px 16px;
    text-align: center;
  }
}

/* Обёртка блока подписки */
.esub {
  padding: 24px 0;
  background: var(--card);
  border-radius: 12px;
  padding: 20px 20px 10px;
  margin-top: 20px;
  border: 1px solid var(--stroke);
}

/* Карточка с формой */
.esub .MuiContainer-root {
  max-width: 620px !important;
  margin: 0 auto;
}

.esub form {
  background: transparent;
  border-radius: 20px;
  padding: 18px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* Лейаут: поле + кнопка в одну линию */
.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;
}

/* Сам input */
.esub .MuiOutlinedInput-root {
  background: var(--card);
  border-radius: 999px;
  padding-inline: 4px;
  border: 1px solid var(--stroke);
}

.esub .MuiOutlinedInput-input {
  padding: 10px 14px;
  font-size: 14px;
  color: #ffffff;
}

.esub .MuiOutlinedInput-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Убираем страшный синий бордер MUI */
.esub .MuiOutlinedInput-notchedOutline {
  border-color: var(--stroke);
}

.esub .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #ff0000;
}

/* Кнопка "Подписаться" в стиле сайта */
.esub .MuiButton-root {
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.esub .MuiButton-root:hover {
  background: linear-gradient(90deg, #ff3333, #cc0000);
  box-shadow: 0 14px 38px rgba(255, 0, 0, 0.45);
}

/* Прячем скрытое поле, чтобы не ломало сетку */
.esub #esubSubjectInput {
  display: none;
}

/* Адаптив: на мобиле всё в колонку */
@media (max-width: 600px) {
  .esub form {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .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;
  border-radius: 999px;
  font-size: 14px;
  background: var(--card);
  border: 1px solid var(--stroke);
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.games-tabs__btn:hover {
  background: #ff0000;
  color: #0a0a0a;
}

.games-tabs__btn.is-active {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
  transform: translateY(-1px);
  border-color: #cc0000;
}

/* ===============================
   BREADCRUMBS
   =============================== */

.breadcrumbs {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #757575;
}

.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: #ff0000;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}

.breadcrumbs__item a.breadcrumbs__link:hover {
  color: #ff3333;
}

.breadcrumbs__item--current .breadcrumbs__current {
  color: #fff;
  font-weight: 600;
}

/* Разделитель */
.breadcrumbs__sep {
  color: #cc0000;
  margin: 0 4px;
  user-select: none;
}

.breadcrumbs {
  margin-top: 30px;
}

/* Карточка слота — вертикальная колонка */
.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: 14px;
  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: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  border: 1px solid #cc0000;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.game__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, .3);
}

.bonuscontent a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, filter .2s;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
}

/* Адаптив */
@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;
  }

  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 30px 1px;
  }
  .enhanced .btn--solid {
    font-size: 12px;
  }
}

:root {
  --bg: #0a0a0a;
  /* основной фон */
  --bg2: #0a0a0a;
  /* фон хедера/блоков */
  --card: rgba(255, 255, 255, 0.03);
  --stroke: rgba(255, 255, 255, 0.10);

  /* красный */
  --accent1: #ff0000;
  --accent2: #cc0000;

  /* для бонусных/зеркальных кнопок */
  --vc-btn-start: #ff0000;
  --vc-btn-end: #cc0000;
  --vc-btn-border: #ff3333;

  /* если где-то используются эти переменные */
  --mirror-bg: rgba(255, 0, 0, 0.03);
  --mirror-border: rgba(255, 0, 0, 0.10);
  --card-bg: rgba(255, 0, 0, 0.03);
  --card-border: rgba(255, 0, 0, 0.10);
}

/* Фон страницы */
body {
  background: var(--bg);
}

/* 3. Базовые кнопки: красные */
.btn,
.bonuscontent a,
.sidebar .main-button,
.sidebar .secondary-button,
.sidebar .wp-block-search__button,
.bonuslink,
.support-link,

.vc-btn,
.esub .MuiButton-root,
.casino-footer__btn,
.games-tabs__btn.is-active,
.game__btn {
  border: 1px solid #cc0000;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, opacity 0.15s ease;
}

/* hover/active по тону */
.btn:hover,
.bonuscontent a:hover,
.sidebar .main-button:hover,
.sidebar .secondary-button:hover,
.sidebar .wp-block-search__button:hover,
.bonuslink:hover,
.support-link:hover,

.vc-btn:hover,
.esub .MuiButton-root:hover,
.casino-footer__btn:hover,
.games-tabs__btn.is-active:hover,
.game__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.45);
  transform: translateY(-1px);
}

.btn:active,
.bonuscontent a:active,
.sidebar .main-button:active,
.sidebar .secondary-button:active,
.sidebar .wp-block-search__button:active,
.bonuslink:active,
.support-link:active,

.vc-btn:active,
.esub .MuiButton-root:active,
.casino-footer__btn:active,
.games-tabs__btn.is-active:active,
.game__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.5);
}

/* 4. Таб-кнопки по умолчанию чуть темнее, активные — красные */
.games-tabs__btn {
  background: var(--card);
  color: #fff;
  border: 1px solid var(--stroke);
}

.games-tabs__btn.is-active {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}
a.mr {
  display: block;
  max-width: 280px;
  text-align: center;
}
/* 5. Немного подправим основные контейнеры/футер под красную тему */
.header,
.footer,
.casino-footer {
  background: var(--bg2);
}
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--stroke);
  max-width: 100%;
}
table tr:first-child {
  font-weight: 700;
  background: rgba(255, 0, 0, 0.08);
}
table tr:nth-of-type(odd) {
  background: rgba(255, 0, 0, 0.03);
}
table td,
table th {
  padding: 14px 16px;
  border: 1px solid var(--stroke);
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .md-table {
    width: 100%;
    overflow: auto !important;
    border: 1px solid var(--stroke);
    box-sizing: border-box;
    margin: 20px 0 20px;
  }
  .md-table table {
    margin: 0 0 0 0 !important;
    border: none !important;
  }
}

/* =========================
   LIGHT THEME OVERRIDE – черно-красно-белый
   ========================= */

:root {
  --bg: #0a0a0a;
  --bg2: #0a0a0a;
  --muted: #aaaaaa;
  --card: rgba(255, 255, 255, 0.03);
  --stroke: rgba(255, 255, 255, 0.08);

  /* главный акцент – красный */
  --accent1: #ff0000;
  --accent2: #cc0000;

  /* для бонусных/зеркальных/саппорт-кнопок */
  --vc-btn-start: #ff0000;
  --vc-btn-end: #cc0000;
  --vc-btn-border: #ff3333;

  /* запасные переменные на случай использования в таблицах/карточках */
  --mirror-bg: rgba(255, 0, 0, 0.03);
  --mirror-border: rgba(255, 0, 0, 0.08);
  --card-bg: rgba(255, 0, 0, 0.03);
  --card-border: rgba(255, 0, 0, 0.08);
}

/* Базовый фон и текст */

body {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.7);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  border-radius: 0 !important;
}

/* Ссылки */

a {
  color: #ff0000;
}

a:hover {
  color: #ff3333;
}

a.btn,
.btn a {
  color: #ffffff !important;
}

/* Хедер – тёмный, чтобы логотип и меню были читаемы */

.header,
.casino-header {
  background: var(--bg2);
  color: #f9fafb;
  border-bottom: 1px solid var(--stroke);
}

.header__inner {
  color: inherit;
}

.header a,
.header__nav .nav__link {
  color: #e5e7eb;
}

.header__nav .nav__link[aria-current="true"] {
  color: #ff0000;
  text-decoration: underline;
}

.header__name {
  color: #f9fafb;
}

/* Бургер и мобильное меню */

.burger {
  border-color: var(--stroke);
  color: #e5e7eb;
}

.burger span {
  background: #ffffff;
}

.header__menu-nav {
  background: var(--bg2);
  color: #f9fafb;
  border-left-color: var(--stroke);
}

.header__exit-menu {
  border-color: var(--stroke);
  color: #f9fafb;
}

/* Футер ближе к светлому, читаемый текст и ссылки */

.footer,
.casino-footer {
  background: var(--bg2);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--stroke);
}

.footer a,
.casino-footer a {
  color: #ff0000;
}

.footer a:hover,
.casino-footer a:hover {
  color: #ff3333;
}

.casino-footer__bottom,
.footer__bottom {
  color: #98a2b3;
}

/* Основные карточки / блоки – светлые, скруглённые, с мягкой тенью */

.game,
.card,
.support-item,
.bonusbox,
.sidebar,
.vc-comment-list .comment,
.vc-comment-respond,
.panel-info,
.faq__item,
.article-card__inner,
.slot-card,
.seo-text,
.seo-text__content,
.last-reviews li {
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  color: #ffffff;
}

/* Кнопки и CTA – единый стиль на красный */

.btn,
.bonuscontent a,
.sidebar .main-button,
.sidebar .secondary-button,
.sidebar .wp-block-search__button,
.bonuslink,
.support-link,

.vc-btn,
.esub .MuiButton-root,
.casino-footer__btn,
.games-tabs__btn.is-active,
.game__btn {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  background-image: none;
  border: 1px solid #cc0000;
  color: #ffffff !important;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.28);
  transition: background 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover,
.bonuscontent a:hover,
.sidebar .main-button:hover,
.sidebar .secondary-button:hover,
.sidebar .wp-block-search__button:hover,
.bonuslink:hover,
.support-link:hover,

.vc-btn:hover,
.esub .MuiButton-root:hover,
.casino-footer__btn:hover,
.games-tabs__btn.is-active:hover,
.game__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 0, 0, 0.35);
}

.btn:active,
.bonuscontent a:active,
.sidebar .main-button:active,
.sidebar .secondary-button:active,
.sidebar .wp-block-search__button:active,
.bonuslink:active,
.support-link:active,

.vc-btn:active,
.esub .MuiButton-root:active,
.casino-footer__btn:active,
.games-tabs__btn.is-active:active,
.game__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.3);
}

/* Таб-кнопки: пассивные – чёрные с белой рамкой, активные – красные */

.games-tabs__btn {
  background: var(--card);
  border: 1px solid var(--stroke);
  color: #ffffff;
  border-radius: 999px;
}

.games-tabs__btn.is-active {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.35);
  border-color: #cc0000;
}

/* Бейджи и теги */

.badge,
.game__tag,
.article-card__cat {
  background: #ff0000;
  border-radius: 999px;
  color: #0a0a0a;
}

/* Breadcrumbs на тёмном фоне */

.breadcrumbs {
  color: #ffffff;
}

.breadcrumbs__item a,
.breadcrumbs__item .breadcrumbs__link {
  color: #ff0000;
}

.breadcrumbs__item a:hover,
.breadcrumbs__item .breadcrumbs__link:hover {
  color: #ff3333;
}

.breadcrumbs__item--current .breadcrumbs__current {
  color: #ffffff;
}

.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: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

.header .btn--solid {
  border: 1px solid #cc0000;
}

.enhanced .btn--solid {
  border: 1px solid #cc0000;
}

.games-tabs__btn {
  background: var(--bg);
  border: 1px solid var(--stroke);
  color: #ffffff;
  border-radius: 999px;
}

.games-tabs__btn:hover {
  color: #ffffff;
  background: #ff0000;
}

.games-tabs__btn.is-active {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.35);
  border: 1px solid #cc0000;
}

.article-card a {
  background: var(--bg);
  opacity: 1;
  color: #ffffff;
  border: 1px solid var(--stroke);
}

.badge,
.game__tag,
.article-card__cat {
  background: #ff0000;
  border-radius: 999px;
  color: #0a0a0a;
}

.vc-comments {
  margin-top: 48px;
  color: #ffffff;
  margin-bottom: 50px;
}

.vc-comments a {
  color: #ff0000;
}

.slot-single__content a {
  text-decoration: underline;
  color: #ff0000;
}

.btn-hero-mobile {
  display: none;
}

@media (max-width: 767px) {
  .btn-hero-mobile {
    display: inline-flex;
    margin-top: 10px;
  }

  .game__actions {
    width: 100%;
  }
}

.vc-comment-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.vc-comment-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.vc-comment-form input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}