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

:root {
  --color-header: #2a6b96;
  --color-header-dark: #1e4f70;
  --color-bg: #1f668d;
  --color-bg-dark: #185272;
  --color-bg-card: #1a5a7d;
  --color-bg-card2: #164e6d;
  --color-btn-light: #f5f5f5;
  --color-btn-gold: #ffaf08;
  --color-btn-gold-hover: #e09d00;
  --color-text: #e8f4ff;
  --color-text-muted: #a8cde0;
  --color-text-dark: #1a3a50;
  --color-border: rgba(255,255,255,0.12);
  --color-border-gold: rgba(255,175,8,0.4);
  --color-accent: #4ab3e8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.28);
  --shadow-btn: 0 2px 12px rgba(0,0,0,0.22);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font: 'IBM Plex Sans', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--color-bg); }
body { font-family: var(--font); background: var(--color-bg); color: var(--color-text); line-height: 1.6; font-size: 16px; min-height: 100vh; }

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-btn-gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }

.xk9b2 { display: none; visibility: hidden; }
.qv71m { position: absolute; left: -9999px; }
.rp3dx { width: 1px; height: 1px; overflow: hidden; }

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

.box { border-radius: var(--radius-lg); }

.section-wrap { padding: 48px 0; }
.section-title { font-size: 1.7rem; font-weight: 700; color: var(--color-text); margin-bottom: 10px; line-height: 1.25; }
.section-subtitle { color: var(--color-text-muted); font-size: 1rem; margin-bottom: 28px; line-height: 1.5; }

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn); }
.btn:active { transform: translateY(0); }

.btn--light { background: var(--color-btn-light); color: var(--color-text-dark); }
.btn--light:hover { background: #e8e8e8; color: var(--color-text-dark); }
.btn--gold { background: var(--color-btn-gold); color: #1a1a1a; }
.btn--gold:hover { background: var(--color-btn-gold-hover); color: #1a1a1a; }
.btn--outline { background: transparent; color: var(--color-btn-light); border: 2px solid var(--color-btn-light); }
.btn--outline:hover { background: rgba(245,245,245,0.12); color: var(--color-btn-light); }
.btn--outline-gold { background: transparent; color: var(--color-btn-gold); border: 2px solid var(--color-btn-gold); }
.btn--outline-gold:hover { background: rgba(255,175,8,0.1); color: var(--color-btn-gold); }
.btn--sm { padding: 7px 14px; font-size: 0.85rem; }
.btn--lg { padding: 15px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--pulse { animation: btnPulse 2.2s infinite; }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,175,8,0.55); }
  50% { box-shadow: 0 0 0 10px rgba(255,175,8,0); }
}

.header { background: var(--color-header); box-shadow: 0 2px 16px rgba(0,0,0,0.3); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 18px; height: 64px; max-width: 1200px; margin: 0 auto; gap: 12px; }
.header-logo img { height: 44px; width: auto; object-fit: contain; }
.header-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a { display: flex; align-items: center; gap: 5px; color: var(--color-text); font-size: 0.88rem; font-weight: 500; padding: 7px 11px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); text-decoration: none; }
.header-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav a svg { width: 15px; height: 15px; opacity: 0.8; flex-shrink: 0; }
.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-buttons .btn { font-size: 0.88rem; padding: 9px 16px; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--color-text); flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 6px; transition: background var(--transition); }
.burger:hover { background: rgba(255,255,255,0.1); }
.burger span { display: block; width: 22px; height: 2px; background: currentColor; 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); }
.mob-menu { display: none; background: var(--color-header-dark); border-top: 1px solid var(--color-border); overflow: hidden; max-height: 0; transition: max-height 0.35s cubic-bezier(.4,0,.2,1); }
.mob-menu.open { max-height: 480px; }
.mob-menu-inner { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.mob-menu-nav { display: flex; flex-direction: column; gap: 2px; }
.mob-menu-nav a { display: flex; align-items: center; gap: 8px; color: var(--color-text); font-size: 0.94rem; font-weight: 500; padding: 10px 12px; border-radius: var(--radius-sm); transition: background var(--transition); text-decoration: none; }
.mob-menu-nav a:hover { background: rgba(255,255,255,0.08); }
.mob-menu-nav a svg { width: 18px; height: 18px; opacity: 0.75; flex-shrink: 0; }
.mob-menu-btns { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--color-border); margin-top: 6px; }
.mob-menu-btns .btn { flex: 1; min-width: 110px; justify-content: center; }

.hero { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; background: var(--color-bg-dark); }
.hero-bg { position: absolute; inset: 0; background-image: url('/hero-banner.png'); background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(26,80,112,0.82) 40%, rgba(26,58,80,0.65) 100%); }
.hero-content { position: relative; z-index: 1; padding: 56px 18px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,175,8,0.15); border: 1px solid var(--color-border-gold); color: var(--color-btn-gold); font-size: 0.82rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; margin-bottom: 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 700; color: #fff; line-height: 1.2; max-width: 680px; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); text-wrap: balance; }
.hero-intro { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 560px; line-height: 1.65; margin-bottom: 28px; }
.hero-intro-spoiler { font-size: 0.93rem; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.6; margin-bottom: 24px; display: none; }
.hero-intro-spoiler.open { display: block; }
.hero-spoiler-btn { background: none; border: none; color: var(--color-accent); font-size: 0.88rem; font-family: var(--font); cursor: pointer; padding: 0; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 5px; transition: color var(--transition); }
.hero-spoiler-btn:hover { color: var(--color-btn-gold); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-val { font-size: 1.5rem; font-weight: 700; color: var(--color-btn-gold); }
.hero-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

.breadcrumbs-wrap { background: var(--color-bg-dark); border-bottom: 1px solid var(--color-border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; padding: 10px 18px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; font-size: 0.82rem; color: var(--color-text-muted); }
.breadcrumbs a { color: var(--color-text-muted); text-decoration: none; transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--color-btn-gold); }
.breadcrumbs .bc-sep { opacity: 0.45; font-size: 0.75rem; }
.breadcrumbs .bc-cur { color: var(--color-text); font-weight: 500; }

.toc-block { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 32px; }
.toc-block-title { font-size: 1.05rem; font-weight: 700; color: var(--color-text); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.toc-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 4px 16px; }
.toc-list li a { display: flex; align-items: center; gap: 8px; color: var(--color-text-muted); font-size: 0.9rem; padding: 6px 4px; border-radius: 6px; transition: color var(--transition), background var(--transition); text-decoration: none; }
.toc-list li a:hover { color: var(--color-btn-gold); background: rgba(255,175,8,0.06); }
.toc-list li a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; }

.game-block { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 28px; margin-bottom: 32px; }
.game-block-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.game-block-title { font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.game-block-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.game-meta-item { display: flex; flex-direction: column; font-size: 0.8rem; color: var(--color-text-muted); }
.game-meta-item strong { color: var(--color-btn-gold); font-size: 0.95rem; }
.game-iframe-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #0d3348; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); min-height: 320px; }
.game-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.game-fs-btn { display: none; position: absolute; bottom: 10px; right: 10px; z-index: 10; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: var(--radius-sm); padding: 7px 11px; font-size: 0.78rem; font-weight: 600; cursor: pointer; align-items: center; gap: 5px; backdrop-filter: blur(4px); transition: background var(--transition); font-family: var(--font); }
.game-fs-btn:hover { background: rgba(0,0,0,0.8); }
.game-actions { display: flex; gap: 12px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }

.leaderboard-block { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 28px; margin-bottom: 32px; }
.leaderboard-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.live-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,80,80,0.15); border: 1px solid rgba(255,80,80,0.3); color: #ff7070; font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em; }
.live-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #ff5050; animation: livePulse 1.5s infinite; }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.lb-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lb-table { width: 100%; border-collapse: collapse; min-width: 440px; }
.lb-table th { text-align: left; font-size: 0.78rem; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; padding: 10px 14px; border-bottom: 1px solid var(--color-border); }
.lb-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; vertical-align: middle; }
.lb-table tr:hover td { background: rgba(255,255,255,0.03); }
.lb-rank { font-weight: 700; color: var(--color-text-muted); font-size: 0.88rem; }
.lb-rank--1 { color: #ffd700; }
.lb-rank--2 { color: #c0c0c0; }
.lb-rank--3 { color: #cd7f32; }
.lb-nick { font-weight: 600; color: var(--color-text); }
.lb-amount { font-weight: 700; color: #5dde94; }
.lb-mult { background: rgba(255,175,8,0.12); border: 1px solid rgba(255,175,8,0.25); color: var(--color-btn-gold); padding: 2px 8px; border-radius: 12px; font-size: 0.82rem; font-weight: 700; }

.screenshots-block { margin-bottom: 32px; }
.screens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.screen-item { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); background: var(--color-bg-card); aspect-ratio: 16/10; position: relative; }
.screen-item:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.35); }
.screen-item img { width: 100%; height: 100%; object-fit: cover; }
.screen-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%); padding: 18px 12px 10px; font-size: 0.82rem; color: #fff; font-weight: 500; }
.screens-slider { display: none; }

.strategies-block { margin-bottom: 32px; }
.strategies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.strategy-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.strategy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(255,175,8,0.3); }
.strategy-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, rgba(255,175,8,0.2), rgba(74,179,232,0.15)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strategy-icon svg { width: 28px; height: 28px; color: var(--color-btn-gold); }
.strategy-name { font-size: 1.05rem; font-weight: 700; color: var(--color-text); }
.strategy-desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.55; flex: 1; }
.strategy-tag { display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 600; padding: 3px 9px; border-radius: 10px; letter-spacing: 0.03em; }
.strategy-tag--low { background: rgba(93,222,148,0.12); color: #5dde94; border: 1px solid rgba(93,222,148,0.25); }
.strategy-tag--med { background: rgba(255,175,8,0.12); color: var(--color-btn-gold); border: 1px solid rgba(255,175,8,0.25); }
.strategy-tag--high { background: rgba(255,100,100,0.12); color: #ff8080; border: 1px solid rgba(255,100,100,0.25); }

.review-block { margin-bottom: 32px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 32px; }
.review-content { font-size: 0.96rem; color: var(--color-text); line-height: 1.75; }
.review-content h2 { font-size: 1.45rem; font-weight: 700; margin: 28px 0 12px; color: var(--color-text); }
.review-content h3 { font-size: 1.15rem; font-weight: 600; margin: 22px 0 10px; color: var(--color-text); }
.review-content h4 { font-size: 1.0rem; font-weight: 600; margin: 16px 0 8px; color: var(--color-text); }
.review-content p { margin-bottom: 14px; }
.review-content ul, .review-content ol { margin-bottom: 14px; padding-left: 1.6em; }
.review-content ul li, .review-content ol li { margin-bottom: 6px; }
.review-content strong { color: #fff; font-weight: 600; }
.review-content em { color: var(--color-text-muted); font-style: italic; }
.review-content blockquote { border-left: 3px solid var(--color-btn-gold); padding: 10px 18px; margin: 18px 0; background: rgba(255,175,8,0.06); border-radius: 0 8px 8px 0; color: var(--color-text-muted); font-style: italic; }
.review-content a { color: var(--color-accent); }
.review-content a:hover { color: var(--color-btn-gold); }
.review-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.9rem; }
.review-content table th { background: rgba(255,255,255,0.07); text-align: left; padding: 10px 14px; border: 1px solid var(--color-border); font-weight: 600; color: var(--color-text); }
.review-content table td { padding: 10px 14px; border: 1px solid var(--color-border); vertical-align: top; color: var(--color-text); }
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.review-content hr { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }
.review-content img { border-radius: var(--radius-sm); max-width: 100%; height: auto; }

.reviews-block { margin-bottom: 32px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.review-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: border-color var(--transition); }
.review-card:hover { border-color: rgba(255,175,8,0.3); }
.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--color-bg-card2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--color-btn-gold); }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta { flex: 1; min-width: 0; }
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--color-text); }
.review-date { font-size: 0.78rem; color: var(--color-text-muted); }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 16px; height: 16px; color: var(--color-btn-gold); }
.review-text { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }
.review-form-wrap { background: var(--color-bg-card2); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; }
.review-form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 500; }
.form-control { background: rgba(255,255,255,0.06); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 11px 14px; color: var(--color-text); font-family: var(--font); font-size: 0.93rem; outline: none; transition: border-color var(--transition), background var(--transition); width: 100%; }
.form-control:focus { border-color: var(--color-accent); background: rgba(255,255,255,0.08); }
.form-control::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-success { display: none; background: rgba(93,222,148,0.12); border: 1px solid rgba(93,222,148,0.3); color: #5dde94; border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.92rem; margin-top: 10px; align-items: center; gap: 8px; }
.form-success.show { display: flex; }

.author-block { margin-bottom: 32px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 28px; }
.author-inner { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; }
.author-photo { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--color-btn-gold); background: var(--color-bg-card2); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; min-width: 200px; }
.author-name { font-size: 1.2rem; font-weight: 700; color: var(--color-text); margin-bottom: 2px; }
.author-position { font-size: 0.85rem; color: var(--color-btn-gold); font-weight: 600; margin-bottom: 10px; }
.author-bio { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.author-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--color-text-muted); text-decoration: none; padding: 5px 10px; border-radius: 6px; border: 1px solid var(--color-border); transition: border-color var(--transition), color var(--transition); }
.author-link:hover { border-color: var(--color-accent); color: var(--color-accent); }
.author-link svg { width: 15px; height: 15px; }
.author-dates { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 10px; display: flex; gap: 16px; flex-wrap: wrap; }
.author-dates span { display: flex; align-items: center; gap: 5px; }

.faq-block { margin-bottom: 32px; }
.faq-item { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover { border-color: rgba(255,175,8,0.25); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--color-text); gap: 12px; user-select: none; }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-accent); transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.3s; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 16px; }

.footer { background: var(--color-header); border-top: 1px solid var(--color-border); padding: 48px 0 24px; margin-top: auto; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo img { height: 40px; object-fit: contain; }
.footer-tagline { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.55; }
.footer-social { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); transition: border-color var(--transition), color var(--transition), background var(--transition); }
.social-link:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(74,179,232,0.08); }
.social-link svg { width: 17px; height: 17px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--color-text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--color-text); }
.footer-divider { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }
.footer-badges { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-badge-group { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-badge { background: rgba(255,255,255,0.07); border: 1px solid var(--color-border); border-radius: 8px; padding: 6px 12px; font-size: 0.75rem; font-weight: 700; color: var(--color-text-muted); white-space: nowrap; }
.footer-badge--mga { border-color: rgba(255,175,8,0.3); color: var(--color-btn-gold); }
.footer-badge--eco { border-color: rgba(93,222,148,0.3); color: #5dde94; }
.footer-badge--gcb { border-color: rgba(74,179,232,0.3); color: var(--color-accent); }
.footer-provider { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--color-text-muted); }
.footer-provider img { height: 28px; object-fit: contain; }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.6; }
.footer-copyright a { color: var(--color-text-muted); }
.footer-copyright a:hover { color: var(--color-text); }
.footer-contact { font-size: 0.82rem; color: var(--color-text-muted); display: flex; flex-direction: column; gap: 4px; text-align: right; }
.footer-contact a { color: var(--color-accent); }
.footer-legal { font-size: 0.78rem; color: rgba(168,205,224,0.55); line-height: 1.5; max-width: 860px; margin-top: 16px; border-top: 1px solid var(--color-border); padding-top: 16px; }
.payment-logos { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.payment-logo { background: rgba(255,255,255,0.08); border: 1px solid var(--color-border); border-radius: 6px; padding: 4px 10px; font-size: 0.73rem; font-weight: 700; color: var(--color-text-muted); white-space: nowrap; }

.main-content-wrap { padding: 36px 0 0; }
.page-info { padding: 48px 0; }
.page-info .container { max-width: 860px; }
.page-info .info-box { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 36px 40px; }
.page-info h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; color: var(--color-text); }
.page-info h2 { font-size: 1.3rem; font-weight: 600; margin: 22px 0 10px; color: var(--color-text); }
.page-info p { font-size: 0.95rem; line-height: 1.75; color: var(--color-text-muted); margin-bottom: 14px; }
.page-info ul { padding-left: 1.4em; margin-bottom: 14px; }
.page-info ul li { font-size: 0.93rem; color: var(--color-text-muted); margin-bottom: 6px; }
.page-info a { color: var(--color-accent); }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 999; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: 0 8px 48px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 1.6rem; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.swiper { width: 100%; }
.swiper-slide { border-radius: var(--radius-md); overflow: hidden; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.anim-fadeinup { animation: fadeInUp 0.55s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

.wp-block-separator { display: none; }
.entry-content-asset { display: none; }
.wp-content-placeholder { display: none; }

@media (max-width: 1024px) {
  .strategies-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-buttons { display: none; }
  .burger { display: flex; }
  .mob-menu { display: block; }
  .screens-grid { display: none; }
  .screens-slider { display: block; }
  .strategies-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .game-block-header { display: none; }
  .game-block { padding: 0; border-radius: var(--radius-md); overflow: hidden; }
  .game-iframe-wrap { aspect-ratio: unset; height: 75svh; min-height: 420px; border-radius: 0; border-left: none; border-right: none; }
  .game-fs-btn { display: inline-flex; }
  .game-actions { padding: 10px 14px; gap: 8px; }
  .game-actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 10px 12px; }
  .footer-bottom { flex-direction: column; }
  .footer-contact { text-align: left; }
  .toc-list { grid-template-columns: 1fr; }
  .hero { min-height: 340px; }
  .hero-content { padding: 36px 18px; }
  .section-title { font-size: 1.4rem; }
  .page-info .info-box { padding: 24px 20px; }
  .author-inner { flex-direction: column; gap: 16px; }
  .author-photo { width: 72px; height: 72px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stat-val { font-size: 1.25rem; }
  .game-actions .btn { flex: 1; }
  .strategies-grid { gap: 12px; }
  .review-form-wrap { padding: 20px 16px; }
}
