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

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

:root {
  --clr-header: #080D15;
  --clr-primary: #0070F2;
  --clr-secondary: #002959;
  --clr-bg: #FFFFFF;
  --clr-text: #1a1a2e;
  --clr-text-light: #f0f4ff;
  --clr-muted: #5a6a8a;
  --clr-border: #e0e8f5;
  --clr-card: #f5f8ff;
  --clr-success: #0caa6e;
  --clr-warning: #f5a623;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,112,242,0.08);
  --shadow-md: 0 6px 24px rgba(0,112,242,0.13);
  --shadow-lg: 0 12px 40px rgba(0,41,89,0.18);
  --font: 'Open Sans', Arial, sans-serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--font); color: var(--clr-text); background: var(--clr-bg); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-secondary); }

img { max-width: 100%; height: auto; }

.xw3k9 { display: none; }
.pq7m2 { visibility: hidden; height: 0; overflow: hidden; }
.rz4t1 { opacity: 0; pointer-events: none; position: absolute; }

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

.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; }

.site-header { background: var(--clr-header); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 20px; height: 68px; max-width: 1200px; margin: 0 auto; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 56px; width: auto; display: block; }
.header-logo a { display: block; }

.header-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.header-nav a { display: flex; align-items: center; gap: 6px; color: var(--clr-text-light); font-size: 0.85rem; font-weight: 500; padding: 8px 12px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); white-space: nowrap; }
.header-nav a:hover { background: rgba(0,112,242,0.18); color: #fff; }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.online-count { display: flex; align-items: center; gap: 6px; color: rgba(240,244,255,0.7); font-size: 0.75rem; white-space: nowrap; }
.online-dot { width: 8px; height: 8px; background: #0caa6e; border-radius: 50%; animation: pulse-dot 1.8s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100%{ box-shadow: 0 0 0 0 rgba(12,170,110,0.6); } 50%{ box-shadow: 0 0 0 5px rgba(12,170,110,0); } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font); font-weight: 600; font-size: 0.875rem; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition); text-decoration: none; white-space: nowrap; padding: 9px 18px; line-height: 1; }
.btn:active { transform: scale(0.97); }
.btn-login { background: var(--clr-secondary); color: #fff; }
.btn-login:hover { background: #003a7a; color: #fff; box-shadow: var(--shadow-sm); }
.btn-signup { background: var(--clr-primary); color: #fff; }
.btn-signup:hover { background: #0056c7; color: #fff; box-shadow: var(--shadow-md); }
.btn-bonus { background: linear-gradient(135deg, #0070F2, #002959); color: #fff; font-size: 0.95rem; padding: 12px 28px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.btn-bonus:hover { background: linear-gradient(135deg, #0056c7, #003a7a); color: #fff; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-play { background: var(--clr-primary); color: #fff; font-size: 1rem; font-weight: 700; padding: 13px 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.btn-play:hover { background: #0056c7; color: #fff; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--clr-text-light); border: 2px solid rgba(255,255,255,0.3); font-size: 0.95rem; padding: 11px 26px; border-radius: var(--radius-md); }
.btn-secondary:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.btn-get { background: var(--clr-success); color: #fff; font-size: 1rem; font-weight: 700; padding: 13px 32px; border-radius: var(--radius-md); box-shadow: 0 4px 16px rgba(12,170,110,0.3); }
.btn-get:hover { background: #09956;  color: #fff; box-shadow: 0 6px 24px rgba(12,170,110,0.4); transform: translateY(-2px); }
.btn-store { display: inline-flex; align-items: center; gap: 8px; background: var(--clr-header); color: #fff; padding: 10px 20px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15); font-size: 0.82rem; transition: background var(--transition), border-color var(--transition); }
.btn-store:hover { background: #111827; color: #fff; border-color: var(--clr-primary); }
.btn-store svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-store span { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.btn-store .store-label { font-size: 0.65rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-store .store-name { font-size: 0.9rem; font-weight: 600; }

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

.hero { position: relative; background: var(--clr-header) url('/ripper-casino-title-img.webp') center center / cover no-repeat; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,13,21,0.88) 0%, rgba(0,41,89,0.72) 60%, rgba(0,112,242,0.3) 100%); }
.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 60px 20px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-text { flex: 1; min-width: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,112,242,0.2); border: 1px solid rgba(0,112,242,0.4); color: #7db8ff; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 20px; margin-bottom: 18px; }
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; text-wrap: balance; }
.hero h1 span { color: var(--clr-primary); }
.hero-sub { font-size: 1.05rem; color: rgba(240,244,255,0.8); margin-bottom: 28px; line-height: 1.6; max-width: 520px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-card { flex-shrink: 0; background: rgba(8,13,21,0.82); backdrop-filter: blur(12px); border: 1px solid rgba(0,112,242,0.3); border-radius: var(--radius-lg); padding: 32px 28px; min-width: 260px; max-width: 300px; text-align: center; }
.hero-card-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(240,244,255,0.55); margin-bottom: 8px; }
.hero-card-bonus { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 6px; }
.hero-card-sub { font-size: 0.8rem; color: #7db8ff; margin-bottom: 20px; }
.hero-card .btn-play { width: 100%; margin-bottom: 10px; }
.hero-card-note { font-size: 0.7rem; color: rgba(240,244,255,0.4); line-height: 1.5; }

.breadcrumbs-wrap { background: var(--clr-card); border-bottom: 1px solid var(--clr-border); }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; padding: 10px 20px; max-width: 1200px; margin: 0 auto; font-size: 0.82rem; color: var(--clr-muted); list-style: none; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: '›'; color: var(--clr-muted); }
.breadcrumbs a { color: var(--clr-muted); }
.breadcrumbs a:hover { color: var(--clr-primary); }
.breadcrumbs [aria-current="page"] { color: var(--clr-text); font-weight: 500; }

.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-title { font-size: clamp(1.3rem, 3vw, 1.75rem); font-weight: 700; color: var(--clr-text); margin-bottom: 8px; text-wrap: balance; }
.section-sub { color: var(--clr-muted); font-size: 0.95rem; margin-bottom: 28px; }
.section-header { margin-bottom: 28px; }

.card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--clr-border); box-shadow: var(--shadow-sm); padding: 28px; margin-bottom: 24px; }
.card-dark { background: var(--clr-header); color: var(--clr-text-light); border-color: rgba(0,112,242,0.2); }

.info-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--clr-border); }
.info-table { width: 100%; border-collapse: collapse; background: #fff; }
.info-table th { background: var(--clr-header); color: var(--clr-text-light); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 18px; text-align: left; white-space: nowrap; }
.info-table td { padding: 13px 18px; font-size: 0.92rem; color: var(--clr-text); border-bottom: 1px solid var(--clr-border); vertical-align: middle; }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: var(--clr-card); }
.info-table .param-icon { width: 38px; height: 38px; background: rgba(0,112,242,0.08); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; vertical-align: middle; flex-shrink: 0; }
.info-table .param-icon svg { width: 18px; height: 18px; color: var(--clr-primary); }
.info-table .param-cell { display: flex; align-items: center; }
.info-table .param-name { font-weight: 600; color: var(--clr-secondary); }
.info-table .val-highlight { color: var(--clr-primary); font-weight: 600; }
.info-table .val-badge { display: inline-block; background: rgba(12,170,110,0.1); color: var(--clr-success); border-radius: 4px; font-size: 0.78rem; font-weight: 600; padding: 2px 8px; }

.payment-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--clr-border); }
.payment-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 680px; }
.payment-table th { background: var(--clr-secondary); color: #fff; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 13px 16px; text-align: left; white-space: nowrap; }
.payment-table td { padding: 12px 16px; font-size: 0.88rem; color: var(--clr-text); border-bottom: 1px solid var(--clr-border); vertical-align: middle; }
.payment-table tr:last-child td { border-bottom: none; }
.payment-table tr:hover td { background: var(--clr-card); }
.payment-logo { display: flex; align-items: center; gap: 8px; font-weight: 600;flex-wrap: wrap; }
.payment-logo svg { width: 28px; height: 20px; flex-shrink: 0; }

.app-grid { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.app-info { flex: 1; min-width: 280px; }
.app-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--clr-border); }
.app-table { width: 100%; border-collapse: collapse; background: #fff; }
.app-table td { padding: 11px 16px; font-size: 0.88rem; border-bottom: 1px solid var(--clr-border); vertical-align: middle; }
.app-table tr:last-child td { border-bottom: none; }
.app-table td:first-child { font-weight: 600; color: var(--clr-secondary); width: 45%; }
.app-table tr:hover td { background: var(--clr-card); }
.app-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.app-visual { flex-shrink: 0; text-align: center; }
.app-mockup { width: 180px; background: var(--clr-header); border-radius: 28px; border: 3px solid rgba(0,112,242,0.3); padding: 20px 14px 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.app-screen { width: 100%; background: linear-gradient(160deg, #001833, #002d6e); border-radius: 16px; aspect-ratio: 9/16; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.app-screen svg { width: 40px; height: 40px; color: var(--clr-primary); }
.app-screen span { color: rgba(240,244,255,0.7); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.wheel-block { background: linear-gradient(135deg, var(--clr-header) 0%, #0a1628 100%); border-radius: var(--radius-lg); padding: 40px 28px; text-align: center; color: var(--clr-text-light); }
.wheel-block .section-title { color: #fff; }
.wheel-block .section-sub { color: rgba(240,244,255,0.65); }
.wheel-container { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.wheel-wrap { position: relative; width: 300px; height: 300px; flex-shrink: 0; }
.wheel-canvas { border-radius: 50%; border: 6px solid rgba(0,112,242,0.4); box-shadow: 0 0 40px rgba(0,112,242,0.25), 0 0 0 2px rgba(255,255,255,0.08);width: 312px;height: 312px; }
.wheel-pointer { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 28px solid #fff; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); }
.wheel-center { position: absolute; top: 52%; left: 52%; transform: translate(-50%, -50%); width: 42px; height: 42px; background: #fff; border-radius: 50%; border: 4px solid var(--clr-primary); box-shadow: 0 0 16px rgba(0,112,242,0.4); }
.wheel-controls { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.wheel-result { padding: 20px 28px; background: rgba(0,112,242,0.15); border: 1px solid rgba(0,112,242,0.3); border-radius: var(--radius-md); min-width: 260px; display: none; }
.wheel-result.visible { display: block; animation: fadeIn 0.4s ease; }
.wheel-result.win { background: rgba(12,170,110,0.15); border-color: rgba(12,170,110,0.4); }
.wheel-result.lose { background: rgba(200,40,40,0.1); border-color: rgba(200,40,40,0.3); }
.wheel-result-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.wheel-result-text { font-size: 0.9rem; color: rgba(240,244,255,0.75); margin-bottom: 14px; }
.wheel-spin-count { font-size: 0.78rem; color: rgba(240,244,255,0.45); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin-wheel { from { transform: rotate(0deg); } to { transform: rotate(var(--spin-end)); } }

.content-review { line-height: 1.75; color: var(--clr-text); }
.content-review h2 { font-size: 1.45rem; font-weight: 700; margin: 32px 0 12px; color: var(--clr-text); border-left: 4px solid var(--clr-primary); padding-left: 14px; }
.content-review h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; color: var(--clr-secondary); }
.content-review h4 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; }
.content-review p { margin-bottom: 16px; }
.content-review ul, .content-review ol { margin: 12px 0 16px 24px; }
.content-review li { margin-bottom: 6px; }
.content-review table { width: 100%; border-collapse: collapse; margin: 20px 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--clr-border); }
.content-review th { background: var(--clr-header); color: #fff; padding: 11px 14px; text-align: left; font-size: 0.85rem; }
.content-review td { padding: 10px 14px; border-bottom: 1px solid var(--clr-border); font-size: 0.9rem; }
.content-review tr:last-child td { border-bottom: none; }
.content-review a { color: var(--clr-primary); text-decoration: underline; text-underline-offset: 3px; }
.content-review blockquote { border-left: 4px solid var(--clr-primary); padding: 12px 20px; background: var(--clr-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; font-style: italic; color: var(--clr-muted); }
.content-review strong { color: var(--clr-secondary); }
.content-review hr { border: none; border-top: 1px solid var(--clr-border); margin: 28px 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 0.97rem; color: var(--clr-text); background: none; border: none; width: 100%; text-align: left; font-family: var(--font); transition: color var(--transition); }
.faq-question:hover { color: var(--clr-primary); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--clr-primary); transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--clr-primary); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 0.9rem; color: var(--clr-muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.author-card { display: flex; gap: 24px; align-items: flex-start; background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px; }
.author-avatar { flex-shrink: 0; }
.author-avatar img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-primary); }
.author-info { flex: 1; min-width: 0; }
.author-name { font-size: 1.1rem; font-weight: 700; color: var(--clr-text); margin-bottom: 2px; }
.author-role { font-size: 0.82rem; font-weight: 600; color: var(--clr-primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.author-bio { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.65; margin-bottom: 12px; }
.author-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.author-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--clr-secondary); background: rgba(0,41,89,0.07); border-radius: 20px; padding: 4px 12px; transition: background var(--transition), color var(--transition); }
.author-link:hover { background: var(--clr-primary); color: #fff; }
.author-link svg { width: 14px; height: 14px; }
.author-meta { font-size: 0.78rem; color: var(--clr-muted); }
.author-meta time { font-weight: 500; color: var(--clr-text); }

.site-footer { background: var(--clr-header); color: rgba(240,244,255,0.7); margin-top: auto; }
.footer-top { padding: 48px 0 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-top-inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-brand { flex: 0 0 260px; }
.footer-logo img { height: 60px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.83rem; line-height: 1.6; color: rgba(240,244,255,0.5); margin-bottom: 16px; }
.footer-country { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: rgba(240,244,255,0.7); }
.footer-flag { width: auto;height: 26px; }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-social { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); display: inline-flex; align-items: center; justify-content: center; color: rgba(240,244,255,0.6); transition: background var(--transition), color var(--transition); }
.footer-social:hover { background: var(--clr-primary); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(240,244,255,0.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(240,244,255,0.65); font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }
.footer-contact a { color: rgba(240,244,255,0.65); font-size: 0.85rem; }
.footer-contact a:hover { color: #fff; }

.footer-mid { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-mid-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-logo-row { margin-bottom: 20px; }
.footer-logo-row h5 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(240,244,255,0.35); margin-bottom: 12px; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-logo-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.75rem; color: rgba(240,244,255,0.6); font-weight: 600; white-space: nowrap; }
.footer-logo-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-legal { font-size: 0.75rem; color: rgba(240,244,255,0.35); line-height: 1.7; margin-bottom: 8px; }
.footer-copy { font-size: 0.78rem; color: rgba(240,244,255,0.4); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--clr-header); border-top: 2px solid var(--clr-primary); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; box-shadow: 0 -4px 24px rgba(0,0,0,0.4); }
.widget-text { color: rgba(240,244,255,0.85); font-size: 0.85rem; line-height: 1.4; }
.widget-text strong { color: #fff; font-size: 0.95rem; display: block; }
.widget-cta { flex-shrink: 0; }
.widget-close { background: none; border: none; cursor: pointer; color: rgba(240,244,255,0.4); padding: 4px; flex-shrink: 0; transition: color var(--transition); }
.widget-close:hover { color: #fff; }
.widget-close svg { width: 18px; height: 18px; }

.info-page-content h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 20px; }
.info-page-content h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 10px; }
.info-page-content h3 { font-size: 1.05rem; font-weight: 700; margin: 20px 0 8px; }
.info-page-content p { margin-bottom: 14px; line-height: 1.7; color: var(--clr-muted); }
.info-page-content ul, .info-page-content ol { margin: 10px 0 14px 22px; }
.info-page-content li { margin-bottom: 6px; color: var(--clr-muted); line-height: 1.6; }
.info-page-content a { color: var(--clr-primary); text-decoration: underline; text-underline-offset: 3px; }

.main-pad { padding: 48px 0 60px; flex: 1; }

.pm-icon { display: inline-flex; align-items: center; justify-content: center; width: auto; height: 28px; background: #f0f4ff; border: 1px solid var(--clr-border); border-radius: 4px; font-size: 0.65rem; font-weight: 700; color: var(--clr-secondary); letter-spacing: 0.02em; }

.wp-block-group { display: block; }
.entry-content { display: block; }
.wp-block-separator { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }
.elementor-widget-wrap { display: flex; flex-wrap: wrap; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wp-block-image { margin: 0; }
.has-text-align-center { text-align: center; }
.aligncenter { display: block; margin: 0 auto; }
.size-full { max-width: 100%; height: auto; }

.rating { display: flex; align-items: center; gap: 4px; }
.rating svg { width: 16px; height: 16px; color: var(--clr-warning); }
.rating-num { font-weight: 600; font-size: 0.88rem; margin-left: 4px; color: var(--clr-text); }

.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--clr-border) 30%, var(--clr-border) 70%, transparent); margin: 0; }

@media (max-width: 900px) {
  .header-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--clr-header); flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 16px 20px; border-top: 1px solid rgba(255,255,255,0.08); z-index: 999; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
  .header-nav.open { display: flex; }
  .header-nav a { width: 100%; padding: 11px 14px; font-size: 0.9rem; }
  .burger { display: flex; }
  .online-count { display: none; }
  .hero-inner { flex-direction: column; padding: 40px 20px 50px; }
  .hero-card { max-width: 100%; width: 100%; }
  .hero-card-bonus { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 14px; gap: 8px; }
  .btn-login, .btn-signup { padding: 7px 12px; font-size: 0.8rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 0.93rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-play, .btn-bonus, .btn-secondary { width: 100%; justify-content: center; }
  .section { padding: 36px 0; }
  .author-card { flex-direction: column; gap: 16px; }
  .app-grid { flex-direction: column; }
  .app-mockup { display: none; }
  .sticky-widget { flex-wrap: wrap; padding: 10px 16px; gap: 8px; }
  .footer-brand { flex: 0 0 100%; }
  .footer-top-inner { gap: 28px; }
  .content-review {padding: 24px;}
  .footer-top-inner {flex-direction: column;}
}

@media (max-width: 480px) {
  .wheel-wrap { width: 250px; height: 250px; }
  .wheel-canvas { width: 250px; height: 250px; }
  .content-review {padding: 20px;}
}
@media (max-width: 420px) {
  .content-review {padding: 16px;}
}