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

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

:root {
  --color-nav: #0d4071;
  --color-nav-dark: #092d52;
  --color-btn-orange: #e47d19;
  --color-btn-green: #27762c;
  --color-bg: #f1edb3;
  --color-bg-dark: #e8e4a0;
  --color-text: #1a1a1a;
  --color-text-light: #ffffff;
  --color-accent: #e47d19;
  --color-border: #c8c090;
  --color-card: #fffdf0;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(13,64,113,0.10);
  --shadow-md: 0 4px 20px rgba(13,64,113,0.15);
  --shadow-lg: 0 8px 40px rgba(13,64,113,0.20);
  --font-main: 'Oswald', sans-serif;
}

html { scroll-behavior: smooth; background: var(--color-bg); }
body { font-family: var(--font-main); font-weight: 300; font-size: 16px; color: var(--color-text); background: var(--color-bg); line-height: 1.6; overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.3em; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container--full { width: 100%; padding: 0; }

.row { display: flex; flex-wrap: wrap; align-items: center; }
.row--start { align-items: flex-start; }
.col { flex: 1; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt1 { margin-top: 8px; }
.mb1 { margin-bottom: 8px; }
.mt2 { margin-top: 16px; }
.mb2 { margin-bottom: 16px; }
.mt3 { margin-top: 24px; }
.mb3 { margin-bottom: 24px; }
.mt4 { margin-top: 32px; }
.mb4 { margin-bottom: 32px; }

.box { padding: 16px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 600; line-height: 1.25; color: var(--color-text); }
h1 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.4em; }
p { margin-bottom: 1em; line-height: 1.65; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: var(--radius-sm); font-family: var(--font-main); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em; cursor: pointer; border: none; text-decoration: none; transition: transform 0.18s, box-shadow 0.18s, background 0.18s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--color-btn-green); color: #fff; }
.btn--green:hover { background: #2e8f34; }
.btn--orange { background: var(--color-btn-orange); color: #fff; }
.btn--orange:hover { background: #cc6e10; }
.btn--outline { background: transparent; color: var(--color-text-light); border: 2px solid rgba(255,255,255,0.7); }
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--sm { padding: 7px 16px; font-size: 0.85rem; }
.btn--lg { padding: 14px 34px; font-size: 1.1rem; }
.btn--md { padding: 10px 22px; }
.btn--signin { background: var(--color-btn-orange); color: #fff; }
.btn--signup { background: var(--color-btn-green); color: #fff; }
.btn--bonus { background: #b8390a; color: #fff; }

.site-header { background: var(--color-nav); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; gap: 12px; max-width: 1200px; margin: 0 auto; }
.header-logo img { height: 30px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a { color: rgba(255,255,255,0.88); font-family: var(--font-main); font-weight: 400; font-size: 0.88rem; letter-spacing: 0.04em; padding: 7px 10px; border-radius: var(--radius-sm); transition: background 0.15s, color 0.15s; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.header-nav a:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }
.header-nav svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 19px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0; }
.burger span { display: block; height: 3px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav { display: none; background: var(--color-nav-dark); flex-direction: column; padding: 12px 16px; gap: 4px; }
.mobile-nav.active { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.9); font-family: var(--font-main); font-size: 1rem; padding: 10px 12px; border-radius: var(--radius-sm); transition: background 0.15s; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.1); }
.mobile-nav svg { width: 16px; height: 16px; }

.hero { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; background: var(--color-nav) url('/images/queen-of-the-nile-hero.webp') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,29,52,0.92) 0%, rgba(9,29,52,0.65) 55%, rgba(9,29,52,0.25) 100%); }
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 48px 16px; width: 100%; }
.hero-content { flex: 1; max-width: 560px; }
.hero-badge { display: inline-block; background: var(--color-btn-orange); color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 14px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 24px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { flex-shrink: 0; max-width: 340px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: auto; border-radius: var(--radius-md); }

.section-title { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; color: var(--color-nav); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.section-title svg { width: 22px; height: 22px; color: var(--color-btn-orange); flex-shrink: 0; }
.section-sub { color: #555; margin-bottom: 28px; font-size: 0.97rem; }
.section-wrap { padding: 56px 0; }
.section-wrap--alt { background: var(--color-bg-dark); }
.section-wrap--dark { background: var(--color-nav); color: #fff; }

.game-details-layout { display: flex; gap: 28px; align-items: flex-start; }
.game-details-table-wrap { flex: 1; min-width: 0; overflow-x: auto; }
.game-details-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: var(--color-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.game-details-table th, .game-details-table td { padding: 10px 14px; border: 1.5px solid var(--color-border); text-align: left; }
.game-details-table th { background: var(--color-nav); color: #fff; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; white-space: nowrap; }
.game-details-table tr:nth-child(even) td { background: rgba(241,237,179,0.5); }
.game-details-table td:first-child { font-weight: 500; color: var(--color-nav); white-space: nowrap; display: flex; align-items: center; gap: 7px; }
.game-details-table td:first-child svg { width: 15px; height: 15px; color: var(--color-btn-orange); flex-shrink: 0; }
.game-demo-wrap { width: 100%; max-width: 420px; flex-shrink: 0; }
.game-demo-frame { background: var(--color-nav-dark); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; }
.game-demo-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.game-demo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 24px; color: #fff; text-align: center; width: 100%; height: 100%; }
.game-demo-placeholder img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.game-demo-cta { margin-top: 12px; text-align: center; }

.advantages-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.advantage-card { flex: 1 1 200px; background: var(--color-card); border-radius: var(--radius-md); padding: 22px 18px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--color-border); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.advantage-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--color-nav) 0%, #1a6ab5 100%); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.advantage-icon svg { width: 24px; height: 24px; color: #fff; }
.advantage-card h3 { font-size: 1rem; font-weight: 600; color: var(--color-nav); margin: 0; }
.advantage-card p { font-size: 0.88rem; color: #444; margin: 0; line-height: 1.5; }

.demo-section { background: var(--color-nav-dark); padding: 48px 0; }
.demo-section .section-title { color: #fff; }
.demo-section .section-sub { color: rgba(255,255,255,0.7); }
.demo-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.demo-frame-main { width: 100%; max-width: 800px; background: #000; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 0 40px rgba(228,125,25,0.3); aspect-ratio: 16/9; position: relative; }
.demo-frame-main iframe { width: 100%; height: 100%; border: none; display: block; }
.demo-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(9,29,52,0.85); z-index: 2; transition: opacity 0.3s; }
.demo-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-overlay img { width: 120px; height: 120px; border-radius: var(--radius-md); object-fit: cover; margin-bottom: 16px; }
.demo-overlay p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 20px; }
.demo-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.bonuses-track { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.bonuses-track::-webkit-scrollbar { height: 5px; }
.bonuses-track::-webkit-scrollbar-track { background: var(--color-bg-dark); border-radius: 10px; }
.bonuses-track::-webkit-scrollbar-thumb { background: var(--color-nav); border-radius: 10px; }
.bonus-card { flex: 0 0 calc(33.333% - 14px); min-width: 260px; background: var(--color-card); border-radius: var(--radius-md); padding: 24px 20px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--color-border); scroll-snap-align: start; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; gap: 10px; }
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bonus-card-header { display: flex; align-items: center; gap: 12px; }
.bonus-casino-logo { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--color-nav); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.bonus-casino-name { font-weight: 600; font-size: 1rem; color: var(--color-nav); }
.bonus-badge { display: inline-block; background: var(--color-btn-orange); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 2px 10px; border-radius: 20px; }
.bonus-amount { font-size: 1.5rem; font-weight: 700; color: var(--color-btn-green); }
.bonus-desc { font-size: 0.88rem; color: #555; flex: 1; }
.bonus-terms { font-size: 0.75rem; color: #888; }

.similar-games-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.game-card { flex: 1 1 180px; background: var(--color-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1.5px solid var(--color-border); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.game-card-img { background: var(--color-nav-dark); aspect-ratio: 4/3; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.game-card-name { font-weight: 600; font-size: 0.97rem; color: var(--color-nav); }
.game-card-desc { font-size: 0.82rem; color: #555; flex: 1; line-height: 1.5; }
.game-card-actions { display: flex; gap: 8px; }
.game-card-actions .btn { flex: 1; font-size: 0.8rem; padding: 7px 10px; }

.content-review { background: var(--color-card); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--color-border); }
.content-review h2, .content-review h3, .content-review h4 { color: var(--color-nav); margin-bottom: 0.5em; margin-top: 1em; }
.content-review p { line-height: 1.7; margin-bottom: 1em; color: #333; }
.content-review ul, .content-review ol { margin-bottom: 1em; }
.content-review li { line-height: 1.65; color: #333; margin-bottom: 0.4em; }
.content-review table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.content-review table th, .content-review table td { border: 1.5px solid var(--color-border); padding: 9px 13px; text-align: left; }
.content-review table th { background: var(--color-nav); color: #fff; }
.content-review a { color: var(--color-btn-orange); text-decoration: underline; }
.content-review blockquote { border-left: 4px solid var(--color-btn-orange); padding-left: 16px; color: #555; font-style: italic; margin: 1em 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--color-card); border-radius: var(--radius-md); border: 1.5px solid var(--color-border); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; background: none; border: none; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; text-align: left; font-family: var(--font-main); font-size: 1rem; font-weight: 600; color: var(--color-nav); transition: background 0.15s; }
.faq-question:hover { background: rgba(13,64,113,0.05); }
.faq-question.active { background: rgba(13,64,113,0.08); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--color-nav); display: flex; align-items: center; justify-content: center; transition: transform 0.25s; }
.faq-icon svg { width: 12px; height: 12px; color: #fff; }
.faq-question.active .faq-icon { transform: rotate(180deg); background: var(--color-btn-orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding: 10px 20px 18px; font-size: 0.93rem; line-height: 1.7; color: #333; }

.author-card { background: var(--color-card); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--color-border); display: flex; gap: 24px; align-items: flex-start; }
.author-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--color-nav); }
.author-info h3 { color: var(--color-nav); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.author-meta { font-size: 0.82rem; color: #777; margin-bottom: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.author-meta span { display: inline-flex; align-items: center; gap: 4px; }
.author-meta svg { width: 13px; height: 13px; }
.author-bio { font-size: 0.9rem; color: #444; line-height: 1.65; margin-bottom: 10px; }
.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-socials a { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--color-btn-orange); text-decoration: none; border: 1px solid var(--color-btn-orange); padding: 4px 10px; border-radius: 20px; transition: background 0.15s; }
.author-socials a:hover { background: var(--color-btn-orange); color: #fff; }
.author-dates { font-size: 0.78rem; color: #999; margin-top: 8px; }

.site-footer { background: var(--color-nav); color: rgba(255,255,255,0.85); padding: 40px 0 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; padding-bottom: 28px; }
.footer-col { flex: 1 1 180px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.footer-logo a {display: block;width: fit-content;}
.footer-logo img { height: 30px; width: auto; margin-bottom: 12px; }
.footer-desc { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.7); }
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 6px; }
.footer-nav a { color: rgba(255,255,255,0.75); font-size: 0.87rem; text-decoration: none; transition: color 0.15s; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-payment-icon { background: rgba(255,255,255,0.12); border-radius: 4px; padding: 5px 10px; font-size: 0.73rem; font-weight: 600; color: #fff; letter-spacing: 0.03em; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: background 0.15s; color: #fff; text-decoration: none; }
.footer-social-link:hover { background: var(--color-btn-orange); }
.footer-social-link svg { width: 18px; height: 18px; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-trust-badge { background: rgba(255,255,255,0.10); border-radius: var(--radius-sm); padding: 5px 12px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 16px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.5); max-width: 700px; line-height: 1.5; }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.footer-age { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #e00; color: #fff; font-weight: 700; font-size: 0.7rem; flex-shrink: 0; }
.footer-email { font-size: 0.87rem; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.footer-email a { color: var(--color-btn-orange); text-decoration: underline; }
.footer-provider { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.footer-provider img { height: 28px; width: auto; filter: brightness(0) invert(1) opacity(0.7); }

.bottom-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: linear-gradient(90deg, var(--color-nav-dark) 0%, var(--color-nav) 100%); box-shadow: 0 -4px 20px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; gap: 12px; }
.widget-text { color: #fff; font-size: 0.9rem; font-weight: 400; }
.widget-text strong { color: var(--color-btn-orange); font-weight: 700; }
.widget-close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1.2rem; padding: 4px; line-height: 1; flex-shrink: 0; transition: color 0.15s; }
.widget-close:hover { color: #fff; }
.widget-actions { display: flex; gap: 10px; align-items: center; }

.breadcrumb { padding: 10px 0; display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #666; flex-wrap: wrap; }
.breadcrumb a { color: var(--color-nav); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #bbb; }

.info-content { background: var(--color-card); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--color-border); margin: 32px 0 48px; }
.info-content h1 { color: var(--color-nav); margin-bottom: 1em; }
.info-content h2, .info-content h3 { color: var(--color-nav); margin-bottom: 0.5em; margin-top: 1.2em; }
.info-content p { line-height: 1.7; color: #333; margin-bottom: 1em; }
.info-content ul, .info-content ol { margin-bottom: 1em; }
.info-content li { line-height: 1.65; color: #333; }
.info-content a { color: var(--color-btn-orange); text-decoration: underline; }
@media (max-width: 1024px) {
.header-nav a > svg {display: none;}
}
@media (max-width: 900px) {
  .game-details-layout { flex-direction: column; }
  .game-demo-wrap { max-width: 100%; }
  .footer-inner { gap: 20px; }
  .hero-img { display: none; }
  .header-nav a {padding: 5px 7px;}
  .header-logo img {height: 26px;}
  .header-inner {gap: 9px;}
  .content-review {padding: 28px 24px;}
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .bonus-card { flex: 0 0 85vw; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-socials { justify-content: center; }
  .bottom-widget { flex-wrap: wrap; gap: 8px; }
  .widget-text { font-size: 0.82rem; }
  .hero-inner { padding: 32px 16px; }
  .section-wrap { padding: 36px 0; }
  .demo-frame-main { max-width: 100%; }
  .content-review {padding: 24px 20px;}
}

@media (max-width: 480px) {
  .advantages-grid .advantage-card { flex: 1 1 100%; }
  .similar-games-grid .game-card { flex: 1 1 calc(50% - 8px); }
  .header-buttons .btn--outline { display: none; }
  a > svg {display: none;}
  .content-review {padding: 20px 16px;}
}
@media (max-width: 400px) {
.btn {white-space: wrap;}
}
.wp-block-cover { position: relative; }
.wp-caption-text { font-style: italic; font-size: 0.85em; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.wp-block-quote { border-left: 4px solid #ccc; padding-left: 1em; }
.elementor-widget-container { position: relative; }
.wp-site-blocks { padding-top: 0; padding-bottom: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.entry-content { line-height: 1.8; }
.post-thumbnail { margin-bottom: 1em; }
.byline, .posted-on { font-size: 0.85em; color: #888; }
.comments-area { margin-top: 2em; }
.menu-toggle { display: none; }
.main-navigation { font-size: 0.95em; }
.xf4r2a91 { opacity: 0; pointer-events: none; position: absolute; }
.bg7c3m11 { display: none !important; }
.zt9q0ws5 { visibility: hidden; height: 0; overflow: hidden; }
.kp2dxx84 { font-size: 0; line-height: 0; }
