/* 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:#0b1223;color:#fff}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
:root{
  --bg:#0b1223; --bg2:#101833; --muted:#a8b6d7;
  --card:rgba(255,255,255,.06); --stroke:rgba(255,255,255,.10);
  --accent1:#00b2ff; --accent2:#00ff85; --radius:16px;
}
.container{display:block;max-width:1024px;margin:0 auto;}

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

/* 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}
.header__nav{display:none;gap:20px;align-items:center}
.header__nav .nav__link[aria-current="true"]{text-decoration:underline}
.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}

/* Mobile menu */
.header__menu{position:fixed;inset:0;background:rgba(0,0,0,.7);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;left:10px;top:10px;width:36px;height:36px;border-radius:10px;border:1px solid var(--stroke);background:#0006;color:#fff;cursor:pointer}

/* 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:#001019}
.btn--lg{padding:14px 22px;font-size:1.05rem}

/* Hero slider */
.hero{padding:18px 12px}
.slider{position:relative;border:1px solid var(--stroke);background:var(--card);border-radius:24px;overflow:hidden}
.slides{display:flex;transition:transform .6s cubic-bezier(.2,.7,.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;border-radius:16px;overflow:hidden;border:1px solid var(--stroke);background:#0005;background-size:cover;background-position:center}
.lead{color:var(--muted);margin:0 0 10px}
.badge{display:inline-block;background:#0cf3;padding:6px 10px;border-radius:999px;margin-bottom:8px;box-shadow:0 0 24px rgba(0,178,255,.25)}
.badge--alt{background:#7fff8a}
.promo{display:flex;gap:8px;align-items:center;margin:8px 0 14px}
.promo__code{padding:8px 12px;border-radius:10px;background:#0008;border:1px dashed var(--stroke);font-weight:800;letter-spacing:.5px}
.promo__copy{padding:8px 12px;border-radius:10px;border:1px solid var(--stroke);background:#fff1;color:#fff;cursor:pointer}

/* 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{filter:brightness(1.2)}
.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:#fff;transform:scale(1.25)}

/* Content */
.content{padding:24px 16px}
.typography h2{margin:0 0 8px}
.typography h3{margin:16px 0 8px}
.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:#0006;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, var(--accent1), var(--accent2));
  -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: var(--accent1);
  text-decoration: underline;
}

.seo-text__content a:hover {
  color: var(--accent2);
}

.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 16px}
.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:#0006;overflow:hidden;transition:transform .15s}
.game:hover{transform:translateY(-2px)}
.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}
.game__tag{font-size:.75rem;opacity:.9;background:#0cf3;padding:4px 8px;border-radius:999px}

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

/* FAQ */
.faq{padding:8px 16px 28px}
.section-title{margin:0 0 10px}
.faq__details{border:1px solid var(--stroke);border-radius:12px;background:#0005;margin-bottom:8px;overflow:hidden}
.faq__details summary{cursor:pointer;padding:12px 14px;list-style:none}
.faq__details[open] summary{background:#fff1}
.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}

/* 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}
  .slide{grid-template-columns:1.1fr .9fr;align-items:center;padding:28px;padding-left:10%;padding-right:10%;}
  .hero{padding:28px 16px}
  .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;
}

/* ================= 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(0,178,255,.25); transform: translateY(-1px); }
.enhanced .btn--solid:active{ transform: translateY(0); box-shadow: 0 4px 12px rgba(0,178,255,.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: rgba(0,255,133,.6); }
@keyframes btnPulse{
  0%{ transform: scale(1); }
  40%{ transform: scale(1.06); box-shadow: 0 6px 18px rgba(0,255,133,.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; }

/* Slider content entrance */
.enhanced .slide .slide__content{ opacity:0; transform: translateY(8px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.enhanced .slide.is-active .slide__content{ opacity:1; transform:none; }
.enhanced .slide .slide__media{ transition: transform .6s var(--ease-soft), filter .6s var(--ease-soft); }
.enhanced .slide.is-active .slide__media{ transform:none; filter:none; }

/* 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,255,255,.08); }

/* 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(0,178,255,.25); }
  50%{ transform: scale(1.03); box-shadow: 0 0 30px rgba(0,178,255,.35); }
}
/* адаптив */
@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;
    }
}

#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 {
  width: 100%;
  border-collapse: collapse;          /* используем границы ячеек */
  margin: 40px 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12); /* общий контур */
}

.casino-table td {
  padding: 16px 20px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  vertical-align: top;

  /* границы ячеек для разделения */
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* убираем правую границу у последнего столбца */
.casino-table tr > td:last-child {
  border-right: none;
}

/* строка-заголовок */
.casino-table tr:first-child td {
  background: linear-gradient(90deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18); /* чуть контрастней */
}

/* убираем нижнюю границу у последней строки */
.casino-table tr:last-child td {
  border-bottom: none;
}

/* ховер по строке: подсвечиваем, но сохраняем видимость линий */
.casino-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease;
}

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

/* Контейнер */
.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;
}

/* Список комментариев */
.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(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  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 rgba(255,255,255,.2);
}

/* Мета: автор, дата */
.vc-comment-list .comment-author {
  font-weight: 700;
}
.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 rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.vc-comment-list .reply a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
}

/* Вложенные комментарии */
.vc-comment-list .children {
  list-style: none;
  margin: 10px 0 0 22px; /* компактный отступ слева */
  padding: 0;
  border-left: 1px dashed rgba(255,255,255,.12);
}
.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 rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.page-numbers.current, .page-numbers:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

/* Форма */
.vc-comment-respond {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  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-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  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: rgba(255,255,255,.32);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
  background: rgba(255,255,255,.06);
}

/* Кнопка отправки */
.vc-btn {
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  color: #fff;
  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(0,0,0,.35);
  border-color: rgba(255,255,255,.35);
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
} */

/* Сообщения об ошибках/успехе */
.vc-comment-form .error,
.vc-comment-form .logged-in-as {
  font-size: 13px; opacity: .8;
}


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

/* Контейнер */
.bonuscontent{margin:40px 0;color:#eaeaea}
.bonuscontent .h2{font-size:24px;font-weight:800;letter-spacing:.02em;margin-bottom:8px}
.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:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.12);
  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,184,.18), rgba(0,184,255,.18), rgba(255,0,184,.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
}
.bonusbox:hover{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.2);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:#fff;word-break:break-word}
.badge{display:inline-block;font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.06);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;
}
/* Без «скачка» — transform не используем */
.bonuslink:hover,.bonuslink:focus-visible{
  filter:brightness(1.06);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
  border-color:rgba(255,255,255,.35);
  outline:none;
}

/* Таблица — в стиле сайта */
.casino-table{width:100%;border-collapse:collapse;margin:20px 0 0;border-radius:14px;overflow:hidden;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.12)}
.casino-table td{padding:14px 16px;color:#fff;font-size:15px;line-height:1.6;vertical-align:top;border-right:1px solid rgba(255,255,255,.10);border-bottom:1px solid rgba(255,255,255,.08)}
.casino-table tr>td:last-child{border-right:none}
.casino-table tr:first-child td{background:linear-gradient(90deg,rgba(255,255,255,.12),rgba(255,255,255,.05));font-weight:800;text-transform:uppercase;letter-spacing:.05em;border-bottom:1px solid rgba(255,255,255,.18)}
.casino-table tr:last-child td{border-bottom:none}
.casino-table tr:hover td{background:rgba(255,255,255,.05);transition:background .25s ease}

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

/* Контейнер */
.mirrorcontent{
  margin:40px 0;
  color:#eaeaea;
}
.mirrorcontent .h2{
  font-size:24px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:8px;
}
.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,255,255,.08);
  border-right:1px solid rgba(255,255,255,.08);
  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,255,255,.12),rgba(255,255,255,.05));
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.mirror-table tr:last-child td{border-bottom:none}
.mirror-table tbody tr:hover td{
  background:rgba(255,255,255,.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:#00ffa0;
  background:rgba(0,255,163,.1);
  border:1px solid rgba(0,255,163,.25);
}
.status.offline{
  color:#ff4d4d;
  background:rgba(255,77,77,.1);
  border:1px solid rgba(255,77,77,.25);
}

/* Кнопка */
.mr{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  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;
  white-space:nowrap;
}
.mr:hover,
.mr:focus-visible{
  filter:brightness(1.06);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
  border-color:rgba(255,255,255,.35);
  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);
    border-radius:12px;
    background:rgba(255,255,255,.02);
    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;
  }
  /* для мобильного вида добавляем data-label */
  .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;}
}
@media(max-width:420px){
  .mirrorcontent .h2{font-size:20px}
}

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

/* Список (адаптивная сетка) */
.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,184,.18), rgba(0,184,255,.18), rgba(255,0,184,.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,255,255,.04);
  border-color:rgba(255,255,255,.2);
  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:#fff; margin:-2px 0 6px 0;
}
.support-body p{margin:0 0 8px; line-height:1.65}
.support-email a{
  color:#fff; text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.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(0,0,0,.35);
  border-color:rgba(255,255,255,.35);
  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}
}
@media(max-width:420px){
  .supportcontent .h2{font-size:20px}
  .support-body .mct{font-size:14px}
}

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

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

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

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

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

/* Грид других слотов */
.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(6, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }
}

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

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

.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;
  border-radius: 16px;
  background: #0a0a0f;
  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);
  background: #11111a;
}

.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: rgba(255,255,255,.06);
}

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

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

@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;
}
.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, .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: #0a0a0f;
  padding: 40px 0 30px;
  color: #fff;
}

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

.footer__link:hover {
  opacity: 1;
}

.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 {
  max-width: 900px;
}

/* Лейаут контента + сайдбар */
.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;
  background: #0a0a0f;
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .7);
  position: sticky;
}

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

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

/* Блок кнопок "Скачать" / "Регистрация" */
.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, #00b2ff, #00ff85);
  color: #050509;
  box-shadow: 0 10px 30px rgba(0, 255, 180, .3);
}

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

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

/* .sidebar .secondary-button:hover {
  background: rgba(255, 255, 255, .08);
} */

/* Панель с цифрами (игроки, джекпот и т.д.) */
.panel-info {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(0, 178, 255, .18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0, 255, 133, .16), transparent 55%),
              rgba(0, 0, 0, .65);
}

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

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

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

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

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

/* Если шорткод выводит список <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 rgba(255, 255, 255, .04);
}

.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: #fff;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .15);
  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, 255, 255, .1);
  border-color: #00ff85;
}

/* Сайдбарный поиск на блоках 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: rgba(255, 255, 255, .04);
  border-radius: 999px;
  padding: 3px;
}

/* Поле ввода */
.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, #00b2ff, #00ff85);
  color: #050509;
  transition: transform .15s ease, box-shadow .15s ease;
}

.sidebar .wp-block-search__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 255, 133, .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: #535353; /* тот же тёмный зелёно-чёрный, что и сайт */
  color: #ffffff;
  padding: 40px 0 30px;
  font-size: 14px;
}

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

.casino-footer a:hover {
  color: #00ff85; /* акцентный неон как на кнопках */
  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(1);
}

/* Навигация "Главная / Карта сайта" */
.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 {
  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(1);
}

/* Низ футера */
.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;
}

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

.esub form {
  background: #0a0a0f;
  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: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding-inline: 4px;
}

.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: rgba(255, 255, 255, 0.15);
}

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

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

.esub .MuiButton-root:hover {
  background: linear-gradient(90deg, #00c6ff, #33ff9a);
  box-shadow: 0 14px 38px rgba(0, 255, 180, 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%;
  }
}

.esub {
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.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: rgba(255, 255, 255, 0.06);
  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: rgba(255, 255, 255, 0.12);
}

.games-tabs__btn.is-active {
  background: linear-gradient(90deg, #00b2ff, #00ff85);
  color: #050509;
  box-shadow: 0 0 20px rgba(0, 255, 133, 0.35);
  transform: translateY(-1px);
}

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

.breadcrumbs {
    margin: 0 0 20px 0;
    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: #8f8f8f;
}

.breadcrumbs__item a.breadcrumbs__link {
    color: #00b2ff;               /* голубой как в твоей теме */
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.breadcrumbs__item a.breadcrumbs__link:hover {
    color: #0080c7;
}

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

/* Разделитель */
.breadcrumbs__sep {
    color: #bfbfbf;
    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: 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;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
  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;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, filter .2s;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #001019;
}


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

  .enhanced .btn--solid {
      font-size: 12px;
  }

  .bonuscontent figure {
    width: 100%!important;
    margin: 0!important;
  }
}

/* =========================
   OVERRIDE: brown + gold, no radius
   ========================= */

/* 1. Все скругления в 0 */
* {
  border-radius: 0 !important;
}

/* 2. Коричневая палитра и золотые акценты */
:root {
  --bg:   #1e1209;  /* основной фон */
  --bg2:  #28160b;  /* фон хедера/блоков */
  --card: rgba(255, 255, 255, 0.03);
  --stroke: rgba(255, 255, 255, 0.10);

  /* золото */
  --accent1: #d8a43a;
  --accent2: #f5dd7a;

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

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

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

/* 3. Базовые кнопки: золото */
.btn,
.bonuscontent a,
.sidebar .main-button,
.sidebar .secondary-button,
.sidebar .wp-block-search__button,
.bonuslink,
.support-link,
.mr,
.vc-btn,
.esub .MuiButton-root,
.casino-footer__btn,
.games-tabs__btn.is-active,
.game__btn {
  border: 1px solid var(--accent2);
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #3a2608 !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,
.mr: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(0, 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,
.mr: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(0, 0, 0, 0.5);
}

/* 4. Таб-кнопки по умолчанию чуть темнее, активные — золото */
.games-tabs__btn {
  background: rgba(60, 40, 20, 0.9);
  color: #f5e4b0;
  border: 1px solid rgba(245, 221, 122, 0.35);
}

.games-tabs__btn.is-active {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #3a2608;
  box-shadow: 0 0 20px rgba(216, 164, 58, 0.4);
}

/* 5. Немного подправим основные контейнеры/футер под коричневую тему */
.header,
.footer,
.casino-footer {
  background: var(--bg2);
}

.game,
.card,
.table,
.casino-table,
.mirror-table,
.support-item,
.bonusbox,
.sidebar {
  background: rgba(34, 20, 10, 0.95);
  border-color: rgba(255, 255, 255, 0.10);
}

.bonuscontent p {
  text-align: center;
}

.bonuscontent p a {
  display: inline-block;
  margin: 40px auto;
  padding: 10px 20px;
}




