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

:root {
  --c-nav: #362871;
  --c-nav-dark: #271e57;
  --c-nav-light: #4a37a0;
  --c-btn-orange: #e76213;
  --c-btn-orange-h: #d4540f;
  --c-btn-green: #3b6b1b;
  --c-btn-green-h: #2e5414;
  --c-bg: #bc1377;
  --c-bg-dark: #a01065;
  --c-bg-light: #d0198a;
  --c-text-light: #ffffff;
  --c-text-muted: rgba(255,255,255,0.75);
  --c-gold: #f5c842;
  --c-gold-dark: #d4a820;
  --c-card-bg: rgba(255,255,255,0.06);
  --c-card-border: rgba(255,255,255,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Oswald', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text-light);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
ul, ol { list-style: none; }

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

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

.box {
  background: var(--c-card-bg);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--c-btn-green); color: #fff; }
.btn--green:hover { background: var(--c-btn-green-h); color: #fff; }
.btn--orange { background: var(--c-btn-orange); color: #fff; }
.btn--orange:hover { background: var(--c-btn-orange-h); color: #fff; }
.btn--gold { background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark)); color: #1a0a00; font-weight: 700; }
.btn--gold:hover { background: linear-gradient(135deg, #ffd94a, var(--c-gold)); color: #1a0a00; }
.btn--outline { background: transparent; border: 2px solid var(--c-gold); color: var(--c-gold); }
.btn--outline:hover { background: var(--c-gold); color: #1a0a00; }
.btn--sm { font-size: 0.82rem; padding: 7px 14px; }
.btn--lg { font-size: 1.05rem; padding: 14px 32px; border-radius: var(--radius-md); }
.btn--xl { font-size: 1.2rem; padding: 18px 42px; border-radius: var(--radius-md); }

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title svg { flex-shrink: 0; }

.b3f7a { display: none; }
.x9k2m { visibility: hidden; position: absolute; }
.qr81p { opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

/* ===== HEADER ===== */
#xb9a2-header {
  background: var(--c-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-bottom: 2px solid var(--c-nav-light);
}

.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; }
.header-logo img { height: 52px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.header-nav a:hover, .header-nav a.active { background: var(--c-nav-light); color: #fff; }
.header-nav a svg { flex-shrink: 0; }

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

.jackpot-ticker {
  background: linear-gradient(135deg, #1a0a00, #2e1a00);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--c-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.jackpot-ticker .jt-val { font-size: 0.95rem; font-weight: 700; }

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

/* ===== HERO ===== */
#xb9a2-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-nav-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/hero-banner.png');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(54,40,113,0.82) 0%, rgba(54,40,113,0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,66,0.15);
  border: 1px solid var(--c-gold);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: var(--c-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 14px;
  text-transform: uppercase;
}

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

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

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stat-val { font-size: 1.3rem; font-weight: 700; color: var(--c-gold); }
.hero-stat-lbl { font-size: 0.72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BREADCRUMBS ===== */
#xb9a2-breadcrumbs {
  background: var(--c-nav-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-gold); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }
.breadcrumbs .current { color: var(--c-gold); }

/* ===== MAIN CONTENT AREA ===== */
#xb9a2-main { flex: 1; padding: 28px 0; }

/* ===== TOC ===== */
#xb9a2-toc {
  background: rgba(54,40,113,0.5);
  border: 1px solid var(--c-nav-light);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
}
.toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px;
}
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  border: 1px solid transparent;
}
.toc-list li a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--c-gold);
  border-color: rgba(245,200,66,0.2);
}
.toc-list li a svg { flex-shrink: 0; opacity: 0.7; }
.toc-list li a:hover svg { opacity: 1; }

/* ===== DEMO BLOCK ===== */
#xb9a2-demo {
  background: rgba(54,40,113,0.5);
  border: 1px solid var(--c-nav-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--c-nav-light);
  margin-bottom: 16px;
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-frame-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(54,40,113,0.9), rgba(20,14,45,0.95));
  cursor: pointer;
  transition: background var(--transition);
}
.demo-frame-placeholder:hover { background: linear-gradient(135deg, rgba(74,55,160,0.9), rgba(30,20,65,0.95)); }
.demo-frame-placeholder svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, calc(-50% - 20px)); }
.demo-frame-placeholder span {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.demo-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-info {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.demo-info strong { color: var(--c-gold); }

/* ===== MOBILE APP ===== */
#xb9a2-app {
  background: linear-gradient(135deg, rgba(54,40,113,0.85), rgba(39,30,87,0.85));
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.app-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}
.phone-frame {
  position: relative;
  width: 160px;
  margin: 0 auto;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 160px;
  height: 320px;
  border: 5px solid var(--c-nav-light);
  border-radius: 24px;
  background: #000;
  position: absolute;
  top: 0; left: 0;
  box-shadow: 0 0 30px rgba(54,40,113,0.6);
}
.phone-frame::after {
  content: '';
  display: block;
  width: 40px;
  height: 6px;
  background: var(--c-nav-light);
  border-radius: 3px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.phone-frame img {
  width: 150px;
  height: 310px;
  object-fit: cover;
  border-radius: 19px;
  position: relative;
  z-index: 2;
  margin: 5px auto;
}

.app-data-table {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--c-nav-light);
  border-radius: 12px;
}
.app-data-table table {
  width: 100%;
  min-width: 300px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  margin-bottom: 0;
}
.app-data-table table th,
.app-data-table table td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.app-data-table table th {
  background: var(--c-nav-dark);
  color: var(--c-gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.app-data-table table td { color: var(--c-text-muted); }
.app-data-table table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.app-data-table table tr:last-child td { border-bottom: none; }
.app-data-table table td strong { color: #fff; font-weight: 600; }

.app-download-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== CONTENT (review) ===== */
#xb9a2-content {
  background: linear-gradient(135deg, rgba(54,40,113,0.85), rgba(39,30,87,0.85));
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
#xb9a2-content .text-body {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
#xb9a2-content .text-body h2 {
  font-size: 1.5rem;
  color: var(--c-gold);
  margin: 26px 0 14px;
  text-transform: uppercase;
  background: var(--c-nav-dark);
  border-left: 4px solid var(--c-gold);
  padding: 10px 16px;
  border-radius: 6px;
}
#xb9a2-content .text-body h3 {
  font-size: 1.2rem;
  color: var(--c-gold);
  margin: 20px 0 10px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--c-gold);
  padding: 7px 14px;
  border-radius: 5px;
}
#xb9a2-content .text-body h2:first-child,
#xb9a2-content .text-body h3:first-child { margin-top: 0; }
#xb9a2-content .text-body h4 { font-size: 1rem; color: var(--c-text-light); margin: 14px 0 6px; }
#xb9a2-content .text-body p { margin-bottom: 14px; color: rgba(255,255,255,0.87); font-weight: 300; line-height: 1.7; }
#xb9a2-content .text-body ul,
#xb9a2-content .text-body ol { margin: 0 0 14px 20px; }
#xb9a2-content .text-body ul { list-style: disc; }
#xb9a2-content .text-body ol { list-style: decimal; }
#xb9a2-content .text-body li { margin-bottom: 6px; color: rgba(255,255,255,0.85); font-weight: 300; line-height: 1.6; }
#xb9a2-content .text-body a { color: var(--c-gold); text-decoration: underline; }
#xb9a2-content .text-body a:hover { color: #fff; }
#xb9a2-content .text-body strong,
#xb9a2-content .text-body b { color: #fff; font-weight: 600; }
#xb9a2-content .text-body em { font-style: italic; }
#xb9a2-content .text-body blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 10px 16px;
  margin: 14px 0;
  background: rgba(245,200,66,0.05);
  color: var(--c-text-muted);
  font-style: italic;
}
#xb9a2-content .text-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  display: block;
  overflow-x: auto;
}
#xb9a2-content .text-body table th,
#xb9a2-content .text-body table td {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 12px;
  text-align: left;
}
#xb9a2-content .text-body table th { background: var(--c-nav); color: var(--c-gold); }
#xb9a2-content .text-body table td { color: rgba(255,255,255,0.85); }
#xb9a2-content .text-body img { border-radius: var(--radius-sm); margin: 12px 0; }
#xb9a2-content .text-body hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 22px 0; }

/* ===== AUTHOR ===== */
#xb9a2-author {
  background: rgba(54,40,113,0.5);
  border: 1px solid var(--c-nav-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.author-inner {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.author-avatar {
  flex-shrink: 0;
}
.author-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
}
.author-info { flex: 1; }
.author-name { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.author-title { font-size: 0.82rem; color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 4px; }
.author-location { font-size: 0.8rem; color: var(--c-text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.author-bio { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 12px; font-weight: 300; }
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.author-meta span { display: flex; align-items: center; gap: 4px; }
.author-social { display: flex; gap: 8px; }
.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.author-social a:hover { background: var(--c-gold); color: #1a0a00; border-color: var(--c-gold); }
.author-dates { font-size: 0.75rem; color: var(--c-text-muted); margin-top: 10px; }
.author-dates span { margin-right: 14px; }

/* ===== SIMILAR GAMES ===== */
#xb9a2-similar {
  margin-bottom: 24px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.game-card {
  background: rgba(54,40,113,0.55);
  border: 1px solid var(--c-nav-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }
.game-card-img { position: relative; padding-top: 70%; overflow: hidden; background: #000; }
.game-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-body { padding: 12px; }
.game-card-name { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.game-card-desc { font-size: 0.75rem; color: var(--c-text-muted); margin-bottom: 10px; line-height: 1.5; font-weight: 300; }
.game-card-btns { display: flex; gap: 6px; }
.game-card-btns .btn { flex: 1; padding: 6px 8px; font-size: 0.75rem; }

/* ===== FOOTER ===== */
#xb9a2-footer {
  background: var(--c-nav);
  border-top: 2px solid var(--c-nav-light);
  padding: 36px 0 20px;
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand img { height: 44px; margin-bottom: 10px; }
.footer-brand p { font-size: 0.78rem; color: var(--c-text-muted); line-height: 1.6; font-weight: 300; }
.footer-col-title { font-size: 0.8rem; font-weight: 700; color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }
.footer-links a {
  display: block;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: var(--c-text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--c-gold); color: #1a0a00; border-color: var(--c-gold); }
.footer-email { font-size: 0.82rem; color: var(--c-text-muted); display: flex; align-items: center; gap: 6px; }
.footer-email a:hover { color: var(--c-gold); }

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

.footer-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.footer-logos img { height: 28px; object-fit: contain; opacity: 0.7; filter: grayscale(20%); transition: opacity var(--transition); }
.footer-logos img:hover { opacity: 1; }

.footer-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--c-text-muted);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--transition);
}
.trust-badge:hover { border-color: var(--c-gold); color: var(--c-gold); }
.trust-badge svg { flex-shrink: 0; }

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--c-gold); }
.footer-flag { display: inline-block; font-size: 1.1rem; vertical-align: middle; }

/* ===== STICKY WIDGET ===== */
#xb9a2-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--c-nav-dark) 0%, #1a0a00 100%);
  border-top: 2px solid var(--c-gold);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.widget-text { font-size: 0.9rem; color: var(--c-text-light); font-weight: 500; }
.widget-text span { color: var(--c-gold); font-weight: 700; }
.widget-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover { color: #fff; }

body.widget-open { padding-bottom: 70px; }

/* ===== FAQ ===== */
#xb9a2-faq { margin-bottom: 24px; }
.faq-item {
  background: rgba(54,40,113,0.45);
  border: 1px solid var(--c-nav-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-question.open { background: rgba(255,255,255,0.06); color: var(--c-gold); }
.faq-icon { transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 18px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 500px;
  padding: 0 18px 16px;
}

/* ===== ANIMATED ELEMENTS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,200,66,0); }
}
@keyframes jackpot-tick {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.anim-fadeup { animation: fadeInUp 0.5s ease both; }
.btn--green.pulse { animation: pulse-gold 2.2s infinite; }
.jt-val { animation: jackpot-tick 1.5s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--c-nav); padding: 16px; border-bottom: 1px solid var(--c-nav-light); gap: 6px; z-index: 999; }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 10px 14px; font-size: 0.9rem; border-radius: var(--radius-sm); }
  .burger { display: flex; }
  .jackpot-ticker { display: none; }
  .header-nav .header-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 8px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--c-nav-light);
  }
  .header-nav .header-cta .btn { width: 100%; }
  .app-inner { grid-template-columns: 1fr; }
  .phone-frame { margin-bottom: 20px; }
}

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-content { padding: 40px 0; }
  .hero-stats { gap: 14px; }
  .author-inner { flex-direction: column; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 12px; }
  #xb9a2-widget { flex-direction: column; text-align: center; padding: 10px 14px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}

/* ===== WP DECOYS ===== */
.wp-block-group { display: contents; }
.wp-site-blocks { display: contents; }
.entry-content { display: contents; }
.elementor-section-wrap { display: contents; }
.elementor-widget-wrap { display: contents; }

/* ===== UNUSED UTILITY ===== */
.u-visually-hidden-mp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.x7k3-reserved-block { display: none !important; }
.yoast-breadcrumb-trail { display: none; }
.nav-previous, .nav-next { display: none; }
