*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
--c-bg:#242630;
--c-header:#1A1C24;
--c-surface:#2d2f3d;
--c-surface2:#32354a;
--c-green:#00CC5F;
--c-green-dark:#00a84e;
--c-btn-sec:#3D404C;
--c-btn-sec-dark:#2e3140;
--c-text:#e8eaf0;
--c-text-muted:#9aa0b8;
--c-border:#3a3d52;
--c-gold:#f5c518;
--c-radius:10px;
--c-radius-lg:16px;
--c-shadow:0 4px 24px rgba(0,0,0,.45);
--font-main:'Montserrat',Arial,sans-serif;
}
html{scroll-behavior:smooth;background:var(--c-bg)}
body{font-family:var(--font-main);background:var(--c-bg);color:var(--c-text);font-size:15px;line-height:1.6;overflow-x:hidden}
a{color:var(--c-green);text-decoration:none;transition:color .2s}
a:hover{color:var(--c-green-dark)}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;font-family:var(--font-main)}

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

.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:10px 20px;border-radius:var(--c-radius);font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;border:none;transition:all .22s cubic-bezier(.4,0,.2,1);text-decoration:none;white-space:nowrap;cursor:pointer}
.btn--green{background:var(--c-green);color:#fff}
.btn--green:hover{background:var(--c-green-dark);color:#fff;transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,204,95,.35)}
.btn--green:active{transform:translateY(0)}
.btn--sec{background:var(--c-btn-sec);color:var(--c-text)}
.btn--sec:hover{background:var(--c-btn-sec-dark);color:var(--c-text)}
.btn--lg{padding:14px 32px;font-size:16px;border-radius:var(--c-radius-lg)}
.btn--sm{padding:7px 14px;font-size:12px}

.x7k2f{display:none}
.q9m3p{visibility:hidden;position:absolute}
.r4w8n{width:0;height:0;overflow:hidden}

.site-header{position:sticky;top:0;z-index:100;background:var(--c-header);border-bottom:1px solid var(--c-border);box-shadow:0 2px 12px rgba(0,0,0,.4)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;height:68px;padding:0 16px}
.header-logo img{height:38px;width:auto;object-fit:contain}
.header-logo{flex-shrink:0}

.header-nav{display:flex;align-items:center;gap:4px}
.header-nav a{display:flex;align-items:center;gap:6px;color:var(--c-text);font-size:13px;font-weight:600;padding:7px 11px;border-radius:8px;transition:all .2s;text-decoration:none}
.header-nav a:hover{background:var(--c-surface);color:var(--c-green)}
.header-nav a svg{width:15px;height:15px;flex-shrink:0;opacity:.75}

.header-actions{display:flex;align-items:center;gap:10px}
.header-online{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--c-text-muted);margin-right:6px}
.header-online-dot{width:7px;height:7px;border-radius:50%;background:var(--c-green);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(0,204,95,.5)}50%{box-shadow:0 0 0 5px rgba(0,204,95,0)}}

.burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:36px;height:36px;background:var(--c-surface);border:none;border-radius:8px;padding:7px;cursor:pointer;flex-shrink:0}
.burger span{display:block;height:2px;background:var(--c-text);border-radius:2px;transition:all .25s}
.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-nav{display:none;position:fixed;top:68px;left:0;right:0;bottom:0;background:var(--c-header);z-index:99;padding:20px 16px;overflow-y:auto;flex-direction:column;gap:6px;animation:fadeInDown .25s ease}
.mobile-nav.open{display:flex}
@keyframes fadeInDown{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.mobile-nav a{display:flex;align-items:center;gap:10px;color:var(--c-text);font-size:15px;font-weight:600;padding:13px 14px;border-radius:10px;background:var(--c-surface);text-decoration:none;transition:all .2s}
.mobile-nav a:hover{background:var(--c-surface2);color:var(--c-green)}
.mobile-nav a svg{width:18px;height:18px;opacity:.8}
.mobile-nav-btns{display:flex;gap:10px;margin-top:10px}
.mobile-nav-btns .btn{flex:1;justify-content:center}

.hero{position:relative;min-height:480px;display:flex;align-items:center;overflow:hidden;background:var(--c-header)}
.hero-bg{position:absolute;inset:0;background-image:url('/spinago-banner.png');background-size:cover;background-position:center;z-index:0}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(26,28,36,.92) 40%,rgba(26,28,36,.5))}
.hero-content{position:relative;z-index:1;max-width:600px;padding:60px 0}
.hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(0,204,95,.15);border:1px solid rgba(0,204,95,.35);color:var(--c-green);font-size:12px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:5px 12px;border-radius:20px;margin-bottom:18px}
.hero-badge svg{width:14px;height:14px}
.hero h1{font-size:clamp(26px,5vw,44px);font-weight:800;line-height:1.2;margin-bottom:14px;color:#fff}
.hero h1 span{color:var(--c-green)}
.hero-sub{font-size:16px;color:rgba(232,234,240,.8);margin-bottom:28px;line-height:1.6}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-trust{display:flex;align-items:center;gap:14px;margin-top:22px}
.hero-trust-item{display:flex;align-items:center;gap:5px;font-size:12px;color:var(--c-text-muted)}
.hero-trust-item svg{width:14px;height:14px;color:var(--c-green)}

.breadcrumbs{background:var(--c-surface);padding:10px 0;border-bottom:1px solid var(--c-border)}
.breadcrumbs-inner{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--c-text-muted);flex-wrap:wrap}
.breadcrumbs-inner a{color:var(--c-text-muted);transition:color .2s}
.breadcrumbs-inner a:hover{color:var(--c-green)}
.breadcrumbs-sep{opacity:.4}
.breadcrumbs-inner span{color:var(--c-green)}

.section{padding:48px 0}
.section-title{font-size:22px;font-weight:800;color:var(--c-text);margin-bottom:20px;display:flex;align-items:center;gap:10px;flex-wrap:wrap;overflow-wrap:break-word}
.section-title svg{color:var(--c-green);width:22px;height:22px;flex-shrink:0}
.section-title span{color:var(--c-green)}

.block-card{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--c-radius-lg);padding:24px;margin-bottom:24px;transition:box-shadow .2s}
.block-card:hover{box-shadow:0 6px 32px rgba(0,0,0,.3)}
.block-card--green-top{border-top:3px solid var(--c-green)}
.block-card--gold-top{border-top:3px solid var(--c-gold)}

.toc-list{list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:10px}
.toc-list li a{display:flex;align-items:center;gap:8px;color:var(--c-text-muted);font-size:13px;font-weight:600;padding:10px 12px;background:var(--c-surface2);border-radius:8px;border:1px solid var(--c-border);transition:all .2s;text-decoration:none}
.toc-list li a:hover{background:rgba(0,204,95,.08);border-color:var(--c-green);color:var(--c-green)}
.toc-list li a svg{width:16px;height:16px;flex-shrink:0;color:var(--c-green)}

.jackpot-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:14px}
.jackpot-card{background:linear-gradient(135deg,var(--c-surface2),var(--c-surface));border:1px solid var(--c-border);border-radius:var(--c-radius-lg);padding:20px 16px;text-align:center;position:relative;overflow:hidden;transition:all .25s}
.jackpot-card::before{content:'';position:absolute;top:-40px;right:-40px;width:100px;height:100px;border-radius:50%;background:rgba(0,204,95,.06)}
.jackpot-card:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(0,204,95,.18)}
.jackpot-card-icon{width:44px;height:44px;background:rgba(0,204,95,.12);border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 10px;color:var(--c-green)}
.jackpot-card-icon svg{width:24px;height:24px}
.jackpot-card-name{font-size:12px;font-weight:700;color:var(--c-text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:8px}
.jackpot-amount{font-size:22px;font-weight:800;color:var(--c-gold);letter-spacing:-0.5px}
.jackpot-amount-sub{font-size:11px;color:var(--c-text-muted);margin-top:2px}

.app-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
.app-table{width:100%;border-collapse:collapse;min-width:480px}
.app-table th,.app-table td{padding:12px 16px;text-align:left;border-bottom:1px solid var(--c-border);font-size:14px}
.app-table th{background:var(--c-surface2);color:var(--c-text-muted);font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.5px}
.app-table td{color:var(--c-text)}
.app-table tr:last-child td{border-bottom:none}
.app-table td:first-child{color:var(--c-text-muted);font-weight:600;width:40%}
.app-table tr:hover td{background:rgba(0,204,95,.04)}
.app-download-btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.app-download-btn{display:flex;align-items:center;gap:10px;background:var(--c-surface2);border:1px solid var(--c-border);border-radius:10px;padding:10px 18px;color:var(--c-text);text-decoration:none;transition:all .2s;font-size:13px}
.app-download-btn:hover{border-color:var(--c-green);color:var(--c-green)}
.app-download-btn svg{width:20px;height:20px}
.app-download-btn-text{display:flex;flex-direction:column;gap:2px}
.app-download-btn-text small{font-size:10px;color:var(--c-text-muted);text-transform:uppercase;letter-spacing:.3px}
.app-download-btn-text strong{font-size:14px;font-weight:700}

.games-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.game-card{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--c-radius-lg);overflow:hidden;transition:all .25s;position:relative}
.game-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(0,204,95,.2);border-color:var(--c-green)}
.game-card-img{width:100%;aspect-ratio:1;object-fit:cover;background:var(--c-surface2)}
.game-card-body{padding:12px}
.game-card-name{font-size:13px;font-weight:700;color:var(--c-text);margin-bottom:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.game-card-provider{font-size:11px;color:var(--c-text-muted);margin-bottom:8px}
.game-card-play{display:flex;width:100%;text-align:center;justify-content:center;padding:7px;background:var(--c-green);color:#fff;border-radius:7px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;text-decoration:none;transition:all .2s}
.game-card-play:hover{background:var(--c-green-dark);color:#fff}
.games-slider-track{display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:8px}
.games-slider-track::-webkit-scrollbar{height:4px}
.games-slider-track::-webkit-scrollbar-track{background:var(--c-surface)}
.games-slider-track::-webkit-scrollbar-thumb{background:var(--c-border);border-radius:4px}
.games-slider-track .game-card{flex:0 0 160px;scroll-snap-align:start}

.content-review{line-height:1.8;color:var(--c-text)}
.content-review h2{font-size:22px;font-weight:800;color:var(--c-text);margin:28px 0 12px;padding-bottom:8px;border-bottom:2px solid var(--c-border)}
.content-review h2:first-child{margin-top:0}
.content-review h3{font-size:18px;font-weight:700;color:var(--c-text);margin:20px 0 10px}
.content-review h4{font-size:16px;font-weight:700;color:var(--c-green);margin:16px 0 8px}
.content-review p{margin-bottom:14px}
.content-review ul,.content-review ol{margin:10px 0 14px 20px}
.content-review ul li,.content-review ol li{margin-bottom:8px;padding-left:6px}
.content-review ul{list-style:none;margin-left:0}
.content-review ul li{padding-left:20px;position:relative}
.content-review ul li::before{content:'';position:absolute;left:0;top:9px;width:8px;height:8px;border-radius:50%;background:var(--c-green)}
.content-review table{width:100%;border-collapse:collapse;margin:14px 0;overflow-x:auto;display:block}
.content-review table th,.content-review table td{padding:10px 14px;text-align:left;border:1px solid var(--c-border);font-size:14px}
.content-review table th{background:var(--c-surface2);color:var(--c-text-muted);font-weight:700}
.content-review strong{color:var(--c-text);font-weight:700}
.content-review em{color:var(--c-text-muted)}
.content-review a{color:var(--c-green)}
.content-review blockquote{border-left:3px solid var(--c-green);padding:12px 16px;background:var(--c-surface2);border-radius:0 8px 8px 0;margin:16px 0;color:var(--c-text-muted)}

.bonus-highlight-card{background:linear-gradient(135deg,rgba(0,204,95,.12),rgba(0,204,95,.04));border:2px solid rgba(0,204,95,.35);border-radius:var(--c-radius-lg);padding:24px;display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-bottom:28px}
.bonus-highlight-icon{width:64px;height:64px;background:rgba(0,204,95,.15);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--c-green)}
.bonus-highlight-icon svg{width:36px;height:36px}
.bonus-highlight-text h3{font-size:18px;font-weight:800;margin-bottom:4px}
.bonus-highlight-text p{color:var(--c-text-muted);font-size:14px;margin-bottom:12px}

.promo-code-box{background:var(--c-surface2);border:2px dashed var(--c-green);border-radius:10px;padding:14px 20px;display:flex;align-items:center;gap:14px;justify-content:space-between;flex-wrap:wrap;margin:16px 0}
.promo-code-label{font-size:12px;color:var(--c-text-muted);font-weight:700;text-transform:uppercase;letter-spacing:.5px;margin-bottom:3px}
.promo-code-value{font-size:22px;font-weight:800;color:var(--c-green);letter-spacing:2px}
.promo-copy-btn{background:var(--c-green);color:#fff;border:none;padding:9px 16px;border-radius:8px;font-size:13px;font-weight:700;cursor:pointer;transition:all .2s;display:flex;align-items:center;gap:6px}
.promo-copy-btn:hover{background:var(--c-green-dark);transform:translateY(-1px)}
.promo-copy-btn svg{width:15px;height:15px}

.bonus-table-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:14px;margin-top:16px}
.bonus-row{background:var(--c-surface2);border:1px solid var(--c-border);border-radius:10px;padding:16px;display:flex;gap:14px;align-items:flex-start;transition:border-color .2s}
.bonus-row:hover{border-color:var(--c-green)}
.bonus-row-icon{width:38px;height:38px;background:rgba(0,204,95,.12);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--c-green)}
.bonus-row-icon svg{width:20px;height:20px}
.bonus-row-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--c-text-muted);margin-bottom:3px}
.bonus-row-value{font-size:15px;font-weight:700;color:var(--c-text)}
.bonus-row-desc{font-size:12px;color:var(--c-text-muted);margin-top:3px}

.comments-list{display:flex;flex-direction:column;gap:16px;margin-bottom:28px}
.comment-item{background:var(--c-surface2);border:1px solid var(--c-border);border-radius:var(--c-radius-lg);padding:18px}
.comment-header{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.comment-avatar{width:40px;height:40px;border-radius:50%;background:var(--c-surface);display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:800;color:var(--c-green);flex-shrink:0;text-transform:uppercase}
.comment-meta-name{font-weight:700;font-size:14px;color:var(--c-text)}
.comment-meta-date{font-size:12px;color:var(--c-text-muted)}
.comment-stars{display:flex;gap:2px;margin-top:2px}
.comment-stars svg{width:13px;height:13px;color:var(--c-gold)}
.comment-text{font-size:14px;color:var(--c-text);line-height:1.6}

.comment-form{background:var(--c-surface2);border:1px solid var(--c-border);border-radius:var(--c-radius-lg);padding:24px}
.comment-form h3{font-size:17px;font-weight:800;margin-bottom:18px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;font-weight:600;color:var(--c-text-muted);margin-bottom:7px}
.form-group input,.form-group textarea,.form-group select{width:100%;background:var(--c-surface);border:1px solid var(--c-border);border-radius:8px;padding:11px 14px;color:var(--c-text);font-family:var(--font-main);font-size:14px;outline:none;transition:border-color .2s;-webkit-appearance:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--c-green);box-shadow:0 0 0 3px rgba(0,204,95,.1)}
.form-group textarea{resize:vertical;min-height:100px}
.form-group select option{background:var(--c-surface)}
.form-stars-row{display:flex;gap:6px;margin-bottom:16px}
.form-star{width:32px;height:32px;cursor:pointer;color:var(--c-border);transition:color .15s}
.form-star.active,.form-star:hover{color:var(--c-gold)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

.author-block{background:linear-gradient(135deg,var(--c-surface2),var(--c-surface));border:1px solid var(--c-border);border-radius:var(--c-radius-lg);padding:24px;display:flex;gap:20px;align-items:flex-start;flex-wrap:wrap}
.author-photo{width:80px;height:80px;border-radius:50%;object-fit:cover;border:3px solid var(--c-green);flex-shrink:0;background:var(--c-surface)}
.author-info h3{font-size:18px;font-weight:800;margin-bottom:3px}
.author-info .author-role{font-size:13px;color:var(--c-green);font-weight:600;margin-bottom:8px}
.author-info .author-bio{font-size:14px;color:var(--c-text-muted);line-height:1.6;margin-bottom:12px}
.author-links{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.author-links a{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--c-text-muted);background:var(--c-surface2);padding:6px 12px;border-radius:20px;border:1px solid var(--c-border);transition:all .2s;text-decoration:none}
.author-links a:hover{border-color:var(--c-green);color:var(--c-green)}
.author-links a svg{width:14px;height:14px}
.author-dates{display:flex;gap:16px;margin-top:12px;flex-wrap:wrap}
.author-dates span{font-size:12px;color:var(--c-text-muted);display:flex;align-items:center;gap:5px}
.author-dates span svg{width:13px;height:13px}

.site-footer{background:var(--c-header);border-top:1px solid var(--c-border);padding:48px 0 24px}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:32px;margin-bottom:36px}
.footer-brand-logo img{height:34px;width:auto;margin-bottom:14px}
.footer-brand-desc{font-size:13px;color:var(--c-text-muted);line-height:1.7;margin-bottom:14px}
.footer-country{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--c-text-muted);margin-bottom:12px}
.footer-country-flag{font-size:20px;line-height:1}
.footer-social{display:flex;gap:8px;margin-top:8px}
.footer-social a{width:34px;height:34px;border-radius:8px;background:var(--c-surface);border:1px solid var(--c-border);display:flex;align-items:center;justify-content:center;color:var(--c-text-muted);transition:all .2s}
.footer-social a:hover{background:var(--c-surface2);border-color:var(--c-green);color:var(--c-green)}
.footer-social a svg{width:16px;height:16px}
.footer-nav-title{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.8px;color:var(--c-text-muted);margin-bottom:14px}
.footer-nav-links{display:flex;flex-direction:column;gap:8px}
.footer-nav-links a{font-size:13px;color:var(--c-text-muted);text-decoration:none;transition:color .2s}
.footer-nav-links a:hover{color:var(--c-green)}
.footer-divider{border:none;border-top:1px solid var(--c-border);margin:28px 0}
.footer-logos-section{margin-bottom:20px}
.footer-logos-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--c-text-muted);margin-bottom:10px}
.footer-logos-row{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.footer-logo-badge{background:var(--c-surface);border:1px solid var(--c-border);border-radius:7px;padding:6px 12px;font-size:11px;font-weight:700;color:var(--c-text-muted);display:flex;align-items:center;gap:5px}
.footer-logo-badge svg{width:14px;height:14px;opacity:.7}
.footer-bottom{display:flex;align-items:flex-start;gap:16px;flex-wrap:wrap;padding-top:20px;border-top:1px solid var(--c-border)}
.footer-copyright{font-size:12px;color:var(--c-text-muted);line-height:1.7}
.footer-copyright a{color:var(--c-text-muted);text-decoration:underline}
.footer-age{width:34px;height:34px;border-radius:50%;background:#e74c3c;color:#fff;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0}

.sticky-widget{position:fixed;bottom:0;left:0;right:0;z-index:200;background:linear-gradient(90deg,#1A1C24 0%,rgba(0,204,95,.08) 100%);border-top:2px solid var(--c-green);padding:12px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px;box-shadow:0 -4px 24px rgba(0,0,0,.5)}
.sticky-widget-text{display:flex;flex-direction:column;gap:2px}
.sticky-widget-text strong{font-size:15px;font-weight:800;color:#fff}
.sticky-widget-text span{font-size:12px;color:var(--c-text-muted)}
.sticky-widget-right{display:flex;align-items:center;gap:10px}
.sticky-close{width:28px;height:28px;background:var(--c-surface);border:1px solid var(--c-border);border-radius:6px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--c-text-muted);transition:all .2s;flex-shrink:0}
.sticky-close:hover{color:var(--c-text);border-color:var(--c-text-muted)}
.sticky-close svg{width:14px;height:14px}

.faq-list{display:flex;flex-direction:column;gap:10px}
.faq-item{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--c-radius)}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 18px;cursor:pointer;font-weight:700;font-size:14px;color:var(--c-text);user-select:none;transition:color .2s}
.faq-q:hover{color:var(--c-green)}
.faq-q-icon{width:22px;height:22px;background:var(--c-surface2);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .25s,background .2s}
.faq-q-icon svg{width:12px;height:12px}
.faq-item.open .faq-q-icon{transform:rotate(180deg);background:rgba(0,204,95,.15);color:var(--c-green)}
.faq-a{display:none;padding:0 18px 16px;font-size:14px;color:var(--c-text-muted);line-height:1.7;border-top:1px solid var(--c-border)}
.faq-item.open .faq-a{display:block}

.rating-stars{display:flex;gap:4px}
.rating-stars svg{color:var(--c-gold);width:20px;height:20px}
.rating-score{font-size:32px;font-weight:800;color:var(--c-text);line-height:1}
.rating-count{font-size:12px;color:var(--c-text-muted)}

.tag{display:inline-block;padding:3px 9px;border-radius:20px;font-size:11px;font-weight:700;letter-spacing:.3px}
.tag--green{background:rgba(0,204,95,.15);color:var(--c-green);border:1px solid rgba(0,204,95,.25)}
.tag--gold{background:rgba(245,197,24,.1);color:var(--c-gold);border:1px solid rgba(245,197,24,.2)}

.wp-block-separator,.wp-caption,.wp-video{display:none}
.entry-content{display:block}.single-post{display:block}
.elementor-widget-wrap,.elementor-section{display:contents}

body.fixed{overflow:hidden}

@media(max-width:1024px){
.games-grid{grid-template-columns:repeat(3,1fr)}
.footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
.header-nav{display:none}
.burger{display:flex}
.header-inner{padding:0 12px}
.header-online,.header-actions>.btn{display:none}
.hero{min-height:360px}
.hero-content{padding:40px 0}
.section{padding:32px 0}
.games-grid{display:none}
.games-grid.mobile-hidden{display:none}
.games-mobile{display:block}
.footer-top{grid-template-columns:1fr}
.bonus-highlight-card{flex-direction:column;gap:14px}
.form-row{grid-template-columns:1fr}
.author-block{flex-direction:column;gap:14px}
.author-photo{width:60px;height:60px}
.jackpot-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
.hero h1{font-size:22px}
.btn--lg{padding:12px 20px;font-size:14px}
.jackpot-grid{grid-template-columns:1fr 1fr}
.promo-code-box{flex-direction:column;gap:10px}
.sticky-widget{flex-wrap:wrap;gap:8px}
.toc-list{grid-template-columns:1fr}
}
