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

:root {
  --clr-header: #400d00;
  --clr-header-dark: #2a0800;
  --clr-btn-green: #66cc39;
  --clr-btn-gold: #f4b911;
  --clr-bg: #f46c2e;
  --clr-bg-alt: #e85a1a;
  --clr-text-light: #fff8f5;
  --clr-text-dark: #1a0800;
  --clr-accent: #66cc39;
  --clr-card-bg: rgba(64,13,0,0.82);
  --clr-card-border: rgba(244,185,17,0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(64,13,0,0.35);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-btn-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-gold); }

.x7k2p { display: none; visibility: hidden; }
.wp-block-unstyled { font-family: inherit; }
.entry-content-x { margin: 0; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.2; color: var(--clr-text-light); }
h1 { font-size: clamp(1.8rem,4vw,2.8rem); }
h2 { font-size: clamp(1.4rem,3vw,2rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.1rem,2.5vw,1.4rem); margin-bottom: .5rem; }
p { margin-bottom: 1rem; }

/* ─── LAYOUT ─── */
.bx-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ─── HEADER ─── */
.hdr-outer {
  background: var(--clr-header);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; gap: 12px; flex-wrap: wrap;
}
.hdr-logo img { height: 48px; width: auto; }
.hdr-jackpot {
  display: flex; align-items: center; gap: 8px;
  background: rgba(244,185,17,0.15);
  border: 1px solid var(--clr-btn-gold);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  font-size: .78rem; font-weight: 700; color: var(--clr-btn-gold);
  letter-spacing: .02em;
}
.hdr-jackpot-val { font-size: 1rem; color: #fff; }
.hdr-nav { display: flex; align-items: center; gap: 6px; }
.hdr-nav a {
  display: flex; align-items: center; gap: 5px;
  color: #ffd9c4; font-size: .82rem; font-weight: 600;
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.hdr-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hdr-nav svg { width: 16px; height: 16px; flex-shrink: 0; }
.hdr-btns { display: flex; align-items: center; gap: 8px; }

/* ─── BUTTONS ─── */
.btn-play {
  background: var(--clr-btn-gold);
  color: #1a0800; font-weight: 800; font-size: .9rem;
  padding: 10px 22px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,185,17,0.5); filter: brightness(1.08); color: #1a0800; }
.btn-bonus {
  background: var(--clr-btn-green);
  color: #0e2600; font-weight: 800; font-size: .9rem;
  padding: 10px 22px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}
.btn-bonus:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(102,204,57,0.45); filter: brightness(1.08); color: #0e2600; }
.btn-outline {
  background: transparent; border: 2px solid var(--clr-btn-gold);
  color: var(--clr-btn-gold); font-weight: 700; font-size: .88rem;
  padding: 9px 20px; border-radius: var(--radius-sm); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--clr-btn-gold); color: #1a0800; }

/* ─── BURGER ─── */
.burger-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 6px;
}
.burger-btn span {
  display: block; width: 100%; height: 2px; background: #fff;
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav {
  display: none; flex-direction: column; background: var(--clr-header-dark);
  padding: 12px 16px; gap: 4px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  display: flex; align-items: center; gap: 8px; color: #ffd9c4; font-weight: 600;
  padding: 10px 12px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mob-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mob-nav svg { width: 18px; height: 18px; }
.mob-jackpot {
  display: flex; align-items: center; gap: 8px;
  background: rgba(244,185,17,0.15);
  border: 1px solid var(--clr-btn-gold);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: .8rem; font-weight: 700; color: var(--clr-btn-gold);
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.mob-jackpot .hdr-jackpot-val { font-size: 1rem; color: #fff; margin-left: auto; }
.mob-btns { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.mob-btns .btn-play, .mob-btns .btn-bonus { width: 100%; justify-content: center; }

/* ─── HERO ─── */
.hero-section {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  background: url('/img/hero-banner.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(64,13,0,0.92) 0%, rgba(64,13,0,0.6) 60%, rgba(64,13,0,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 580px; padding: 60px 16px;
}
.hero-content .bx-wrap { padding: 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(244,185,17,0.18); border: 1px solid var(--clr-btn-gold);
  color: var(--clr-btn-gold); font-size: .75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; letter-spacing: .04em; text-transform: uppercase;
}
.hero-title { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.hero-title span { color: var(--clr-btn-gold); }
.hero-desc { font-size: 1.05rem; color: #ffd9c4; margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; align-items: center; gap: 10px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 20px; height: 20px; fill: var(--clr-btn-gold); }
.hero-rating-text { font-size: .85rem; color: #ffd9c4; }
.hero-rating-text strong { color: #fff; }

/* ─── BREADCRUMBS ─── */
.breadcrumbs-wrap {
  background: rgba(64,13,0,0.65);
  padding: 10px 0;
}
.breadcrumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .82rem; }
.breadcrumbs a { color: #ffc89a; }
.breadcrumbs a:hover { color: var(--clr-btn-gold); }
.breadcrumbs span { color: rgba(255,255,255,0.4); }
.breadcrumbs .bc-current { color: #fff; font-weight: 600; }

/* ─── SECTIONS GENERAL ─── */
.section-pad { padding: 48px 0; }
.section-title { margin-bottom: 28px; text-align: center; }
.section-title h2 { position: relative; display: inline-block; }
.section-title h2::after {
  content: ''; display: block; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--clr-btn-gold), var(--clr-btn-green));
  margin: 8px auto 0; width: 60px;
}

/* ─── CARD ─── */
.card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* ─── TABLE OF CONTENTS ─── */
.toc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px;
}
.toc-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: #ffd9c4; font-weight: 600; font-size: .88rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.toc-item:hover { background: rgba(244,185,17,0.12); border-color: var(--clr-btn-gold); color: var(--clr-btn-gold); transform: translateY(-2px); }
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .85; }

/* ─── DEMO BLOCK ─── */
.demo-wrap {
  border-radius: var(--radius-md); overflow: hidden;
  border: 2px solid var(--clr-card-border);
  background: #000;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.demo-wrap iframe {
  width: 100%; aspect-ratio: 16/9; min-height: 320px; display: block; border: none;
  position: relative; z-index: 1;
}
.demo-cta {
  display: flex; justify-content: center; padding: 18px; background: rgba(64,13,0,0.9); gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.demo-cta a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; min-height: 44px; }

/* ─── PROS/CONS ─── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros-card { background: rgba(102,204,57,0.1); border: 1px solid rgba(102,204,57,0.35); border-radius: var(--radius-md); padding: 20px; }
.cons-card { background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3); border-radius: var(--radius-md); padding: 20px; }
.pros-card h3 { color: var(--clr-btn-green); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.cons-card h3 { color: #ff7a7a; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pros-card h3 svg, .cons-card h3 svg { width: 20px; height: 20px; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.45; }
.pc-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.pros-card .pc-list li svg { fill: var(--clr-btn-green); }
.cons-card .pc-list li svg { fill: #ff7a7a; }

/* ─── WINNERS ─── */
.winners-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.winners-table {
  width: 100%; border-collapse: collapse; min-width: 480px;
  background: var(--clr-card-bg); border-radius: var(--radius-md); overflow: hidden;
}
.winners-table th {
  background: var(--clr-header); color: var(--clr-btn-gold);
  padding: 12px 16px; text-align: left; font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 2px solid var(--clr-card-border);
}
.winners-table td {
  padding: 11px 16px; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
}
.winners-table tr:last-child td { border-bottom: none; }
.winners-table tr:hover td { background: rgba(255,255,255,0.04); }
.winner-rank { font-weight: 800; color: var(--clr-btn-gold); width: 36px; text-align: center; }
.winner-rank-1 { color: #FFD700; font-size: 1.1rem; }
.winner-rank-2 { color: #C0C0C0; }
.winner-rank-3 { color: #CD7F32; }
.winner-nick { font-weight: 700; color: #fff; }
.winner-amount { font-weight: 800; color: var(--clr-btn-green); }
.winner-game { color: rgba(255,255,255,0.55); font-size: .8rem; }
.winner-time { color: rgba(255,255,255,0.4); font-size: .78rem; }

/* ─── BONUSES SLIDER ─── */
.bonuses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bonus-card {
  background: var(--clr-card-bg); border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md); padding: 24px 20px; display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(64,13,0,0.5); }
.bonus-casino-logo { height: 36px; object-fit: contain; }
.bonus-badge {
  display: inline-block; background: rgba(244,185,17,0.18); border: 1px solid var(--clr-btn-gold);
  color: var(--clr-btn-gold); font-size: .72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .04em;
}
.bonus-amount { font-size: 1.5rem; font-weight: 800; color: var(--clr-btn-gold); }
.bonus-desc { font-size: .85rem; color: #ffd9c4; flex: 1; }
.bonus-terms { font-size: .72rem; color: rgba(255,255,255,0.4); }

/* ─── CONTENT BLOCK ─── */
.content-block {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 32px; margin: 0 auto;
}
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 { color: #fff; margin-top: 1.5em; margin-bottom: .6em; }
.content-block h1:first-child,
.content-block h2:first-child,
.content-block h3:first-child { margin-top: 0; }
.content-block p { color: #ffd9c4; line-height: 1.7; margin-bottom: 1em; }
.content-block ul,
.content-block ol { margin: .5em 0 1.2em 1.4em; color: #ffd9c4; }
.content-block ul li, .content-block ol li { margin-bottom: .4em; line-height: 1.6; }
.content-block a { color: var(--clr-btn-gold); }
.content-block a:hover { color: var(--clr-btn-green); }
.content-block strong, .content-block b { color: #fff; }
.content-block em, .content-block i { color: rgba(255,200,150,0.9); }
.content-block table {
  width: auto; margin: 1em auto; border-collapse: collapse; font-size: .9rem; min-width: 320px;
}
.content-block table th { background: var(--clr-header); color: var(--clr-btn-gold); padding: 10px 14px; border: 1px solid rgba(255,255,255,0.2); text-align: left; }
.content-block table td { padding: 9px 14px; border: 1px solid rgba(255,255,255,0.1); color: #ffd9c4; }
.content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.content-block blockquote { border-left: 4px solid var(--clr-btn-gold); padding: 10px 16px; margin: 1em 0; background: rgba(244,185,17,0.08); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #fff; font-style: italic; }
.content-block hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 2em 0; }
.content-block img { border-radius: var(--radius-sm); max-width: 100%; height: auto; }
.content-block code { background: rgba(0,0,0,0.35); padding: 2px 7px; border-radius: 4px; font-size: .85em; color: var(--clr-btn-green); }
.content-block pre { background: rgba(0,0,0,0.4); padding: 16px; border-radius: var(--radius-sm); overflow-x: auto; margin-bottom: 1em; }
.content-block pre code { background: none; padding: 0; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--clr-card-bg); border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(244,185,17,0.5); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: .95rem;
  color: #fff; gap: 12px; user-select: none;
}
.faq-q:hover { color: var(--clr-btn-gold); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); fill: var(--clr-btn-gold); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 20px; color: #ffd9c4; font-size: .9rem; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 20px 18px; }

/* ─── AUTHOR ─── */
.author-card {
  display: flex; gap: 28px; align-items: flex-start;
  background: var(--clr-card-bg); border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg); padding: 30px;
}
.author-avatar {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--clr-btn-gold);
}
.author-info { flex: 1; }
.author-name { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.author-title { color: var(--clr-btn-gold); font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.author-meta-item { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: #ffc89a; }
.author-meta-item svg { width: 14px; height: 14px; fill: var(--clr-btn-gold); }
.author-bio { font-size: .88rem; color: #ffd9c4; line-height: 1.65; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #ffd9c4; font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: 100px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.author-link:hover { background: var(--clr-btn-gold); color: #1a0800; border-color: var(--clr-btn-gold); }
.author-link svg { width: 14px; height: 14px; }
.article-dates { font-size: .78rem; color: rgba(255,255,255,0.45); margin-top: 12px; }

/* ─── FOOTER ─── */
.ftr-outer {
  background: var(--clr-header);
  padding: 40px 0 20px;
  border-top: 2px solid rgba(244,185,17,0.2);
}
.ftr-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 32px; margin-bottom: 32px; }
.ftr-logo img { height: 44px; margin-bottom: 14px; }
.ftr-desc { font-size: .82rem; color: #ffc89a; line-height: 1.6; }
.ftr-nav-title { font-size: .78rem; font-weight: 700; color: var(--clr-btn-gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.ftr-nav-cols { display: flex; gap: 24px; }
.ftr-nav-col { display: flex; flex-direction: column; gap: 6px; }
.ftr-nav-col a { color: #ffc89a; font-size: .83rem; transition: color var(--transition); }
.ftr-nav-col a:hover { color: var(--clr-btn-gold); }
.ftr-trust-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 12px; }
.ftr-trust-logo { height: 32px; object-fit: contain; opacity: .7; filter: brightness(1.1); transition: opacity var(--transition); }
.ftr-trust-logo:hover { opacity: 1; }
.ftr-social { display: flex; gap: 10px; flex-wrap: wrap; }
.ftr-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; transition: background var(--transition), border-color var(--transition);
}
.ftr-social a:hover { background: var(--clr-btn-gold); border-color: var(--clr-btn-gold); color: #1a0800; }
.ftr-social svg { width: 16px; height: 16px; }
.ftr-payments { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ftr-payment-logo { height: 24px; object-fit: contain; opacity: .75; filter: brightness(1.2); }
.ftr-badge {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  font-size: .72rem; font-weight: 700; color: #ffd9c4; opacity: .8; white-space: nowrap;
}
.ftr-trust-badge {
  display: inline-flex; align-items: center; height: 32px; padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  font-size: .75rem; font-weight: 700; color: #ffd9c4; opacity: .8; white-space: nowrap;
  transition: opacity var(--transition);
}
.ftr-trust-badge:hover { opacity: 1; }
.ftr-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }
.ftr-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.ftr-copyright { font-size: .78rem; color: rgba(255,255,255,0.45); }
.ftr-legal { font-size: .72rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 720px; }
.ftr-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--clr-btn-gold);
  color: var(--clr-btn-gold); font-weight: 800; font-size: .9rem; flex-shrink: 0;
}
.ftr-flag { width: 28px; height: auto; border-radius: 3px; }
.ftr-provider { display: flex; align-items: center; gap: 10px; }
.ftr-provider img { height: 28px; object-fit: contain; }

/* ─── BOTTOM WIDGET ─── */
.widget-bonus {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--clr-header);
  border-top: 2px solid var(--clr-btn-gold);
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(64,13,0,0.5);
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.widget-bonus.visible { transform: translateY(0); }
.widget-bonus-text { font-size: .88rem; color: #ffd9c4; font-weight: 600; }
.widget-bonus-text strong { color: var(--clr-btn-gold); }
.widget-close {
  background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1.2rem;
  line-height: 1; padding: 4px; transition: color var(--transition);
  margin-left: auto;
}
.widget-close:hover { color: #fff; }

/* ─── BONUS SLIDER MOBILE ─── */
.bonus-slider-wrap { position: relative; overflow: hidden; }
.bonus-slider-track { display: flex; gap: 16px; transition: transform 0.4s cubic-bezier(.4,0,.2,1); }
.bonus-slider-track .bonus-card { min-width: 280px; }
.slider-dots { display: none; justify-content: center; gap: 8px; margin-top: 14px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background var(--transition); border: none; }
.slider-dot.active { background: var(--clr-btn-gold); }

/* ─── GAME INFO STRIP ─── */
.game-info-strip {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px;
}
.gi-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(64,13,0,0.7); border: 1px solid rgba(244,185,17,0.25);
  border-radius: 100px; padding: 6px 14px; font-size: .8rem; color: #ffd9c4; font-weight: 600;
}
.gi-chip strong { color: var(--clr-btn-gold); }
.gi-chip svg { width: 14px; height: 14px; fill: var(--clr-btn-gold); flex-shrink: 0; }

/* ─── TRANSITIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ─── SECTION BG ALTERNATING ─── */
.bg-dark-section { background: rgba(64,13,0,0.45); }
.bg-card-section { background: rgba(64,13,0,0.25); }

/* ─── UNUSED / UNIQUALIZER STYLES ─── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: rgba(255,255,255,0.5); text-align: center; }
.alignnone { float: none; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.elementor-widget-wrap { display: flex; flex-wrap: wrap; }
.entry-header { margin-bottom: 1rem; }
.post-thumbnail { margin-bottom: 1rem; }
.posted-on { font-size: .8rem; color: rgba(255,255,255,0.5); }
.cat-links a { color: var(--clr-btn-gold); }
.tag-links a { color: var(--clr-btn-green); }
.qj4x9 { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mn7r2 { font-size: 0; visibility: hidden; display: none; }
.kp3w8 { pointer-events: none; }
.tb5z1 { opacity: 0; position: absolute; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hdr-nav { display: none; }
  .hdr-jackpot { display: none; }
  .hdr-btns { display: none; }
  .burger-btn { display: flex; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .bonus-slider-wrap .bonuses-grid { display: none; }
  .bonus-slider-wrap .bonus-slider-track { display: flex; }
  .slider-dots { display: flex; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-section { min-height: 400px; }
  .author-card { flex-direction: column; }
  .author-avatar { width: 80px; height: 80px; }
  .ftr-grid { grid-template-columns: 1fr; }
  .ftr-nav-cols { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .winners-table-wrap { -webkit-overflow-scrolling: touch; }
  .demo-cta { flex-direction: column; padding: 14px; gap: 10px; }
  .demo-cta .btn-play, .demo-cta .btn-bonus { width: 100%; justify-content: center; }
  .demo-wrap iframe { min-height: 240px; }
}
@media (min-width: 992px) {
  .bonus-slider-track { display: none !important; }
  .bonuses-grid { display: grid !important; }
  .slider-dots { display: none !important; }
}
