@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --color-primary: #5274ff;
  --color-primary-dark: #3a58e0;
  --color-green: #69d253;
  --color-green-dark: #52b83e;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-dark: #1a1a2e;
  --color-dark-2: #16213e;
  --color-dark-3: #0f3460;
  --color-text: #2d2d2d;
  --color-text-muted: #6b7280;
  --color-border: #e0e0e0;
  --color-accent: #f0c040;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --font-main: "Montserrat", "Roboto", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-primary-dark);
}
ul {
  list-style: none;
}

.d-none {
  display: none !important;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.w-100 {
  width: 100%;
}

.container-fluid-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.xt9q2a {
  display: none;
}
.wp-block-group {
  display: block;
}
.elementor-widget {
  position: relative;
}
.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 13px;
}
.entry-content {
  display: block;
}
.post-thumbnail {
  display: block;
}

.xk71b {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
  height: 1px;
}

.btn-slottica {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
}
.btn-slottica:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.btn-slottica:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
.btn-login:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
}

.btn-signup {
  background: var(--color-green);
  color: var(--color-white) !important;
}
.btn-signup:hover {
  background: var(--color-green-dark);
  color: var(--color-white) !important;
}

.btn-bonus {
  background: var(--color-accent);
  color: var(--color-dark) !important;
}
.btn-bonus:hover {
  background: #e0a800;
  color: var(--color-dark) !important;
}

.site-header {
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
}
.header-nav a:hover {
  background: rgba(82, 116, 255, 0.09);
  color: var(--color-primary);
  text-decoration: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-right: 8px;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(105, 210, 83, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(105, 210, 83, 0);
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover {
  background: rgba(82, 116, 255, 0.09);
  color: var(--color-primary);
}

.hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/sban.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-title span {
  color: var(--color-accent);
}
.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.55;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-buttons .btn-slottica {
  font-size: 15px;
  padding: 14px 30px;
}

.section-block {
  padding: 56px 0;
}
.section-block + .section-block {
  border-top: 1px solid var(--color-border);
}
.section-title {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.screenshot-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mirrors-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  margin: 0 0 0 0;
}
.mirrors-update-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(105, 210, 83, 0.1);
  border: 1px solid rgba(105, 210, 83, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.mirrors-update-bar strong {
  color: var(--color-dark);
}
.update-icon {
  color: var(--color-green);
  font-size: 16px;
}
.mirrors-datetime {
  font-weight: 700;
  color: var(--color-green-dark);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.mirrors-table th {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.mirrors-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}
.mirrors-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}
.mirrors-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.mirrors-table tr:last-child td {
  border-bottom: none;
}
.mirrors-table tr:hover td {
  background: rgba(82, 116, 255, 0.04);
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-green-dark);
}
.mirror-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  display: inline-block;
}
.mirror-link {
  color: var(--color-primary) !important;
  font-weight: 600;
  font-size: 13px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.game-card-body {
  padding: 10px 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}
.game-card-provider {
  font-size: 11px;
  color: var(--color-text-muted);
}
.game-card-btn {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    transform 0.18s;
  margin-top: auto;
}
.game-card-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  text-decoration: none;
}

.demo-block {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.demo-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-header-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
}
.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
  touch-action: auto;
}

.review-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(82, 116, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(82, 116, 255, 0.12);
  margin-bottom: 32px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-white);
  font-weight: 800;
  flex-shrink: 0;
}
.author-info {
}
.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-dark);
}
.author-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.5;
}
.author-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.author-links a {
  font-size: 12px;
  font-weight: 600;
}

.content-area {
  line-height: 1.75;
  color: var(--color-text);
}
.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4 {
  font-weight: 800;
  color: var(--color-dark);
  margin: 1.5em 0 0.5em;
  line-height: 1.25;
}
.content-area h1 {
  font-size: 2em;
}
.content-area h2 {
  font-size: 1.5em;
}
.content-area h3 {
  font-size: 1.2em;
}
.content-area p {
  margin-bottom: 1em;
}
.content-area ul,
.content-area ol {
  padding-left: 24px;
  margin-bottom: 1em;
  list-style: initial;
}
.content-area ol {
  list-style: decimal;
}
.content-area li {
  margin-bottom: 0.4em;
}
.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
}
.content-area table th {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.content-area table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
}
.content-area table tr:hover td {
  background: rgba(82, 116, 255, 0.04);
}
.content-area a {
  color: var(--color-primary);
  font-weight: 600;
}
.content-area blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 12px 20px;
  background: rgba(82, 116, 255, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1em 0;
}
.content-area strong {
  font-weight: 700;
}
.content-area em {
  font-style: italic;
}
.content-area img {
  border-radius: var(--radius-md);
  margin: 1em 0;
}

.faq-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(82, 116, 255, 0.04);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-text-muted);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px;
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.footer-nav a:hover {
  color: var(--color-white);
}
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-payments {
  margin-bottom: 24px;
}
.footer-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-badge,
.provider-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.payment-badge:hover,
.provider-badge:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}
.footer-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--color-dark-3), var(--color-dark-2));
  border-top: 2px solid var(--color-green);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.sticky-widget-text {
  flex: 1;
}
.sticky-widget-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-white);
}
.sticky-widget-bonus {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 700;
}
.sticky-widget-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.sticky-widget-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.sticky-widget-btn {
  background: var(--color-green);
  color: var(--color-dark) !important;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.18s;
  text-decoration: none !important;
}
.sticky-widget-btn:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.m5ga3 {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.n8k2l {
  visibility: hidden;
}
.elementor-container {
  display: block;
}

@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-badges {
    align-items: flex-start;
  }
  .screenshots-slider {
    grid-template-columns: 1fr;
    gap: 0;
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .screenshot-item {
    min-width: 80vw;
    scroll-snap-align: start;
  }
  .mirrors-block {
    padding: 20px 12px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions .online-count {
    display: none;
  }
  .btn-slottica {
    font-size: 13px;
    padding: 8px 14px;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .game-card-img {
    max-height: 180px;
  }
  .hero-section {
    min-height: 320px;
  }
  .review-block {
    padding: 20px 16px;
  }
  .author-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-block {
    padding: 36px 0;
  }
  .sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .demo-block {
    margin: 0 -20px;
    border-radius: 0;
  }
  .demo-header {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .demo-header-title {
    font-size: 16px;
  }
  .demo-iframe-wrap {
    padding-top: 75%;
    min-height: 400px;
  }
  .demo-iframe-wrap iframe {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 40px 16px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .mirrors-table {
    font-size: 12px;
  }
  .mirrors-table th,
  .mirrors-table td {
    padding: 8px 10px;
  }
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  .sticky-widget-title {
    font-size: 13px;
  }
  .sticky-widget-btn {
    font-size: 13px;
    padding: 10px 18px;
  }
  .game-card-img {
    max-height: 140px;
  }
  .demo-iframe-wrap {
    padding-top: 100%;
    min-height: 350px;
  }
}
