:root {
  --c-brand: #8d0d0f;
  --c-brand-dark: #6b0a0b;
  --c-brand-light: #a51214;
  --c-btn-dark: #363636;
  --c-btn-dark-hover: #4a4a4a;
  --c-btn-green: #29b149;
  --c-btn-green-hover: #22913b;
  --c-bg: #1d1d1d;
  --c-bg-2: #252525;
  --c-bg-3: #2e2e2e;
  --c-bg-card: #1a1a1a;
  --c-text: #f0f0f0;
  --c-text-muted: #aaaaaa;
  --c-border: #3a3a3a;
  --c-gold: #d4a017;
  --c-gold-light: #f0c040;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --transition: 0.22s ease;
}

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

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

body {
  font-family: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
  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-gold-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold);
}

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

.x7f2a {
  display: none;
}
.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}
.elementor-section {
  display: block;
}

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

.g-sect {
  padding: 60px 0;
}

.g-sect--sm {
  padding: 40px 0;
}

.g-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 10px;
  text-wrap: balance;
}

.g-subtitle {
  text-align: center;
  color: var(--c-text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}

.g-title span {
  color: var(--c-gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-dark {
  background: var(--c-btn-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--c-btn-dark-hover);
  color: #fff;
  box-shadow: 0 4px 14px rgba(54, 54, 54, 0.5);
}

.btn-green {
  background: var(--c-btn-green);
  color: #fff;
}

.btn-green:hover {
  background: var(--c-btn-green-hover);
  color: #fff;
  box-shadow: 0 4px 14px rgba(41, 177, 73, 0.45);
}

.btn-brand {
  background: var(--c-brand);
  color: #fff;
}

.btn-brand:hover {
  background: var(--c-brand-light);
  color: #fff;
  box-shadow: 0 4px 14px rgba(141, 13, 15, 0.45);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

.card-block {
  background: var(--c-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.card-block--gold {
  border-color: var(--c-gold);
}

.sect-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-brand), var(--c-gold));
  margin: 0 auto 32px auto;
  border-radius: 2px;
}

.h-wrap {
  background: var(--c-brand);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(141, 13, 15, 0.5);
}

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

.h-logo a {
  display: flex;
  align-items: center;
}

.h-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.h-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.h-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}

.h-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.h-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.h-online {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  white-space: nowrap;
}

.h-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-btn-green);
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

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

.h-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

.h-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-brand-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.h-mobile-nav.is-open {
  display: flex;
}

.h-mobile-nav a {
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
  font-weight: 500;
}

.h-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/winzBan.png") center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(141, 13, 15, 0.78) 0%,
    rgba(29, 29, 29, 0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--c-gold);
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero-title em {
  color: var(--c-gold-light);
  font-style: normal;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-bonus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-bonus-amount {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-bonus-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-bonus-fs {
  color: var(--c-gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* JACKPOT */
.jackpot-wrap {
  background: linear-gradient(135deg, var(--c-brand-dark) 0%, #3a0e10 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 8px 40px rgba(141, 13, 15, 0.3);
}

.jackpot-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.jackpot-amount {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--c-gold-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(240, 192, 64, 0.4);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}

.jackpot-currency {
  font-size: 1.2rem;
  color: var(--c-gold);
  margin-bottom: 20px;
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.jackpot-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 16px 12px;
  border: 1px solid rgba(212, 160, 23, 0.15);
}

.jackpot-item-name {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}

.jackpot-item-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-gold-light);
  font-variant-numeric: tabular-nums;
}

/* MIRRORS */
.mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.mirrors-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-btn-green);
  font-weight: 600;
}

.mirrors-time svg {
  flex-shrink: 0;
}

.mirrors-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.92rem;
}

.mirrors-table th {
  background: var(--c-brand);
  color: #fff;
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.mirrors-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle;
}

.mirrors-table tr:last-child td {
  border-bottom: none;
}

.mirrors-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.mirrors-table tr:hover td {
  background: rgba(141, 13, 15, 0.08);
}

.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.mirror-status--ok {
  background: rgba(41, 177, 73, 0.15);
  color: var(--c-btn-green);
  border: 1px solid rgba(41, 177, 73, 0.3);
}

.mirror-status--ok::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-btn-green);
  border-radius: 50%;
}

.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);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.screenshot-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.screenshot-item:hover img {
  transform: scale(1.04);
}

.screenshot-cap {
  background: var(--c-bg-card);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

/* SLOTS */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.slot-card {
  background: var(--c-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  cursor: pointer;
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--c-gold);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.slot-card-body {
  padding: 10px;
  text-align: center;
}

.slot-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slot-provider {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}

/* MINI SLOT GAME */
.minislot-wrap {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--c-gold);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.15);
}

.minislot-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-gold-light);
  margin-bottom: 24px;
}

.minislot-reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.minislot-reel {
  width: 80px;
  height: 90px;
  background: #0a0a0a;
  border-radius: var(--radius-sm);
  border: 2px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.minislot-reel.spinning {
  animation: reel-spin 0.12s linear infinite;
}

@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.minislot-btn {
  background: linear-gradient(135deg, var(--c-brand), var(--c-brand-light));
  color: #fff;
  border: none;
  padding: 14px 44px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(141, 13, 15, 0.4);
}

.minislot-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--c-brand-light), var(--c-brand));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(141, 13, 15, 0.55);
}

.minislot-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.minislot-result {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  display: none;
}

.minislot-result.win {
  display: block;
  background: rgba(41, 177, 73, 0.15);
  border: 1px solid var(--c-btn-green);
  color: var(--c-btn-green);
}

.minislot-result.lose {
  display: block;
  background: rgba(141, 13, 15, 0.12);
  border: 1px solid var(--c-brand);
  color: #f07070;
}

.minislot-win-amount {
  font-size: 1.8rem;
  color: var(--c-gold-light);
  font-weight: 900;
  display: block;
  margin: 6px 0 10px;
}

/* PROMO CODE */
.promo-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.promo-card {
  background: var(--c-bg-card);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 0;
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.12);
}

.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(41, 177, 73, 0.15);
  border: 1px solid rgba(41, 177, 73, 0.4);
  color: var(--c-btn-green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.promo-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-btn-green);
  animation: blink 1.4s infinite;
}

.promo-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--c-gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: 8px;
}

.promo-code-display {
  background: rgba(212, 160, 23, 0.06);
  border: 2px dashed var(--c-gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
  position: relative;
}

.promo-code-text {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--c-gold-light);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.promo-bonus-desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.promo-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.copy-success {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-btn-green);
  margin-top: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}

.copy-success.visible {
  opacity: 1;
}

/* CONTENT/REVIEW */
.review-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--c-bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.review-meta-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}

.review-meta-name {
  font-weight: 700;
  color: var(--c-text);
  font-size: 1rem;
}

.review-meta-role {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.review-meta-link {
  margin-top: 4px;
  font-size: 0.78rem;
}

.content-block {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  color: var(--c-text);
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.content-block h2 {
  font-size: 1.5rem;
  color: var(--c-gold-light);
}
.content-block h3 {
  font-size: 1.25rem;
}
.content-block h4 {
  font-size: 1.1rem;
}

.content-block p {
  margin-bottom: 14px;
}
.content-block strong {
  color: var(--c-text);
  font-weight: 700;
}
.content-block em {
  font-style: italic;
}

.content-block a {
  color: var(--c-gold-light);
}
.content-block a:hover {
  color: var(--c-gold);
  text-decoration: underline;
}

.content-block ul,
.content-block ol {
  margin: 0 0 16px 24px;
  padding: 0;
}

.content-block ul li {
  list-style: disc;
}
.content-block ol li {
  list-style: decimal;
}

.content-block li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
  overflow-x: auto;
  display: block;
}

.content-block table th {
  background: var(--c-brand);
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  vertical-align: top;
}

.content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.content-block blockquote {
  border-left: 4px solid var(--c-gold);
  margin: 20px 0;
  padding: 12px 20px;
  background: rgba(212, 160, 23, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.content-block img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.content-block code {
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.88em;
  font-family: monospace;
}

.content-block pre {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin-bottom: 16px;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--c-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 20px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.review-card:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-brand);
  flex-shrink: 0;
}

.review-card-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-text);
}

.review-card-date {
  font-size: 0.76rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
}

.review-text {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.review-form-wrap {
  background: var(--c-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 28px;
}

.review-form-wrap h3 {
  font-size: 1.15rem;
  color: var(--c-gold-light);
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--c-text);
  font-size: 0.95rem;
  font-family: inherit;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.form-field textarea {
  min-height: 120px;
}

.form-success {
  display: none;
  background: rgba(41, 177, 73, 0.12);
  border: 1px solid rgba(41, 177, 73, 0.4);
  color: var(--c-btn-green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.form-success.visible {
  display: block;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.is-open {
  border-color: var(--c-gold);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--c-bg-card);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  transition: background var(--transition);
  user-select: none;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-gold);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-item.is-open .faq-a {
  padding: 14px 20px 18px;
  max-height: 400px;
}

/* FOOTER */
.f-wrap {
  background: var(--c-brand-dark);
  padding: 48px 0 24px;
  margin-top: 0;
  border-top: 3px solid var(--c-brand-light);
}

.f-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.f-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.f-logo img {
  height: 40px;
  object-fit: contain;
  margin-bottom: 14px;
}

.f-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.f-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.f-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.f-links li a:hover {
  color: #fff;
}

.f-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.f-payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.f-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.f-provider-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.f-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 20px;
}

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

.f-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 700px;
}

.f-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.widget-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--c-brand-dark), var(--c-brand));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  gap: 16px;
  flex-wrap: wrap;
}

.widget-bottom-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
}

.widget-bottom-text strong {
  color: var(--c-gold-light);
  font-weight: 700;
  display: block;
  font-size: 1rem;
}

.widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}

.widget-close:hover {
  color: #fff;
}

.widget-bottom a {
  text-decoration: none;
}

.badge-new {
  display: inline-block;
  background: var(--c-gold);
  color: #1a1a1a;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 6px;
  vertical-align: middle;
}

body {
  padding-bottom: 72px;
}

.sect-bg-alt {
  background: var(--c-bg-2);
}

.sect-bg-dark {
  background: var(--c-bg-card);
}

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

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.t-center {
  text-align: center;
}

.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}

.wp-block-columns {
  display: block;
}
.wp-block-image {
  display: inline-block;
}
.has-text-align-center {
  text-align: center;
}

.qz9r2 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.m4b8p {
  display: none;
  pointer-events: none;
}
.lk7x1 {
  opacity: 0;
  position: absolute;
  top: -9999px;
}

@media (max-width: 1024px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .f-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .jackpot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .g-sect {
    padding: 40px 0;
  }

  .h-nav {
    display: none;
  }
  .h-burger {
    display: flex;
  }
  .h-inner {
    grid-template-columns: auto auto;
  }

  .hero-bonus-card {
    display: none;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .f-top {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jackpot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-actions {
    flex-direction: column;
    align-items: center;
  }

  .h-actions .btn:first-child {
    display: flex;
  }
  .h-actions .btn:last-child {
    display: flex;
  }

  .minislot-reel {
    width: 66px;
    height: 76px;
    font-size: 2.2rem;
  }

  .mirrors-table th,
  .mirrors-table td {
    padding: 9px 12px;
  }

  .widget-bottom {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jackpot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .h-online {
    display: none;
  }
}
