@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --clr-gold: #d0a955;
  --clr-gold-dark: #b8913d;
  --clr-gold-light: #e4c278;
  --clr-btn-green: #86ad0e;
  --clr-btn-green-dark: #6e9109;
  --clr-btn-secondary: #a1bcad;
  --clr-btn-secondary-dark: #8aaa99;
  --clr-bg: #272c0d;
  --clr-bg-dark: #1c2008;
  --clr-bg-card: #2f3512;
  --clr-bg-card2: #343a14;
  --clr-text: #f0ead6;
  --clr-text-muted: #b8ae96;
  --clr-border: #4a5218;
  --clr-border-gold: #d0a955;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-gold: 0 0 18px rgba(208,169,85,.25);
  --transition: .22s ease;
  --font: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--clr-bg); color: var(--clr-text); font-size: 16px; line-height: 1.6; min-height: 100vh; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: var(--font); }

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

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1440px; }

.xq8r2a { display: none; }
.vb3k9m { visibility: hidden; height: 0; overflow: hidden; }
.wp-content-placeholder { display: none !important; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: .92rem; letter-spacing: .03em; cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); text-decoration: none; border: none; white-space: nowrap; }
.btn--green { background: var(--clr-btn-green); color: #fff; box-shadow: 0 2px 12px rgba(134,173,14,.35); }
.btn--green:hover { background: var(--clr-btn-green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(134,173,14,.5); }
.btn--secondary { background: var(--clr-btn-secondary); color: #1a1e07; }
.btn--secondary:hover { background: var(--clr-btn-secondary-dark); color: #1a1e07; transform: translateY(-2px); }
.btn--gold { background: var(--clr-gold); color: #1a1e07; font-weight: 800; }
.btn--gold:hover { background: var(--clr-gold-light); color: #1a1e07; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--outline { background: transparent; border: 2px solid var(--clr-bg-dark); color: var(--clr-btn-secondary); }
.btn--outline:hover { background: var(--clr-gold); color: #1a1e07; transform: translateY(-2px); }
.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 15px; font-size: .82rem; }
.header-buttons .btn--outline{color: #111;}

.section-title { font-size: 1.7rem; font-weight: 800; color: var(--clr-gold); margin-bottom: .4em; letter-spacing: .01em; }
.section-subtitle { color: var(--clr-text-muted); font-size: .98rem; margin-bottom: 1.5em; }
.section-wrap { padding-top: 52px; padding-bottom: 52px;}

.box { background: var(--clr-bg-card); border-radius: var(--radius-lg); border: 1px solid var(--clr-border); box-shadow: var(--shadow); }

.site-header { background: var(--clr-gold); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 16px rgba(0,0,0,.4); }
.header-inner { display: flex; align-items: center; gap: 16px; padding: 10px 20px; max-width: 1240px; margin: 0 auto; justify-content: space-between;}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 54px; width: auto; object-fit: contain; border-radius: 4px; }
.header-nav { display: flex; align-items: center; gap: 4px;justify-content: center; }
.header-nav a { color: #1a1e07; font-weight: 600; font-size: .88rem; padding: 6px 10px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); display: flex; align-items: center; gap: 5px; }
.header-nav a:hover { background: rgba(0,0,0,.12); color: #1a1e07; }
.header-nav svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-jackpot { background: rgba(0,0,0,.15); border-radius: var(--radius-sm); padding: 5px 12px; font-size: .82rem; font-weight: 700; color: #1a1e07; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.header-jackpot span { color: var(--clr-bg-dark); font-weight: 900; font-size: .95rem; }
.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-buttons .btn { padding: 9px 18px; font-size: .88rem; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: #1a1e07; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--clr-gold-dark); padding: 12px 20px 16px; z-index: 199; box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.mobile-menu.active { display: block; }
.mobile-menu a { display: flex; align-items: center; gap: 8px; color: #1a1e07; font-weight: 600; font-size: .92rem; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.1); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(39,44,13,.92) 0%, rgba(39,44,13,.7) 55%, rgba(39,44,13,.2) 100%); }
.hero-content { position: relative; z-index: 1; padding: 60px 20px; max-width: 1240px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--clr-gold); color: #1a1e07; font-size: .78rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase; }
.hero h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.12; color: #fff; max-width: 560px; margin-bottom: .5em; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero h1 em { color: var(--clr-gold); font-style: normal; }
.hero-desc { font-size: 1.06rem; color: var(--clr-text-muted); max-width: 500px; margin-bottom: 1.8em; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-rtp { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(208,169,85,.3); border-radius: var(--radius-sm); padding: 8px 14px; }
.hero-stat dt { font-size: .7rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .07em; }
.hero-stat dd { font-size: 1.05rem; font-weight: 800; color: var(--clr-gold); }

.game-details-section { padding-top: 52px; padding-bottom: 52px;}
.game-details-table { width: 100%; border-collapse: collapse; background: var(--clr-bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.game-details-table thead th { background: var(--clr-gold); color: #1a1e07; font-size: .9rem; font-weight: 800; padding: 13px 16px; text-align: left; }
.game-details-table tbody tr { border-bottom: 1px solid var(--clr-border); transition: background var(--transition); }
.game-details-table tbody tr:last-child { border-bottom: none; }
.game-details-table tbody tr:hover { background: rgba(208,169,85,.07); }
.game-details-table td { padding: 11px 16px; font-size: .92rem; vertical-align: middle; }
.game-details-table td:first-child { color: var(--clr-text-muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.game-details-table td:last-child { color: var(--clr-text); font-weight: 500; }
.game-details-table .td-icon { width: 22px; height: 22px; fill: var(--clr-gold); flex-shrink: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); margin: 0 4px; }

.mobile-app-section { padding-top: 52px; padding-bottom: 52px;}
.mobile-app-inner { display: flex; gap: 40px; align-items: center; }
.mobile-frame-wrap { flex-shrink: 0; position: relative; }
.mobile-frame { width: 220px; height: 440px; background: #111; border-radius: 36px; border: 6px solid var(--clr-gold); box-shadow: var(--shadow-gold), var(--shadow); overflow: hidden; position: relative; }
.mobile-frame::before { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 60px; height: 5px; background: var(--clr-gold); border-radius: 4px; z-index: 2; }
.mobile-frame img { width: 100%; height: 100%; object-fit: cover; }
.mobile-app-info { flex: 1; }
.mobile-app-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--clr-gold); margin-bottom: .4em; }
.mobile-app-info p { color: var(--clr-text-muted); margin-bottom: 1.2em; }
.app-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
.app-table td { padding: 8px 12px; font-size: .9rem; border-bottom: 1px solid var(--clr-border); }
.app-table tr:last-child td { border-bottom: none; }
.app-table td:first-child { color: var(--clr-text-muted); font-weight: 600; width: 40%; }
.download-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.download-btns .btn { gap: 8px; }
.download-btns svg { width: 20px; height: 20px; }

.screenshots-section { padding-top: 52px; padding-bottom: 52px;}
.screenshots-grid { display: flex; gap: 14px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.screenshots-grid::-webkit-scrollbar { height: 5px; }
.screenshots-grid::-webkit-scrollbar-track { background: var(--clr-border); border-radius: 3px; }
.screenshots-grid::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 3px; }
.screenshot-item { flex-shrink: 0; width: 260px; height: 175px; border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--clr-border); scroll-snap-align: start; transition: transform var(--transition), border-color var(--transition); cursor: pointer; }
.screenshot-item:hover { transform: scale(1.03); border-color: var(--clr-gold); }
.screenshot-item img { width: 100%; height: 100%; object-fit: cover; }

.demo-section { padding-top: 52px; padding-bottom: 52px;}
.demo-frame-wrap { position: relative; background: #000; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--clr-border); box-shadow: var(--shadow); aspect-ratio: 16/9; max-height: 540px; }
.demo-frame-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.demo-overlay { position: absolute; inset: 0; background: rgba(39,44,13,.92); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; z-index: 5; transition: opacity .35s; }
.demo-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-overlay h3 { color: var(--clr-gold); font-size: 1.5rem; font-weight: 800; }
.demo-overlay p { color: var(--clr-text-muted); font-size: .95rem; }
.demo-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }

.bonuses-section { padding-top: 52px; padding-bottom: 52px;}
.bonuses-slider { display: flex; gap: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.bonuses-slider::-webkit-scrollbar { height: 5px; }
.bonuses-slider::-webkit-scrollbar-track { background: var(--clr-border); border-radius: 3px; }
.bonuses-slider::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 3px; }
.bonus-card { flex-shrink: 0; width: 340px; background: var(--clr-bg-card); border-radius: var(--radius-lg); border: 1px solid var(--clr-border); padding: 24px; scroll-snap-align: start; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow); transition: border-color var(--transition), box-shadow var(--transition); }
.bonus-card:hover { border-color: var(--clr-gold); box-shadow: var(--shadow-gold); }
.bonus-card-header { display: flex; align-items: center; gap: 12px; }
.bonus-card-logo { width: 52px; height: 52px; background: var(--clr-bg-dark); border-radius: var(--radius-sm); object-fit: contain; padding: 4px; border: 1px solid var(--clr-border); }
.bonus-card-title { font-size: 1.05rem; font-weight: 800; color: var(--clr-gold); }
.bonus-card-rating { display: flex; align-items: center; gap: 4px; }
.bonus-card-rating svg { width: 14px; height: 14px; fill: var(--clr-gold); }
.bonus-card-rating span { font-size: .82rem; color: var(--clr-text-muted); }
.bonus-amount { font-size: 1.6rem; font-weight: 900; color: #fff; }
.bonus-amount small { font-size: .8rem; color: var(--clr-text-muted); font-weight: 400; display: block; }
.bonus-features { display: flex; flex-direction: column; gap: 5px; font-size: .87rem; }
.bonus-features li { display: flex; align-items: flex-start; gap: 7px; color: var(--clr-text-muted); list-style: none; padding: 0; }
.bonus-features li::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--clr-btn-green); flex-shrink: 0; margin-top: 6px; }
.bonus-terms { font-size: .76rem; color: var(--clr-text-muted); margin-top: auto; }

.content-section { padding-top: 52px; padding-bottom: 52px;}
.review-box { background: var(--clr-bg-card); border-radius: var(--radius-lg); border: 1px solid var(--clr-border); padding: 36px; box-shadow: var(--shadow); }
.review-author { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--clr-border); }
.review-author-avatar { min-width: 62px; height: 62px; border-radius: 50%; background: var(--clr-gold); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.3rem; color: #1a1e07; flex-shrink: 0; overflow: hidden; }
.review-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author-name { font-weight: 800; font-size: 1.05rem; color: var(--clr-gold); }
.review-author-title { font-size: .85rem; color: var(--clr-text-muted); }
.review-author-bio { font-size: .82rem; color: var(--clr-text-muted); margin-top: 4px; line-height: 1.5; }
.review-content { color: var(--clr-text); line-height: 1.75; }
.review-content h2 { font-size: 1.45rem; font-weight: 800; color: var(--clr-gold); margin: 1.6em 0 .6em; }
.review-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--clr-gold-light); margin: 1.3em 0 .5em; }
.review-content h4 { font-size: 1rem; font-weight: 700; color: var(--clr-text); margin: 1em 0 .4em; }
.review-content p { margin-bottom: 1em; }
.review-content ul, .review-content ol { margin: .8em 0 1em 1.4em; }
.review-content li { margin-bottom: .4em; }
.review-content a { color: var(--clr-gold); text-decoration: underline; }
.review-content table { width: 100%; border-collapse: collapse; margin: 1.2em 0; background: var(--clr-bg-dark); border-radius: var(--radius-sm); overflow: hidden; }
.review-content th { background: var(--clr-gold); color: #1a1e07; font-weight: 800; padding: 10px 14px; text-align: left; }
.review-content td { padding: 9px 14px; border-bottom: 1px solid var(--clr-border); font-size: .9rem; }
.review-content strong { color: var(--clr-gold-light); font-weight: 700; }
.review-content em { color: var(--clr-text-muted); }
.review-content blockquote { border-left: 3px solid var(--clr-gold); padding-left: 14px; color: var(--clr-text-muted); font-style: italic; margin: 1em 0; }
.review-content code { background: var(--clr-bg-dark); padding: 2px 6px; border-radius: 3px; font-size: .88em; }
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.5em 0; }

.faq-section { padding-top: 52px; padding-bottom: 52px;}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-bg-card); border-radius: var(--radius-md); border: 1px solid var(--clr-border); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--clr-gold); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: .97rem; color: var(--clr-text); transition: color var(--transition); }
.faq-question:hover { color: var(--clr-gold); }
.faq-item.open .faq-question { color: var(--clr-gold); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--clr-border); display: flex; align-items: center; justify-content: center; transition: background var(--transition), transform var(--transition); }
.faq-item.open .faq-icon { background: var(--clr-gold); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; fill: var(--clr-text-muted); }
.faq-item.open .faq-icon svg { fill: #1a1e07; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .22s; }
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding: 0 20px 18px; color: var(--clr-text-muted); font-size: .93rem; line-height: 1.7; }
.faq-answer-inner a { color: var(--clr-gold); }

.reviews-section { padding-top: 52px; padding-bottom: 52px;}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.review-card { background: var(--clr-bg-card); border-radius: var(--radius-md); border: 1px solid var(--clr-border); padding: 20px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow); }
.review-card-header { display: flex; align-items: center; gap: 12px; }
.review-card-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--clr-gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; color: #1a1e07; flex-shrink: 0; overflow: hidden; }
.review-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card-name { font-weight: 700; color: var(--clr-text); font-size: .95rem; }
.review-card-date { font-size: .78rem; color: var(--clr-text-muted); }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--clr-gold); }
.review-card-text { font-size: .88rem; color: var(--clr-text-muted); line-height: 1.6; }

.review-form-wrap { background: var(--clr-bg-card); border-radius: var(--radius-lg); border: 1px solid var(--clr-border); padding: 32px; max-width: 580px; margin: 0 auto; }
.review-form-wrap h3 { font-size: 1.2rem; font-weight: 800; color: var(--clr-gold); margin-bottom: 1.2em; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .88rem; color: var(--clr-text-muted); font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { background: var(--clr-bg-dark); border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm); padding: 11px 14px; color: var(--clr-text); font-size: .93rem; transition: border-color var(--transition), box-shadow var(--transition); font-family: var(--font); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--clr-gold); box-shadow: 0 0 0 3px rgba(208,169,85,.15); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; background: rgba(134,173,14,.15); border: 1px solid var(--clr-btn-green); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--clr-btn-green); font-weight: 600; text-align: center; margin-top: 10px; }
.form-success.show { display: block; }
.star-rating-input { display: flex; gap: 4px; flex-direction: row-reverse; justify-content: flex-end; }
.star-rating-input input { display: none; }
.star-rating-input label { cursor: pointer; font-size: 1.4rem; color: var(--clr-border); transition: color var(--transition); }
.star-rating-input input:checked ~ label, .star-rating-input label:hover, .star-rating-input label:hover ~ label { color: var(--clr-gold); }

.site-footer { background: var(--clr-gold); color: #1a1e07; margin-top: auto; padding: 40px 0 0; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(0,0,0,.15); justify-content: space-between;}
.footer-brand { min-width: 200px; max-width: 250px; }
.footer-brand img.footer-logo { height: 54px; width: auto; object-fit: contain; margin-bottom: 10px; border-radius: 4px; }
.footer-brand p { font-size: .84rem; color: rgba(26,30,7,.75); line-height: 1.6; }
.footer-brand-link {display: block;width: fit-content;}
.footer-nav-col h4 { font-weight: 800; font-size: .9rem; margin-bottom: 10px; color: #1a1e07; }
.footer-nav-col a { display: block; font-size: .86rem; color: rgba(26,30,7,.8); margin-bottom: 6px; transition: color var(--transition); }
.footer-nav-col a:hover { color: #1a1e07; }
.footer-bottom { padding: 20px 0; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 14px; }
.footer-logos img { height: 28px; width: auto; object-fit: contain; opacity: .85; filter: grayscale(20%); transition: opacity var(--transition); }
.footer-logos img:hover { opacity: 1; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 14px; }
.footer-trust-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(0,0,0,.1); border-radius: var(--radius-sm); padding: 5px 10px; font-size: .78rem; font-weight: 700; color: #1a1e07; }
.footer-trust-badge svg { width: 14px; height: 14px; fill: #1a1e07; }
.footer-social { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: rgba(0,0,0,.25); }
.footer-social svg { width: 17px; height: 17px; fill: #1a1e07; }
.footer-legal { font-size: .78rem; color: rgba(26,30,7,.65); line-height: 1.6; border-top: 1px solid rgba(0,0,0,.1); padding-top: 14px; }
.footer-legal a { color: rgba(26,30,7,.8); text-decoration: underline; }
.footer-copyright { font-weight: 700; margin-bottom: 6px; color: #1a1e07; font-size: .85rem; }
.footer-flag { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 600; }
.footer-flag img { height: 18px; border-radius: 2px; }

.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, var(--clr-bg-dark) 0%, #1e2309 100%); border-top: 2px solid var(--clr-gold); padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -4px 20px rgba(0,0,0,.5); transform: translateY(0); transition: transform .3s; }
.sticky-widget.hidden { transform: translateY(100%); }
.sticky-widget-text { font-size: .9rem; font-weight: 700; color: var(--clr-text); }
.sticky-widget-text span { color: var(--clr-gold); }
.sticky-widget-close { background: none; border: none; cursor: pointer; padding: 4px; color: var(--clr-text-muted); font-size: 1.2rem; line-height: 1; transition: color var(--transition); }
.sticky-widget-close:hover { color: var(--clr-gold); }

.breadcrumb { padding: 12px 0; font-size: .84rem; color: var(--clr-text-muted); display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb-sep { color: var(--clr-border); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

.info-page-content { padding: 52px 0; }
.info-page-content h1 { font-size: 2rem; font-weight: 900; color: var(--clr-gold); margin-bottom: .8em; }
.info-page-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--clr-gold); margin: 1.5em 0 .5em; }
.info-page-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--clr-gold-light); margin: 1.2em 0 .4em; }
.info-page-content p { margin-bottom: 1em; color: var(--clr-text); line-height: 1.75; }
.info-page-content ul, .info-page-content ol { margin: .8em 0 1em 1.4em; }
.info-page-content li { margin-bottom: .5em; color: var(--clr-text); }
.info-page-content a { color: var(--clr-gold); text-decoration: underline; }

.gq3k1 { display: block; width: 0; height: 0; overflow: hidden; position: absolute; }
.wc_form_field { display: none; }
.wp-caption { border: none; }

@media (max-width: 1100px) {
  .header-jackpot {display: none;}
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-app-inner { flex-direction: column; }
  .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 900px) {
.header-nav a:first-child {display: none;}
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-jackpot { display: none; }
  .burger { display: flex; }
  .hero h1 { font-size: 1.8rem; }
  .hero-content { padding: 40px 20px; }
  .section-title { font-size: 1.35rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bonus-card { width: 290px; }
  .screenshot-item { width: 220px; height: 148px; }
  .footer-top { flex-direction: column; gap: 20px; }
  .sticky-widget { flex-wrap: wrap; }
  .mobile-frame-wrap { align-self: center; }
  .review-box { padding: 20px; }
  .review-form-wrap { padding: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .header-buttons .btn--outline { display: none; }
  .download-btns { flex-direction: column; }
  .sticky-widget-text { font-size: .82rem; }
   .review-box { padding: 16px; }
  .review-form-wrap { padding: 16x; }
  .review-author {flex-direction: column;}
}
