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

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

:root {
  --clr-dark: #161324;
  --clr-dark-alt: #1e1a30;
  --clr-accent: #25ABD8;
  --clr-accent-hover: #1d90b8;
  --clr-btn-login: #151320;
  --clr-white: #ffffff;
  --clr-bg: #f5f5f7;
  --clr-text: #222222;
  --clr-text-light: #555555;
  --clr-border: #e0e0e0;
  --clr-gold: #f0b429;
  --clr-green: #22c55e;
  --clr-red: #ef4444;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
}

html { font-family: 'Roboto', Arial, sans-serif; font-size: 16px; background: var(--clr-bg); color: var(--clr-text); scroll-behavior: smooth; overflow-x: hidden; }
body { line-height: 1.6; overflow-x: hidden; max-width: 100vw; }

.xw7k2 { display: none; }
.p4mq91 { visibility: hidden; height: 0; overflow: hidden; }
.zr3v { position: absolute; left: -9999px; }

a { color: var(--clr-accent); text-decoration: none; }
a:hover { color: var(--clr-accent-hover); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ========== HEADER ========== */
.site-header { background: var(--clr-dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 12px; flex-wrap: wrap; }
.header-logo img { height: 56px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.header-nav a { color: #c8c0e0; font-size: 14px; padding: 6px 10px; border-radius: 6px; transition: background .2s, color .2s; white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { background: rgba(37,171,216,.18); color: var(--clr-accent); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online { color: #aaa; font-size: 12px; display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.header-online span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-green); display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .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); }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, background .2s; white-space: nowrap; text-decoration: none; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.btn:active { transform: translateY(0); }
.btn--login { background: var(--clr-btn-login); color: #fff; border: 1px solid #3a3658; }
.btn--login:hover { background: #221f3a; color: #fff; }
.btn--signup { background: var(--clr-accent); color: #fff; }
.btn--signup:hover { background: var(--clr-accent-hover); color: #fff; }
.btn--bonus { background: linear-gradient(135deg,#f0b429,#e8960a); color: #1a1200; font-weight: 700; }
.btn--bonus:hover { background: linear-gradient(135deg,#f5c040,#f0b429); color: #1a1200; }
.btn--primary { background: var(--clr-accent); color: #fff; padding: 12px 28px; font-size: 16px; border-radius: 10px; }
.btn--primary:hover { background: var(--clr-accent-hover); color: #fff; }
.btn--outline { background: transparent; color: var(--clr-accent); border: 2px solid var(--clr-accent); padding: 10px 22px; border-radius: 8px; }
.btn--outline:hover { background: var(--clr-accent); color: #fff; }

/* ========== HERO ========== */
.hero { background: var(--clr-dark) url('/hero-banner.png') center/cover no-repeat; min-height: 380px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; background: linear-gradient(90deg,rgba(22,19,36,.92) 0%,rgba(22,19,36,.5) 100%); }
.hero-inner { position: relative; z-index: 1; padding: 60px 0; max-width: 600px; }
.hero-inner h1 { font-size: clamp(24px,4vw,44px); color: #fff; font-weight: 900; line-height: 1.2; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-inner p { color: #d0cce8; font-size: 18px; margin-bottom: 28px; line-height: 1.6; }
.hero-inner .badge { display: inline-block; background: var(--clr-accent); color: #fff; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; letter-spacing: .5px; }

/* ========== BREADCRUMBS ========== */
.breadcrumbs { background: var(--clr-dark-alt); padding: 10px 0; }
.breadcrumbs-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumbs-list li { color: #aaa; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.breadcrumbs-list li::after { content: '›'; color: #666; }
.breadcrumbs-list li:last-child::after { display: none; }
.breadcrumbs-list a { color: #c0b8d8; }
.breadcrumbs-list a:hover { color: var(--clr-accent); }

/* ========== SECTION COMMON ========== */
.section { padding: 40px 0; }
.section-title { font-size: clamp(20px,3vw,28px); font-weight: 700; color: var(--clr-dark); margin-bottom: 20px; position: relative; padding-left: 16px; }
.section-title::before { content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:4px; height:70%; background:var(--clr-accent); border-radius:2px; }
.section-desc { color: var(--clr-text-light); margin-bottom: 24px; font-size: 15px; }

/* ========== CARD/BOX ========== */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; border: 1px solid var(--clr-border); }
.card + .card { margin-top: 20px; }

/* ========== TABLE OF CONTENTS ========== */
.toc { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px; }
.toc h3 { font-size: 15px; font-weight: 700; color: var(--clr-dark); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.toc ol { padding-left: 18px; }
.toc ol li { margin-bottom: 8px; }
.toc ol li a { color: var(--clr-accent); font-size: 14px; }
.toc ol li a:hover { text-decoration: underline; }

/* ========== INFO TABLE ========== */
.info-table-wrap { overflow-x: auto; margin-bottom: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; min-width: 480px; }
.info-table th { background: var(--clr-dark); color: #fff; padding: 12px 16px; text-align: left; font-size: 14px; font-weight: 600; }
.info-table td { padding: 11px 16px; font-size: 14px; border-bottom: 1px solid var(--clr-border); vertical-align: top; }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: #f8f7fc; }
.info-table td:first-child { font-weight: 600; color: var(--clr-dark); width: 42%; }

/* ========== PROS / CONS ========== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.pros-block, .cons-block { border-radius: var(--radius); padding: 20px; }
.pros-block { background: #f0fdf4; border: 1px solid #86efac; }
.cons-block { background: #fff1f2; border: 1px solid #fca5a5; }
.pros-block h3 { color: #166534; margin-bottom: 12px; font-size: 16px; }
.cons-block h3 { color: #991b1b; margin-bottom: 12px; font-size: 16px; }
.pros-block ul li, .cons-block ul li { padding: 6px 0 6px 22px; font-size: 14px; position: relative; border-bottom: 1px solid rgba(0,0,0,.06); }
.pros-block ul li:last-child, .cons-block ul li:last-child { border-bottom: none; }
.pros-block ul li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }
.cons-block ul li::before { content: '✗'; position: absolute; left: 0; color: #ef4444; font-weight: 700; }

/* ========== ADVANTAGES ========== */
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 32px; }
.advantage-card { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--clr-border); text-align: center; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.advantage-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.advantage-card .icon { font-size: 32px; margin-bottom: 10px; }
.advantage-card h4 { font-size: 14px; font-weight: 700; color: var(--clr-dark); margin-bottom: 6px; }
.advantage-card p { font-size: 13px; color: var(--clr-text-light); line-height: 1.5; }

/* ========== MIRRORS TABLE ========== */
.mirrors-update { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-light); margin-bottom: 12px; }
.mirrors-update .dot { width: 8px; height: 8px; background: var(--clr-green); border-radius: 50%; animation: pulse 1.5s infinite; }
.mirror-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-width: 400px; }
.mirror-table thead tr { background: var(--clr-dark); }
.mirror-table th { color: #fff; padding: 11px 14px; text-align: left; font-size: 13px; }
.mirror-table td { padding: 10px 14px; font-size: 13px; border-bottom: 1px solid var(--clr-border); }
.mirror-table tr:last-child td { border-bottom: none; }
.mirror-table tr:hover td { background: #f5f3ff; }
.mirror-status { display: inline-flex; align-items: center; gap: 5px; color: var(--clr-green); font-weight: 600; font-size: 12px; }
.mirror-status::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--clr-green); }

/* ========== WINNERS ========== */
.winners-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-width: 340px; }
.winners-table thead tr { background: var(--clr-dark); }
.winners-table th { color: #fff; padding: 11px 14px; text-align: left; font-size: 13px; }
.winners-table td { padding: 9px 14px; font-size: 13px; border-bottom: 1px solid var(--clr-border); }
.winners-table tr:last-child td { border-bottom: none; }
.winners-table .rank { font-weight: 700; color: var(--clr-accent); }
.winners-table .rank-1 { color: var(--clr-gold); }
.winners-table .rank-2 { color: #9ca3af; }
.winners-table .rank-3 { color: #cd7c2f; }
.winners-table .amount { font-weight: 700; color: var(--clr-green); }

/* ========== APP INFO ========== */
.app-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; margin-bottom: 32px; }
.app-download-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.app-download-btns a { display: flex; align-items: center; gap: 10px; background: var(--clr-dark); color: #fff; border: 1px solid #3a3658; border-radius: 10px; padding: 10px 16px; font-size: 14px; font-weight: 500; transition: background .2s; }
.app-download-btns a:hover { background: var(--clr-dark-alt); color: #fff; }
.app-download-btns a svg { flex-shrink: 0; width: 22px; height: 22px; }
.app-download-btns .btn-store-label { display: flex; flex-direction: column; }
.app-download-btns .btn-store-label small { font-size: 10px; opacity: .7; }
.app-download-btns .btn-store-label strong { font-size: 14px; }

/* ========== DEMO SLOT IFRAME ========== */
.demo-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--clr-dark); margin-bottom: 32px; }
.demo-wrapper iframe { display: block; width: 100%; height: 480px; border: none; }
.demo-title-bar { background: var(--clr-dark); padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; }
.demo-title-bar span { color: #c8c0e0; font-size: 14px; font-weight: 600; }

/* ========== SLOT MINI GAME ========== */
.slot-game { background: linear-gradient(135deg,#161324,#1e1a30); border-radius: 16px; padding: 32px; text-align: center; margin-bottom: 32px; border: 1px solid #3a3658; }
.slot-game h3 { color: #fff; font-size: 22px; margin-bottom: 20px; }
.slot-reels { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }
.slot-reel { width: 72px; height: 90px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 44px; border: 3px solid var(--clr-accent); overflow: hidden; transition: transform .1s; }
.slot-reel.spinning { animation: reelSpin .15s linear infinite; }
@keyframes reelSpin { from{transform:scaleY(1) translateY(0)}to{transform:scaleY(.9) translateY(-4px)} }
.slot-controls { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.slot-balance { color: #c8c0e0; font-size: 14px; }
.slot-result { margin-top: 16px; padding: 16px 24px; background: rgba(37,171,216,.15); border: 1px solid var(--clr-accent); border-radius: 10px; color: #fff; font-size: 16px; display: none; }
.slot-result.show { display: block; animation: fadeIn .4s; }
.slot-result .win-text { font-size: 20px; font-weight: 700; color: var(--clr-gold); }

/* ========== FAQ ========== */
.faq-list { margin-bottom: 32px; }
.faq-item { border: 1px solid var(--clr-border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; background: #fff; border: none; padding: 16px 20px; text-align: left; font-size: 15px; font-weight: 600; color: var(--clr-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .2s; }
.faq-q:hover { background: #f5f3ff; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--clr-accent); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { background: #fafafe; padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 12px 20px 16px; }
.faq-a p, .faq-a li { font-size: 14px; color: var(--clr-text-light); line-height: 1.7; }

/* ========== AUTHOR ========== */
.author-block { display: flex; align-items: flex-start; gap: 20px; background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--clr-accent); }
.author-avatar-placeholder { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--clr-accent),#1d90b8); display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; font-weight: 700; flex-shrink: 0; }
.author-info h4 { font-size: 17px; font-weight: 700; color: var(--clr-dark); margin-bottom: 4px; }
.author-info .author-role { font-size: 13px; color: var(--clr-accent); font-weight: 500; margin-bottom: 8px; }
.author-info p { font-size: 14px; color: var(--clr-text-light); line-height: 1.6; margin-bottom: 10px; }
.author-socials a { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--clr-accent); background: #f0f9fd; padding: 4px 10px; border-radius: 20px; }
.author-socials a:hover { background: var(--clr-accent); color: #fff; }

/* ========== FOOTER ========== */
.site-footer { background: var(--clr-dark); color: #c0b8d8; margin-top: auto; }
.footer-top { padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 32px; }
.footer-logo img { height: 38px; margin-bottom: 12px; }
.footer-logo p { font-size: 13px; color: #9990b8; line-height: 1.6; }
.footer-nav h5, .footer-links h5 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.footer-nav ul li, .footer-links ul li { margin-bottom: 8px; }
.footer-nav ul li a, .footer-links ul li a { color: #9990b8; font-size: 13px; transition: color .2s; }
.footer-nav ul li a:hover, .footer-links ul li a:hover { color: var(--clr-accent); }
.footer-payments { padding: 20px 0; border-top: 1px solid #2a2440; border-bottom: 1px solid #2a2440; }
.footer-payments h5, .footer-providers h5 { font-size: 12px; font-weight: 700; color: #7770a0; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.payment-logos, .provider-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-badge, .provider-badge { background: #1e1a30; border: 1px solid #3a3658; border-radius: 6px; padding: 5px 10px; font-size: 11px; color: #c0b8d8; font-weight: 600; }
.footer-providers { padding: 16px 0; border-bottom: 1px solid #2a2440; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-copyright { font-size: 12px; color: #6a6090; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-legal-links a { font-size: 12px; color: #6a6090; }
.footer-legal-links a:hover { color: var(--clr-accent); }
.footer-disclaimer { font-size: 11px; color: #4a4070; margin-top: 10px; line-height: 1.5; }

/* ========== WIDGET ========== */
.bonus-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg,#161324,#1e1a30); border-top: 2px solid var(--clr-accent); padding: 12px 20px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,.4); }
.bonus-widget .widget-text { color: #fff; font-size: 14px; font-weight: 500; }
.bonus-widget .widget-text strong { color: var(--clr-gold); }
.bonus-widget a { text-decoration: none; }
.bonus-widget .widget-close { background: none; border: none; color: #6a6090; cursor: pointer; font-size: 18px; padding: 0 0 0 8px; line-height: 1; }

/* ========== CONTENT BLOCK STYLING ========== */
.content-text h2 { font-size: 22px; font-weight: 700; color: var(--clr-dark); margin: 28px 0 12px; padding-left: 14px; border-left: 4px solid var(--clr-accent); }
.content-text h3 { font-size: 18px; font-weight: 700; color: var(--clr-dark); margin: 20px 0 10px; }
.content-text h4 { font-size: 16px; font-weight: 700; color: var(--clr-dark); margin: 16px 0 8px; }
.content-text p { font-size: 15px; line-height: 1.75; color: var(--clr-text); margin-bottom: 14px; }
.content-text ul { list-style: none; margin: 0 0 14px 0; padding: 0; }
.content-text ul li { padding: 5px 0 5px 22px; position: relative; font-size: 15px; color: var(--clr-text); }
.content-text ul li::before { content: '—'; position: absolute; left: 0; color: var(--clr-accent); }
.content-text ol { padding-left: 20px; margin: 0 0 14px; }
.content-text ol li { padding: 4px 0; font-size: 15px; color: var(--clr-text); }
.content-text table { width: 100%; border-collapse: collapse; margin: 0 auto 18px; border: 1px solid var(--clr-border); border-radius: 6px; overflow: hidden; font-size: 14px; }
.content-text table th { background: var(--clr-dark); color: #fff; padding: 10px 14px; text-align: left; }
.content-text table td { padding: 9px 14px; border-bottom: 1px solid var(--clr-border); }
.content-text table tr:nth-child(even) td { background: #f8f7fc; }
.content-text a { color: var(--clr-accent); text-decoration: underline; }
.content-text blockquote { border-left: 4px solid var(--clr-accent); background: #f5f3ff; padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 14px 0; color: var(--clr-text-light); font-style: italic; }
.content-text strong { font-weight: 700; }
.content-text em { font-style: italic; }

/* ========== BONUS BLOCK ========== */
.bonus-cta { background: linear-gradient(135deg,#161324,#232040); border-radius: 16px; padding: 32px; text-align: center; border: 1px solid var(--clr-accent); margin-bottom: 32px; }
.bonus-cta h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.bonus-cta p { color: #c0b8d8; font-size: 15px; margin-bottom: 20px; }
.bonus-amount { font-size: 42px; font-weight: 900; color: var(--clr-gold); display: block; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(240,180,41,.4); }
.bonus-sub { font-size: 15px; color: #c0b8d8; display: block; margin-bottom: 20px; }

/* ========== PROMO CODE ========== */
.promo-accent { background: linear-gradient(135deg,#1a4a5c,#0f3044); border: 2px dashed var(--clr-accent); border-radius: 16px; padding: 28px 24px; text-align: center; margin-bottom: 32px; }
.promo-accent h3 { color: #fff; font-size: 20px; margin-bottom: 14px; }
.promo-code-display { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1px solid var(--clr-accent); border-radius: 10px; padding: 10px 20px; margin-bottom: 16px; }
.promo-code-display .code { font-size: 22px; font-weight: 900; color: var(--clr-gold); letter-spacing: 3px; font-family: monospace; }
.copy-btn { background: var(--clr-accent); color: #fff; border: none; border-radius: 6px; padding: 7px 14px; font-size: 13px; cursor: pointer; transition: background .2s; }
.copy-btn:hover { background: var(--clr-accent-hover); }
.promo-accent p { color: #c0b8d8; font-size: 14px; margin-top: 8px; }

/* ========== BONUS TABLE ========== */
.bonus-table-wrap { overflow-x: auto; margin-bottom: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.bonus-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 500px; }
.bonus-table thead tr { background: var(--clr-dark); }
.bonus-table th { color: #fff; padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; }
.bonus-table td { padding: 11px 16px; font-size: 13px; border-bottom: 1px solid var(--clr-border); }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: #f5f3ff; }
.bonus-highlight { color: var(--clr-green); font-weight: 700; }

/* ========== REGISTRATION METHODS ========== */
.reg-methods { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 14px; margin-bottom: 32px; }
.reg-method-card { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 18px; text-align: center; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.reg-method-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.reg-method-card .icon { font-size: 28px; margin-bottom: 8px; }
.reg-method-card h4 { font-size: 14px; font-weight: 700; color: var(--clr-dark); margin-bottom: 4px; }
.reg-method-card p { font-size: 12px; color: var(--clr-text-light); }

/* ========== SLOTS GRID ========== */
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.slot-card { background: var(--clr-dark); border-radius: 12px; overflow: hidden; border: 1px solid #3a3658; transition: transform .2s, box-shadow .2s; }
.slot-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.slot-card-img { width: 100%; height: 130px; background: linear-gradient(135deg,#1e1a30,#2d2860); display: flex; align-items: center; justify-content: center; font-size: 36px; overflow: hidden; }
.slot-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.slot-card:hover .slot-card-img img { transform: scale(1.06); }
.slot-card-body { padding: 12px; }
.slot-card h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.slot-card .rtp { font-size: 11px; color: var(--clr-accent); font-weight: 600; }
.slot-card .btn--primary { width: 100%; margin-top: 10px; font-size: 13px; padding: 8px; }

/* ========== PROVIDERS ========== */
.providers-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(130px,1fr)); gap: 12px; margin-bottom: 32px; }
.provider-card { background: #fff; border: 1px solid var(--clr-border); border-radius: 8px; padding: 14px; text-align: center; font-size: 13px; font-weight: 600; color: var(--clr-dark); transition: transform .2s; cursor: default; }
.provider-card:hover { transform: scale(1.03); border-color: var(--clr-accent); }

/* ========== FEATURES GRID ========== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px; margin-bottom: 32px; }
.feature-card { background: #fff; border-radius: 10px; padding: 18px; border: 1px solid var(--clr-border); text-align: center; }
.feature-card .icon { font-size: 26px; margin-bottom: 8px; }
.feature-card h4 { font-size: 13px; font-weight: 700; color: var(--clr-dark); }
.feature-card p { font-size: 12px; color: var(--clr-text-light); margin-top: 4px; }

/* ========== SAFETY CARDS ========== */
.safety-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 14px; margin-bottom: 32px; }
.safety-card { background: #fff; border-left: 4px solid var(--clr-accent); border-radius: 0 8px 8px 0; padding: 16px; box-shadow: var(--shadow); }
.safety-card h4 { font-size: 14px; font-weight: 700; color: var(--clr-dark); margin-bottom: 6px; }
.safety-card p { font-size: 13px; color: var(--clr-text-light); }

/* ========== SCREENSHOT SLIDER ========== */
.screenshots { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 32px; }
.screenshot-item { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); background: var(--clr-dark); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: #5050a0; font-size: 13px; }
.screenshot-item img { width: 100%; height: 100%; object-fit: cover; }

/* ========== OFFICIAL LINK BLOCK ========== */
.official-link-block { background: linear-gradient(135deg,#161324,#232040); border: 1px solid var(--clr-accent); border-radius: 16px; padding: 28px; text-align: center; margin-bottom: 32px; }
.official-link-block h3 { color: #fff; margin-bottom: 10px; }
.official-link-block p { color: #c0b8d8; margin-bottom: 18px; font-size: 15px; }

/* ========== RTP TABLE ========== */
.rtp-table-wrap { overflow-x: auto; margin-bottom: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.rtp-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 380px; }
.rtp-table thead tr { background: var(--clr-dark); }
.rtp-table th { color: #fff; padding: 11px 14px; text-align: left; font-size: 13px; }
.rtp-table td { padding: 10px 14px; font-size: 13px; border-bottom: 1px solid var(--clr-border); }
.rtp-table tr:last-child td { border-bottom: none; }
.rtp-bar { height: 8px; border-radius: 4px; background: linear-gradient(90deg,var(--clr-accent),#22c55e); }

/* ========== VIDEO BLOCK ========== */
.video-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 32px; aspect-ratio: 16/9; }
.video-wrap iframe { width: 100%; height: 100%; border: none; }

/* ========== MISC ANIMATIONS ========== */
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)} }
.fade-in { animation: fadeIn .5s ease both; }
.section { animation: fadeIn .5s ease both; }

/* ========== WP DECOY (no visible effect) ========== */
#wp-toolbar { display: none !important; }
.wp-nonce-field { display: none; }
.entry-meta { display: none; }
.wp-caption { display: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app-info-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2,1fr); }
}
.nav-mobile-actions { display: none; }

@media (max-width: 768px) {
  .header-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--clr-dark); padding: 12px 0; gap: 0; border-top: 1px solid #2a2440; z-index: 999; }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 12px 20px; border-radius: 0; border-bottom: 1px solid #1e1a30; }
  .header-inner { position: relative; }
  .burger { display: flex; }
  .header-actions .btn--login,
  .header-actions .btn--signup { display: none; }
  .nav-mobile-actions { display: flex; gap: 10px; padding: 14px 20px; }
  .nav-mobile-actions .btn { flex: 1; justify-content: center; }
  .site-header .container { position: relative; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2,1fr); }
  .screenshots { grid-template-columns: 1fr; }
  .hero-inner { padding: 40px 0; }
  .slot-reels { gap: 6px; }
  .slot-reel { width: 60px; height: 76px; font-size: 36px; }
}
@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .reg-methods { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: 1fr; }
  .bonus-widget { flex-direction: column; gap: 8px; text-align: center; }
  .providers-grid { grid-template-columns: repeat(3,1fr); }
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .hero-inner h1 { font-size: 22px; }
  .hero-inner p { font-size: 15px; }
  .btn--primary { padding: 10px 18px; font-size: 14px; }
  .app-download-btns { flex-direction: column; }
  .app-download-btns a { width: 100%; }
  .header-inner { flex-wrap: nowrap; }
  .header-logo img { height: 44px; }
  .toc ol { padding-left: 16px; }
}

/* ========== MOBILE OVERFLOW GUARD ========== */
@media (max-width: 768px) {
  * { min-width: 0; }
  img, video, iframe, embed, object { max-width: 100%; }
  pre, code { white-space: pre-wrap; word-break: break-word; }
  .container { padding: 0 12px; }
  table { width: 100%; }
  .winner-table td, .mirror-table td, .info-table td, .bonus-table td { word-break: break-word; }
}

/* ========== REVIEW IMAGE ========== */
.review-img { width: 100%; max-height: 360px; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; display: block; box-shadow: var(--shadow); }

/* ========== WP-CONTENT STATIC DECOYS ========== */
.elementor-column-wrap { box-sizing: border-box; }
.elementor-widget-wrap { display: contents; }
.yoast-seo-notice { display: none; }

/* ========== OVERFLOW SCROLL TABLES ========== */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
