:root {
  --c-bg: #1b1f30;
  --c-header: #151928;
  --c-btn-login: #333951;
  --c-btn-reg: #5236f0;
  --c-btn-reg-hover: #6347ff;
  --c-text: #e8eaf0;
  --c-text-muted: #9ba3bd;
  --c-text-dark: #c0c8e0;
  --c-accent: #f0a523;
  --c-gold: #f0c040;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-card: #1e2338;
  --c-card2: #232840;
  --c-plus: #22c55e;
  --c-minus: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --font-main: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-btn-reg);
  transition: color var(--transition);
}
a:hover {
  color: var(--c-btn-reg-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.g-xd7k2 {
  display: none;
}
.wp-block-group {
  display: block;
}
.entry-content-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  padding: 10px 20px;
}
.btn:active {
  transform: scale(0.97);
}
.btn--login {
  background: var(--c-btn-login);
  color: #fff;
}
.btn--login:hover {
  background: #424766;
  color: #fff;
}
.btn--reg {
  background: var(--c-btn-reg);
  color: #fff;
  box-shadow: 0 0 18px rgba(82, 54, 240, 0.4);
}
.btn--reg:hover {
  background: var(--c-btn-reg-hover);
  color: #fff;
  box-shadow: 0 0 28px rgba(82, 54, 240, 0.6);
}
.btn--gold {
  background: linear-gradient(135deg, #f0a523, #f0c040);
  color: #1b1f30;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(240, 165, 35, 0.45);
}
.btn--gold:hover {
  box-shadow: 0 0 30px rgba(240, 165, 35, 0.7);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn--sm {
  padding: 7px 14px;
  font-size: 13px;
}

.section {
  padding: 64px 0;
}
.section--sm {
  padding: 48px 0;
}

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-main);
}
.section-subtitle {
  text-align: center;
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}
.section-title span {
  color: var(--c-btn-reg);
}

.badge {
  display: inline-block;
  background: rgba(82, 54, 240, 0.18);
  color: var(--c-btn-reg);
  border: 1px solid rgba(82, 54, 240, 0.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: var(--c-text-dark);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-main);
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.header-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}
.header-online strong {
  color: #22c55e;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger:hover {
  background: rgba(255, 255, 255, 0.07);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 16px 16px;
  gap: 4px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: var(--c-text-dark);
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-main);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-header);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ber.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(27, 31, 48, 0.92) 0%,
    rgba(27, 31, 48, 0.5) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
}
.hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-family: var(--font-main);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--c-accent);
}
.hero-desc {
  color: var(--c-text-dark);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(82, 54, 240, 0.2);
  border: 1px solid rgba(82, 54, 240, 0.4);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 28px;
}
.hero-bonus-badge .bonus-amount {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-gold);
}
.hero-bonus-badge .bonus-label {
  font-size: 14px;
  color: var(--c-text-muted);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.hero-trust-item svg {
  flex-shrink: 0;
}

/* =========== PROS/CONS =========== */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proscons-col {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
}
.proscons-col--plus {
  border-top: 3px solid var(--c-plus);
}
.proscons-col--minus {
  border-top: 3px solid var(--c-minus);
}
.proscons-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.proscons-col--plus h3 {
  color: var(--c-plus);
}
.proscons-col--minus h3 {
  color: var(--c-minus);
}
.proscons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proscons-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--c-text-dark);
  line-height: 1.5;
}
.proscons-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
  background-size: contain;
}
.proscons-col--plus .proscons-list li::before {
  background: var(--c-plus);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.proscons-col--minus .proscons-list li::before {
  background: var(--c-minus);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jackpot-card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(240, 165, 35, 0.2);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(240, 165, 35, 0.2);
}
.jackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-gold));
}
.jackpot-card .jackpot-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.jackpot-card .jackpot-name {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.jackpot-card .jackpot-amount {
  font-family: var(--font-main);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--c-gold);
  text-shadow: 0 0 20px rgba(240, 192, 64, 0.4);
  animation: jackpot-flicker 3s ease-in-out infinite;
}
@keyframes jackpot-flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
.jackpot-card .jackpot-game {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 8px;
}
.jackpot-card .jackpot-btn {
  margin-top: 18px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.screenshot-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.screenshot-caption {
  padding: 10px 14px;
  background: var(--c-card);
  font-size: 13px;
  color: var(--c-text-muted);
  text-align: center;
}

/* =========== SLOTS =========== */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.slot-card {
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  text-align: center;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 54, 240, 0.5);
  box-shadow: 0 8px 24px rgba(82, 54, 240, 0.2);
}
.slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.slot-card-body {
  padding: 12px 10px;
}
.slot-card-name {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-card-provider {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}

/* =========== MINI SLOT =========== */
.slot-machine {
  max-width: 520px;
  margin: 0 auto;
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid rgba(82, 54, 240, 0.3);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 40px rgba(82, 54, 240, 0.12);
}
.slot-machine-title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--c-gold);
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.slot-reel {
  width: 80px;
  height: 80px;
  background: var(--c-header);
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  position: relative;
}
.slot-reel.spinning {
  animation: reel-spin 0.15s steps(1) infinite;
}
@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(-4px);
  }
  66% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.slot-result {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 8px;
}
.slot-result-text {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-gold);
  animation: fade-in 0.5s ease;
}
.slot-result-lose {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text-muted);
  animation: fade-in 0.5s ease;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slot-spin-btn {
  min-width: 180px;
}

/* =========== REVIEW CONTENT =========== */
.review-content {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 36px 40px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(82, 54, 240, 0.4);
}
.review-author-name {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.review-author-bio {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.review-author-link {
  font-size: 13px;
  color: var(--c-btn-reg);
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
}
.review-author-link:hover {
  color: var(--c-btn-reg-hover);
}

.review-body h2 {
  font-size: clamp(20px, 3.5vw, 26px);
  margin-top: 32px;
  margin-bottom: 14px;
  color: #fff;
}
.review-body h3 {
  font-size: clamp(17px, 2.8vw, 21px);
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--c-text-dark);
}
.review-body h4 {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--c-text-dark);
}
.review-body p {
  margin-bottom: 16px;
  color: var(--c-text-dark);
  line-height: 1.7;
  font-size: 15px;
}
.review-body ul,
.review-body ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--c-text-dark);
}
.review-body li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}
.review-body a {
  color: var(--c-btn-reg);
}
.review-body a:hover {
  color: var(--c-btn-reg-hover);
}
.review-body strong {
  color: #fff;
}
.review-body em {
  color: var(--c-accent);
  font-style: italic;
}
.review-body blockquote {
  border-left: 3px solid var(--c-btn-reg);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(82, 54, 240, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-dark);
  font-style: italic;
}
.review-body table {
  width: auto;
  max-width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.review-body table th,
.review-body table td {
  border: 1px solid var(--c-border);
  padding: 10px 16px;
  text-align: left;
  color: var(--c-text-dark);
}
.review-body table th {
  background: var(--c-card2);
  color: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.review-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 28px 0;
}
.review-body img {
  border-radius: var(--radius-sm);
  margin: 16px auto;
  max-width: 100%;
}

.content-placeholder {
  color: var(--c-text-muted);
  font-style: italic;
  padding: 16px;
  border: 1px dashed var(--c-border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
}

/* =========== REVIEWS =========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--c-border);
  transition: box-shadow var(--transition);
}
.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}
.review-card-name {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.review-card-date {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--c-gold);
  fill: var(--c-gold);
}
.review-text {
  font-size: 14px;
  color: var(--c-text-dark);
  line-height: 1.6;
}

.review-form-wrap {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 32px 36px;
  max-width: 600px;
  margin: 0 auto;
}
.review-form-wrap h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #fff;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 13px;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-field input,
.form-field textarea {
  background: var(--c-header);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(82, 54, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(82, 54, 240, 0.12);
}
.form-field textarea {
  min-height: 110px;
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--c-plus);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  animation: fade-in 0.4s ease;
}

/* =========== FAQ =========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(82, 54, 240, 0.4);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question-text {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--c-text-muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--c-btn-reg);
}
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--c-text-dark);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
}

/* =========== FOOTER =========== */
.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-logo p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--c-text-dark);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-payments,
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.footer-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--c-text-muted);
  transition:
    color var(--transition),
    border-color var(--transition);
}
.footer-badge:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 680px;
}
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(82, 54, 240, 0.1);
  border: 1px solid rgba(82, 54, 240, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #151928 0%, #1a1f35 50%, #151928 100%);
  border-top: 1px solid rgba(82, 54, 240, 0.35);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  animation: slide-up 0.5s ease;
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.widget-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget-bonus {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-gold);
}
.widget-label {
  font-size: 13px;
  color: var(--c-text-muted);
}
.widget-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--transition);
}
.widget-close:hover {
  color: #fff;
}
.widget-link {
  text-decoration: none;
  color: inherit;
}

/* Unused tracking elements */
.woocommerce-js {
  display: none;
}
.elementor-widget-spacer {
  height: 0;
}
.wp-caption {
  display: none;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.jetpack-related-posts {
  display: none;
}
.addtoany_list {
  display: none;
}
.sharedaddy {
  display: none;
}
.wc-shortcodes {
  display: none;
}
.yoast-schema {
  display: none;
}
.elementor-section {
  display: block;
}
.e-widget-spacer {
  display: none;
}

@media (max-width: 1024px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jackpots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo {
    grid-column: 1 / -1;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto auto;
    gap: 8px;
  }
  .header-nav {
    display: none;
  }
  .header-online {
    display: none;
  }
  .burger {
    display: flex;
  }
  .section {
    padding: 44px 0;
  }

  .proscons {
    grid-template-columns: 1fr;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: flex !important;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .screenshots-slider::-webkit-scrollbar {
    display: none;
  }
  .screenshots-slider .screenshot-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .slots-grid {
    display: none;
  }
  .slots-slider {
    display: flex !important;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .slots-slider::-webkit-scrollbar {
    display: none;
  }
  .slots-slider .slot-card {
    flex: 0 0 44%;
    scroll-snap-align: start;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-form-wrap {
    padding: 24px 18px;
  }
  .review-content {
    padding: 24px 18px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
  }

  .slot-machine {
    padding: 24px 16px;
  }
  .slot-reel {
    width: 66px;
    height: 66px;
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 26px;
  }
  .hero {
    min-height: 400px;
  }

  .sticky-widget {
    padding: 10px 12px;
  }
  .widget-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .widget-label {
    font-size: 11px;
  }
  .widget-bonus {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 12px;
  }
  .btn {
    padding: 9px 14px;
    font-size: 13px;
  }
  .btn--sm {
    padding: 6px 10px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto auto;
    gap: 8px;
  }
  .header-nav {
    display: none;
  }
  .header-online {
    display: none;
  }
  .header-buttons {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-nav .btn {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding: 44px 0;
  }

  .proscons {
    grid-template-columns: 1fr;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: flex !important;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .screenshots-slider::-webkit-scrollbar {
    display: none;
  }
  .screenshots-slider .screenshot-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .slots-grid {
    display: none;
  }
  .slots-slider {
    display: flex !important;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .slots-slider::-webkit-scrollbar {
    display: none;
  }
  .slots-slider .slot-card {
    flex: 0 0 44%;
    scroll-snap-align: start;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-form-wrap {
    padding: 24px 18px;
  }
  .review-content {
    padding: 24px 18px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
  }

  .slot-machine {
    padding: 24px 16px;
  }
  .slot-reel {
    width: 66px;
    height: 66px;
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 26px;
  }
  .hero {
    min-height: 400px;
  }

  .sticky-widget {
    padding: 10px 12px;
  }
  .widget-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .widget-label {
    font-size: 11px;
  }
  .widget-bonus {
    font-size: 13px;
  }
}
