:root {
  --c-primary: #5274ff;
  --c-green: #69d253;
  --c-bg: #1a1a2e;
  --c-white: #16213e;
  --c-dark: #0f1629;
  --c-dark2: #16213e;
  --c-text: #e8ecf5;
  --c-text-light: #a0a8c0;
  --c-border: #2a3356;
  --c-gold: #f5c518;
  --c-pros: #1e3a28;
  --c-cons: #3a1e1e;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #7b95ff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.xb3k-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.xb3k-hidden {
  display: none !important;
}
.xb3k-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.xb3k-unused-div {
  display: none;
  font-size: 0;
  opacity: 0;
}
.rnd-7f2a {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
}
.entry-content {
  display: block;
}
.elementor-widget-container {
  display: block;
}
.wp-block-image {
  display: block;
}
.post-meta {
  font-size: 0.85em;
  color: var(--c-text-light);
}
.yoast-schema-graph {
  display: none;
}
.wp-embed-responsive {
  position: relative;
}

.slt-header {
  background: var(--c-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid var(--c-border);
}

.slt-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.slt-header__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.slt-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.slt-header__nav a {
  color: #e8ecf5;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}

.slt-header__nav a:hover {
  background: rgba(82, 116, 255, 0.15);
  color: #fff;
}

.slt-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slt-header__online {
  font-size: 12px;
  color: var(--c-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.slt-header__online-dot {
  width: 8px;
  height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  animation: slt-pulse 1.5s infinite;
}

@keyframes slt-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.slt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Montserrat", Arial, sans-serif;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1;
}

.slt-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  filter: brightness(1.07);
}
.slt-btn:active {
  transform: translateY(0);
}

.slt-btn--login {
  background: var(--c-primary);
  color: #fff !important;
}
.slt-btn--signup {
  background: var(--c-green);
  color: #fff !important;
}
.slt-btn--bonus {
  background: linear-gradient(90deg, var(--c-gold), #ff9800);
  color: #1a1a2e !important;
}

.slt-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
.slt-btn--sm {
  padding: 6px 14px;
  font-size: 13px;
}

.slt-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.slt-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8ecf5;
  border-radius: 2px;
  transition: all 0.25s;
}

.slt-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.slt-burger.active span:nth-child(2) {
  opacity: 0;
}
.slt-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.slt-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--c-dark);
  padding: 12px 20px 16px;
  border-top: 1px solid var(--c-border);
}

.slt-mobile-menu.active {
  display: flex;
}

.slt-mobile-menu a {
  color: #e8ecf5;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s;
}

.slt-mobile-menu a:last-child {
  border-bottom: none;
}
.slt-mobile-menu a:hover {
  color: var(--c-primary);
}

.slt-hero {
  position: relative;
  background: var(--c-dark);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.slt-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/slotBan.png");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}

.slt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(26, 26, 46, 0.55) 60%,
    rgba(26, 26, 46, 0.15) 100%
  );
  z-index: 1;
}

.slt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 20px 60px 40px;
  margin: 0 auto 0 0;
}

.slt-hero__badge {
  display: inline-block;
  background: var(--c-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.slt-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.slt-hero__title span {
  color: var(--c-gold);
}

.slt-hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

.slt-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slt-section {
  padding: 64px 0;
}

.slt-section--alt {
  background: #12182d;
}
.slt-section--dark {
  background: var(--c-dark2);
}

.slt-section__title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.slt-section--dark .slt-section__title {
  color: #fff;
}

.slt-section__subtitle {
  text-align: center;
  color: var(--c-text-light);
  font-size: 15px;
  margin-bottom: 40px;
}

.slt-section--dark .slt-section__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.slt-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.slt-pros-cons__col {
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.slt-pros-cons__col--pros {
  border-top: 4px solid var(--c-green);
}
.slt-pros-cons__col--cons {
  border-top: 4px solid #e53e3e;
}

.slt-pros-cons__col h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slt-pros-cons__col--pros h3 {
  color: #8ee89a;
}
.slt-pros-cons__col--cons h3 {
  color: #ff8a8a;
}

.slt-pros-cons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slt-pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
}

.slt-pros-cons__list li::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.slt-pros-cons__col--pros .slt-pros-cons__list li::before {
  content: "+";
  background: var(--c-green);
  color: #fff;
}

.slt-pros-cons__col--cons .slt-pros-cons__list li::before {
  content: "-";
  background: #e53e3e;
  color: #fff;
}

.slt-jackpots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.slt-jackpot-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.25);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.slt-jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.2);
}

.slt-jackpot-card__glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.18) 0%,
    transparent 70%
  );
  top: -20px;
  right: -20px;
  pointer-events: none;
}

.slt-jackpot-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.slt-jackpot-card__name {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.slt-jackpot-card__amount {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--c-gold);
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
  transition: all 0.4s;
}

.slt-jackpot-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

.slt-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.slt-game-card {
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.slt-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(82, 116, 255, 0.25);
}

.slt-game-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.slt-game-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.slt-game-card__provider {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text-light);
  font-weight: 600;
}

.slt-game-card__name {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.slt-game-card__btn {
  margin-top: auto;
}

.slt-wheel-section {
  text-align: center;
}

.slt-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.slt-wheel-canvas-wrap {
  position: relative;
  display: inline-block;
}

#slt-wheel-canvas {
  display: block;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(82, 116, 255, 0.3),
    0 0 0 12px rgba(82, 116, 255, 0.12);
}

.slt-wheel-pin {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 24px solid var(--c-primary);
  filter: drop-shadow(0 2px 4px rgba(82, 116, 255, 0.4));
}

.slt-wheel-result {
  display: none;
  background: linear-gradient(
    135deg,
    rgba(105, 210, 83, 0.15),
    rgba(105, 210, 83, 0.08)
  );
  border: 2px solid var(--c-green);
  border-radius: var(--radius);
  padding: 20px 32px;
  text-align: center;
  animation: slt-fadeIn 0.4s ease;
  max-width: 360px;
}

.slt-wheel-result__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #8ee89a;
  margin-bottom: 6px;
}

.slt-wheel-result__text {
  font-size: 15px;
  color: var(--c-text-light);
  margin-bottom: 14px;
}

.slt-wheel-result--lose {
  background: linear-gradient(
    135deg,
    rgba(229, 62, 62, 0.15),
    rgba(229, 62, 62, 0.08)
  );
  border-color: #e53e3e;
}

.slt-wheel-result--lose .slt-wheel-result__title {
  color: #ff8a8a;
}

@keyframes slt-fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slt-review {
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.slt-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}

.slt-review__author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), #7b9bff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.slt-review__author-name {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.slt-review__author-meta {
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 2px;
}

.slt-review__author-meta a {
  color: var(--c-primary);
  font-weight: 500;
}

.slt-review__content {
  color: var(--c-text);
  line-height: 1.75;
}

.slt-review__content h2 {
  font-size: 22px;
  margin: 24px 0 10px;
  color: #fff;
}
.slt-review__content h3 {
  font-size: 18px;
  margin: 20px 0 8px;
  color: #fff;
}
.slt-review__content h4 {
  font-size: 16px;
  margin: 16px 0 6px;
  color: #fff;
}
.slt-review__content p {
  margin-bottom: 14px;
}
.slt-review__content ul,
.slt-review__content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.slt-review__content li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.slt-review__content strong {
  font-weight: 700;
  color: #fff;
}
.slt-review__content em {
  font-style: italic;
}
.slt-review__content a {
  color: var(--c-primary);
  text-decoration: underline;
}
.slt-review__content blockquote {
  border-left: 4px solid var(--c-primary);
  padding: 10px 16px;
  background: rgba(82, 116, 255, 0.12);
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
  color: #e8ecf5;
  font-style: italic;
}
.slt-review__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.slt-review__content table th,
.slt-review__content table td {
  border: 1px solid var(--c-border);
  padding: 10px 14px;
  text-align: left;
}
.slt-review__content table th {
  background: rgba(82, 116, 255, 0.15);
  font-weight: 700;
  color: #fff;
}
.slt-review__content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.slt-review__content img {
  border-radius: 8px;
  margin: 10px 0;
}
.slt-review__content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}

.slt-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slt-faq__item {
  background: var(--c-dark2);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.slt-faq__item:hover {
  box-shadow: var(--shadow);
}

.slt-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.slt-faq__q:hover {
  background: rgba(82, 116, 255, 0.08);
}

.slt-faq__q[aria-expanded="true"] {
  background: rgba(82, 116, 255, 0.15);
  color: #a6baff;
}

.slt-faq__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.25s;
  color: var(--c-primary);
}

.slt-faq__q[aria-expanded="true"] .slt-faq__arrow {
  transform: rotate(180deg);
}

.slt-faq__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-light);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
}

.slt-faq__a.open {
  display: block;
  animation: slt-fadeIn 0.25s ease;
}

.slt-footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
  border-top: 1px solid var(--c-border);
}

.slt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.slt-footer__logo img {
  height: 44px;
  margin-bottom: 14px;
}

.slt-footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.slt-footer__col h4 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slt-footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slt-footer__nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: color 0.2s;
}

.slt-footer__nav a:hover {
  color: var(--c-green);
}

.slt-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.slt-footer__payment-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.slt-footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.slt-footer__provider-tag {
  background: rgba(82, 116, 255, 0.15);
  border: 1px solid rgba(82, 116, 255, 0.25);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.slt-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.slt-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.slt-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}
.slt-footer__copy a {
  color: rgba(255, 255, 255, 0.5);
}
.slt-footer__copy a:hover {
  color: var(--c-green);
}

.slt-footer__license {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
  max-width: 360px;
  line-height: 1.6;
}

.slt-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--c-dark2) 0%, #0f3460 100%);
  border-top: 2px solid var(--c-primary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  animation: slt-slideUp 0.5s ease;
}

@keyframes slt-slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.slt-widget__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.slt-widget__bonus {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--c-gold);
}

.slt-widget__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.slt-widget__close:hover {
  color: #fff;
}

.slt-breadcrumb {
  padding: 10px 0;
  font-size: 13px;
  color: var(--c-text-light);
}

.slt-breadcrumb a {
  color: var(--c-primary);
}
.slt-breadcrumb span {
  margin: 0 6px;
}

.slt-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.slt-rating__stars {
  color: var(--c-gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.slt-rating__score {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.slt-rating__count {
  font-size: 13px;
  color: var(--c-text-light);
}

@media (max-width: 991px) {
  .slt-jackpots {
    grid-template-columns: repeat(2, 1fr);
  }
  .slt-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .slt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .slt-header__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }
  .slt-header__nav {
    display: none;
  }
  .slt-burger {
    display: flex;
  }
  .slt-section {
    padding: 40px 0;
  }
  .slt-pros-cons {
    grid-template-columns: 1fr;
  }
  .slt-jackpots {
    grid-template-columns: 1fr 1fr;
  }
  .slt-hero__content {
    padding: 40px 20px;
  }
  .slt-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .slt-footer__license {
    text-align: left;
    max-width: 100%;
  }
  .slt-footer__bottom {
    flex-direction: column;
  }
  .slt-review {
    padding: 20px 16px;
  }
  .slt-games {
    grid-template-columns: 1fr;
  }
  .slt-widget {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px 40px 14px 16px;
  }
}

@media (max-width: 480px) {
  .slt-jackpots {
    grid-template-columns: 1fr;
  }
  .slt-hero__btns {
    flex-direction: column;
  }
  .slt-hero__btns .slt-btn {
    text-align: center;
    justify-content: center;
  }
}

.slt-games-slider-wrap {
  position: relative;
  overflow: hidden;
}

.slt-games-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .slt-games-slider-wrap {
    overflow: visible;
  }
  .slt-games-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .slt-games-slider::-webkit-scrollbar {
    display: none;
  }
  .slt-games-slider .slt-game-card {
    flex: 0 0 72vw;
    max-width: 260px;
    scroll-snap-align: start;
  }
}

.slt-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-green));
  border-radius: 2px;
  margin: 10px auto 32px;
}

.a4x9-ghost {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}
.wp-post-image {
  display: block;
}
.wp-caption {
  display: block;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.size-full {
  display: block;
}
.wp-block-button {
  display: inline-block;
}
.has-text-align-center {
  text-align: center;
}
.wp-block-heading {
  display: block;
}
.entry-title {
  display: block;
}
.cat-links {
  display: inline;
}
.tags-links {
  display: inline;
}
.comments-link {
  display: inline;
}
.edit-link {
  display: none;
}
.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
}
