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

:root {
  --c-nav: #362871;
  --c-nav-dark: #261e55;
  --c-nav-light: #4a37a0;
  --c-btn-play: #3b6b1b;
  --c-btn-play-hover: #2e5414;
  --c-btn-action: #e76213;
  --c-btn-action-hover: #c8520d;
  --c-bg: #bc1377;
  --c-bg-dark: #96105f;
  --c-bg-light: #d4178a;
  --c-white: #ffffff;
  --c-light: #f8f4ff;
  --c-text: #1a1033;
  --c-muted: #5a4e7a;
  --c-card: #ffffff;
  --c-border: rgba(54,40,113,0.18);
  --c-gold: #f5c842;
  --c-gold-dark: #d4a017;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(54,40,113,0.13);
  --shadow-lg: 0 8px 40px rgba(54,40,113,0.22);
  --font: 'Oswald', 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);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--c-btn-action); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-btn-action-hover); }

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

h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 700; line-height: 1.2; }

.x7k2m { display: none; }
.b9f3r { visibility: hidden; height: 0; overflow: hidden; }
.q1z8w { pointer-events: none; opacity: 0; position: absolute; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }

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

.box { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--play {
  background: var(--c-btn-play);
  color: var(--c-white);
  box-shadow: 0 2px 12px rgba(59,107,27,0.35);
}
.btn--play:hover { background: var(--c-btn-play-hover); color: var(--c-white); }

.btn--action {
  background: var(--c-btn-action);
  color: var(--c-white);
  box-shadow: 0 2px 12px rgba(231,98,19,0.35);
}
.btn--action:hover { background: var(--c-btn-action-hover); color: var(--c-white); }

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); color: var(--c-white); }

.btn--gold {
  background: var(--c-gold);
  color: var(--c-nav-dark);
  box-shadow: 0 2px 12px rgba(245,200,66,0.4);
}
.btn--gold:hover { background: var(--c-gold-dark); color: var(--c-nav-dark); }

.btn--sm { font-size: 13px; padding: 7px 16px; }
.btn--lg { font-size: 17px; padding: 14px 32px; }

/* HEADER */
.site-header {
  background: var(--c-nav);
  box-shadow: 0 2px 20px rgba(38,30,85,0.45);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.header-logo a { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 46px; width: auto; }
.header-logo-text { color: var(--c-white); font-size: 18px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.1; }
.header-logo-text span { color: var(--c-gold); display: block; font-size: 11px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

.header-jackpot {
  background: linear-gradient(90deg, var(--c-nav-dark) 0%, var(--c-nav-light) 100%);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-jackpot-label { color: var(--c-gold); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.header-jackpot-amount { color: var(--c-white); font-size: 20px; font-weight: 700; font-family: var(--font); }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, color 0.2s;
}
.header-nav a:hover { background: rgba(255,255,255,0.1); color: var(--c-white); }
.header-nav a svg { width: 14px; height: 14px; flex-shrink: 0; }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.burger:hover { background: rgba(255,255,255,0.1); }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-white); border-radius: 2px; transition: all 0.3s; }
.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); }

/* HERO */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-nav-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(1.2);
  z-index: 0;
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1.04); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38,30,85,0.92) 0%, rgba(38,30,85,0.6) 60%, rgba(38,30,85,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 60px;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,66,0.18);
  border: 1px solid var(--c-gold);
  border-radius: 20px;
  color: var(--c-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  text-balance: balance;
}
.hero-title span { color: var(--c-gold); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value { font-size: 22px; font-weight: 700; color: var(--c-gold); line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* BREADCRUMBS */
.breadcrumbs-wrap {
  background: var(--c-nav);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  font-size: 13px;
}
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--c-gold); }
.breadcrumbs li:last-child a, .breadcrumbs li:last-child span { color: var(--c-gold); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); font-size: 11px; }

/* MAIN CONTENT AREA */
.main-content { padding: 36px 0 48px; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

/* BLOCKS */
.block {
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.block--dark {
  background: var(--c-nav);
  color: var(--c-white);
}
.block--gold {
  background: linear-gradient(135deg, #2a1e60 0%, #3e2d8a 100%);
  border: 1px solid var(--c-gold);
  color: var(--c-white);
}

.block-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-nav);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}
.block-title svg { color: var(--c-btn-action); flex-shrink: 0; }
.block--dark .block-title, .block--gold .block-title { color: var(--c-white); }
.block-title-line {
  width: 4px;
  height: 22px;
  background: var(--c-btn-action);
  border-radius: 2px;
  flex-shrink: 0;
}

/* TOC */
.toc-list { list-style: none; }
.toc-list li { border-bottom: 1px solid var(--c-border); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.toc-list a:hover { color: var(--c-btn-action); padding-left: 4px; }
.toc-list a svg { color: var(--c-btn-action); flex-shrink: 0; }
.toc-num { min-width: 22px; height: 22px; background: var(--c-nav); color: var(--c-white); font-size: 11px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* DEMO BLOCK */
.demo-wrap {
  position: relative;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 14px;
}
.demo-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.demo-overlay {
  position: absolute;
  inset: 0;
  background: url('/img/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.demo-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38,30,85,0.72);
}
.demo-overlay-content { position: relative; z-index: 1; text-align: center; }
.demo-overlay-title { color: var(--c-white); font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.demo-play-btn {
  width: 72px;
  height: 72px;
  background: var(--c-btn-play);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 24px rgba(59,107,27,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.demo-play-btn:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(59,107,27,0.7); }
.demo-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* FEATURES TILES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.feature-tile {
  background: linear-gradient(135deg, var(--c-nav) 0%, var(--c-nav-light) 100%);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  color: var(--c-white);
  transition: transform 0.22s, box-shadow 0.22s;
}
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-tile svg { width: 36px; height: 36px; color: var(--c-gold); margin: 0 auto 12px; }
.feature-tile-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.feature-tile-desc { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4; font-weight: 300; }

/* PROS CONS */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pros-cons-col { border-radius: var(--radius-md); padding: 20px; }
.pros-col { background: rgba(59,107,27,0.08); border: 1.5px solid rgba(59,107,27,0.25); }
.cons-col { background: rgba(220,53,69,0.06); border: 1.5px solid rgba(220,53,69,0.22); }
.pros-cons-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.pros-heading { color: var(--c-btn-play); }
.cons-heading { color: #c0392b; }
.pros-cons-list { list-style: none; }
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.45;
}
.pros-cons-list li:last-child { border-bottom: none; }
.pros-cons-list li svg { flex-shrink: 0; margin-top: 2px; }
.pros-cons-list .check { color: var(--c-btn-play); }
.pros-cons-list .cross { color: #c0392b; }

/* STRATEGIES */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.strategy-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.strategy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--c-btn-action); }
.strategy-img {
  height: 140px;
  background: linear-gradient(135deg, var(--c-nav-dark) 0%, var(--c-nav-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.strategy-img img { width: 100%; height: 100%; object-fit: cover; }
.strategy-img svg { width: 64px; height: 64px; color: var(--c-gold); opacity: 0.7; }
.strategy-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.strategy-name { font-size: 16px; font-weight: 700; color: var(--c-nav); margin-bottom: 8px; }
.strategy-desc { font-size: 13px; color: var(--c-muted); line-height: 1.5; flex: 1; margin-bottom: 14px; }
.strategy-card .btn { align-self: flex-start; }

/* REVIEW CONTENT BLOCK */
.review-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
}
.review-content h2 { font-size: 22px; font-weight: 700; color: var(--c-nav); margin: 28px 0 12px; }
.review-content h3 { font-size: 18px; font-weight: 700; color: var(--c-nav); margin: 22px 0 10px; }
.review-content h4 { font-size: 16px; font-weight: 600; margin: 18px 0 8px; }
.review-content p { margin-bottom: 14px; }
.review-content ul, .review-content ol { margin: 0 0 14px 20px; }
.review-content ul li, .review-content ol li { margin-bottom: 6px; }
.review-content a { color: var(--c-btn-action); text-decoration: underline; }
.review-content a:hover { color: var(--c-btn-action-hover); }
.review-content strong { font-weight: 700; }
.review-content em { font-style: italic; }
.review-content blockquote {
  border-left: 4px solid var(--c-btn-action);
  margin: 18px 0;
  padding: 12px 18px;
  background: rgba(231,98,19,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--c-muted);
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px auto;
  display: block;
  overflow-x: auto;
}
.review-content table th, .review-content table td {
  border: 1.5px solid var(--c-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.review-content table th {
  background: var(--c-nav);
  color: var(--c-white);
  font-weight: 600;
}
.review-content table tr:nth-child(even) { background: rgba(54,40,113,0.04); }
.review-content img { border-radius: var(--radius-sm); margin: 14px 0; }

/* AUTHOR */
.author-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-nav-light);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-nav) 0%, var(--c-nav-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-photo svg { width: 48px; height: 48px; color: rgba(255,255,255,0.5); }
.author-info { flex: 1; min-width: 0; }
.author-name { font-size: 20px; font-weight: 700; color: var(--c-nav); margin-bottom: 4px; }
.author-title { font-size: 13px; color: var(--c-btn-action); font-weight: 500; margin-bottom: 10px; letter-spacing: 0.04em; }
.author-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.author-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--c-muted); }
.author-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.author-bio { font-size: 14px; color: var(--c-text); line-height: 1.6; margin-bottom: 14px; }
.author-links { display: flex; gap: 8px; flex-wrap: wrap; }
.author-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-nav);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}
.author-link:hover { background: var(--c-nav); color: var(--c-white); }
.author-link svg { width: 13px; height: 13px; }
.author-dates { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--c-border); }
.author-date { font-size: 12px; color: var(--c-muted); }
.author-date strong { color: var(--c-nav); }

/* FOOTER */
.site-footer {
  background: var(--c-nav-dark);
  color: rgba(255,255,255,0.8);
  margin-top: auto;
}
.footer-main {
  padding: 44px 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-logo-text { color: var(--c-white); font-size: 18px; font-weight: 700; margin-bottom: 14px; display: block; }
.footer-logo-text span { color: var(--c-gold); }
.footer-col-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-gold); margin-bottom: 14px; }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--c-white); }
.footer-trust { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-trust-badge {
  display: 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: 6px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  transition: background 0.2s;
}
.footer-trust-badge:hover { background: rgba(255,255,255,0.12); color: var(--c-white); }
.footer-trust-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-payments { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-payments-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.footer-payment-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}
.footer-socials { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-socials-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover { background: var(--c-btn-action); color: var(--c-white); border-color: var(--c-btn-action); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-legal { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-bottom-legal a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer-bottom-legal a:hover { color: var(--c-white); }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-provider { display: flex; align-items: center; gap: 8px; }
.footer-provider img { height: 28px; filter: brightness(0) invert(1); opacity: 0.55; }

/* STICKY WIDGET */
.casino-widget {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  width: 230px;
}
.casino-widget-inner {
  background: var(--c-nav);
  border: 1.5px solid var(--c-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.casino-widget-header {
  background: linear-gradient(90deg, var(--c-nav-dark) 0%, var(--c-nav-light) 100%);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.casino-widget-title { color: var(--c-gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.casino-widget-toggle { color: rgba(255,255,255,0.6); font-size: 18px; line-height: 1; transition: transform 0.25s; }
.casino-widget-toggle.open { transform: rotate(180deg); }
.casino-widget-body { overflow: hidden; transition: max-height 0.35s ease; max-height: 600px; }
.casino-widget-body.collapsed { max-height: 0; }
.casino-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.casino-item:last-child { border-bottom: none; }
.casino-rank { font-size: 18px; font-weight: 700; color: var(--c-gold); min-width: 24px; text-align: center; }
.casino-info { flex: 1; min-width: 0; }
.casino-name { font-size: 13px; font-weight: 600; color: var(--c-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.casino-bonus { font-size: 11px; color: rgba(255,255,255,0.55); }
.casino-stars { display: flex; gap: 1px; }
.casino-star { width: 10px; height: 10px; fill: var(--c-gold); }
.casino-item .btn { font-size: 11px; padding: 5px 10px; }
.casino-widget-cta { padding: 12px 14px; }
.casino-widget-cta .btn { width: 100%; }

/* GAME SPECS TABLE */
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table tr { border-bottom: 1px solid var(--c-border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 9px 12px; text-align: left; }
.specs-table td:first-child { font-weight: 600; color: var(--c-muted); width: 45%; }
.specs-table td:last-child { color: var(--c-text); font-weight: 500; }

/* SIMILAR GAMES */
.similar-games { display: flex; gap: 8px; flex-wrap: wrap; }
.similar-game-tag {
  background: rgba(54,40,113,0.08);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--c-nav);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.similar-game-tag:hover { background: var(--c-nav); color: var(--c-white); }

/* RATING STARS */
.rating-display { display: flex; align-items: center; gap: 8px; }
.rating-stars { display: flex; gap: 2px; }
.rating-star { width: 18px; height: 18px; fill: var(--c-gold); }
.rating-star.half { fill: url(#halfGold); }
.rating-star.empty { fill: rgba(0,0,0,0.12); }
.rating-score { font-size: 22px; font-weight: 700; color: var(--c-nav); }
.rating-count { font-size: 13px; color: var(--c-muted); }

/* FAQ */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-nav);
  user-select: none;
}
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-text);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 16px; }

/* MOBILE NAV */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; }
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--c-nav-dark);
  z-index: 1001;
  overflow-y: auto;
  transition: left 0.35s cubic-bezier(.4,0,.2,1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav.active { left: 0; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-close { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; padding: 4px; }
.mobile-nav-close svg { width: 22px; height: 22px; }
.mobile-nav-links { padding: 16px 0; flex: 1; }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-links a:hover { background: rgba(255,255,255,0.07); color: var(--c-white); }
.mobile-nav-links a svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-nav-cta { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-cta .btn { width: 100%; }

/* ANIMATIONS */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(245,200,66,0); }
}
@keyframes count-up { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn--play { animation: pulse-gold 2.5s infinite; }
.btn--play:hover { animation: none; }

.anim-up { animation: fade-in-up 0.6s ease both; }
.anim-up:nth-child(2) { animation-delay: 0.1s; }
.anim-up:nth-child(3) { animation-delay: 0.2s; }
.anim-up:nth-child(4) { animation-delay: 0.3s; }

.shimmer-text {
  background: linear-gradient(90deg, var(--c-gold-dark) 25%, var(--c-gold) 50%, var(--c-gold-dark) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* WP COMPAT HIDDEN */
.wp-block-separator { border: none; height: 1px; background: var(--c-border); margin: 14px 0; }
.entry-meta, .post-meta { font-size: 12px; color: var(--c-muted); }
.wp-caption { max-width: 100%; }
.aligncenter { text-align: center; margin: 0 auto; }
.alignleft { float: left; margin-right: 14px; }
.alignright { float: right; margin-left: 14px; }

/* INFO PAGES */
.info-content { max-width: 820px; margin: 0 auto; background: var(--c-card); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow); }
.info-content h1 { font-size: 28px; font-weight: 700; color: var(--c-nav); margin-bottom: 20px; }
.info-content h2 { font-size: 20px; font-weight: 700; color: var(--c-nav); margin: 24px 0 10px; }
.info-content p { font-size: 15px; line-height: 1.7; margin-bottom: 12px; color: var(--c-text); }
.info-content ul, .info-content ol { margin: 0 0 12px 20px; }
.info-content li { font-size: 15px; line-height: 1.6; margin-bottom: 6px; color: var(--c-text); }
.info-content h3 { font-size: 17px; font-weight: 600; color: var(--c-nav-light); margin: 16px 0 8px; }
.info-content a { color: var(--c-btn-action); text-decoration: underline; }
.info-content strong { font-weight: 700; color: var(--c-nav); }
.info-content table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: 14px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); overflow: hidden; }
.info-content table th { background: var(--c-nav); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
.info-content table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
.info-content table tr:last-child td { border-bottom: none; }
.info-content table tr:nth-child(even) td { background: rgba(54,40,113,0.04); }
.info-content table a { word-break: break-all; }
@media (max-width: 599px) {
  .info-content { padding: 22px 16px; }
  .info-content h1 { font-size: 22px; }
  .info-content h2 { font-size: 17px; }
  .info-content table th, .info-content table td { padding: 8px 10px; font-size: 13px; }
}

/* TEXT CONTENT BLOCK — base-info pages */
.content.box { background: var(--c-card); border-radius: var(--radius-lg); padding: 8px; box-shadow: var(--shadow-lg); margin: 24px 0 32px; }
.text { padding: 32px 40px; }
.text h1 { font-size: 32px; font-weight: 700; color: var(--c-nav); margin-bottom: 20px; border-bottom: 3px solid var(--c-nav); padding-bottom: 14px; }
.text h2 { font-size: 22px; font-weight: 700; color: var(--c-nav); margin: 28px 0 10px; }
.text h3 { font-size: 18px; font-weight: 600; color: var(--c-nav-light); margin: 18px 0 8px; }
.text p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; color: var(--c-text); }
.text ul, .text ol { margin: 0 0 14px 22px; }
.text li { font-size: 15px; line-height: 1.65; margin-bottom: 7px; color: var(--c-text); }
.text a { color: var(--c-btn-action); text-decoration: underline; }
.text a:hover { color: var(--c-btn-action-hover); }
.text strong { font-weight: 700; color: var(--c-nav); }
.text em { font-style: italic; }
.text table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: 14px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); overflow: hidden; }
.text table th { background: var(--c-nav); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; letter-spacing: 0.03em; }
.text table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
.text table tr:last-child td { border-bottom: none; }
.text table tr:nth-child(even) td { background: rgba(54,40,113,0.04); }
.text table a { word-break: break-all; }
.text blockquote { border-left: 4px solid var(--c-nav-light); padding: 10px 18px; margin: 16px 0; background: rgba(54,40,113,0.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }

/* CONTACT FORM */
.contact-form { max-width: 560px; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--c-nav); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-light);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-nav-light);
  box-shadow: 0 0 0 3px rgba(74,55,160,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
@media (max-width: 599px) {
  .text { padding: 20px 16px; }
  .text h1 { font-size: 24px; }
  .text h2 { font-size: 18px; }
  .text table { font-size: 13px; }
  .text table th, .text table td { padding: 8px 10px; }
}

/* RESPONSIVE */
@media (max-width: 1099px) {
  .content-grid { grid-template-columns: 1fr; }
  .casino-widget { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .header-jackpot { display: none; }
  .hero-stats { gap: 16px; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .strategies-grid { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-links { justify-content: center; }
  .author-dates { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .block { padding: 20px 16px; }
  .hero-section { min-height: 380px; }
  .hero-content { padding: 48px 0 40px; }
  .demo-actions { flex-direction: column; }
  .demo-actions .btn { width: 100%; }
}

@media (max-width: 479px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .header-cta .btn:first-child { display: none; }
}
