:root {
  --c-bg: #3b0916;
  --c-header: #bb7b28;
  --c-btn-gold: #dcbd36;
  --c-btn-red: #9e0d09;
  --c-text: #f5e9d0;
  --c-text-muted: #c9a96e;
  --c-text-dark: #1a0608;
  --c-gold-light: #f0d060;
  --c-gold-dark: #a8621a;
  --c-surface: #5a0f20;
  --c-surface2: #4a0d1a;
  --c-border: #7a3a18;
  --c-white: #fff8ee;
  --c-green: #1e8a3c;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-gold: 0 0 18px rgba(220,189,54,.35);
  --font-main: 'Lato', sans-serif;
  --trans: .22s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--c-bg); }
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--c-btn-gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-gold-light); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-main);
  font-weight: 900;
  line-height: 1.22;
  color: var(--c-gold-light);
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
h1 { font-size: clamp(1.7rem,4vw,2.8rem); margin-bottom: .6em; }
h2 { font-size: clamp(1.3rem,3vw,2rem); margin-bottom: .5em; }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); margin-bottom: .45em; }
h4 { font-size: 1.1rem; margin-bottom: .4em; }
p { margin-bottom: 1em; }
ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: .35em; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 18px; }
.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.box { border-radius: var(--radius-md); }
.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; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-main); font-weight: 800; font-size: .95rem;
  padding: .55em 1.5em; border-radius: var(--radius-sm); border: none; cursor: pointer;
  text-decoration: none; transition: transform var(--trans), box-shadow var(--trans), background var(--trans), filter var(--trans);
  letter-spacing: .03em; white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn--gold {
  background: linear-gradient(135deg, #f0d060 0%, #dcbd36 50%, #b89820 100%);
  color: var(--c-text-dark); box-shadow: 0 3px 14px rgba(220,189,54,.5);
}
.btn--gold:hover { filter: brightness(1.1); box-shadow: 0 6px 22px rgba(220,189,54,.7); transform: translateY(-2px); color: var(--c-text-dark); }
.btn--red {
  background: linear-gradient(135deg, #c41510 0%, #9e0d09 60%, #780a06 100%);
  color: #fff; box-shadow: 0 3px 14px rgba(158,13,9,.55);
}
.btn--red:hover { filter: brightness(1.12); box-shadow: 0 6px 22px rgba(158,13,9,.7); transform: translateY(-2px); color: #fff; }
.btn--outline {
  background: transparent; border: 2px solid var(--c-btn-gold); color: var(--c-btn-gold);
}
.btn--outline:hover { background: var(--c-btn-gold); color: var(--c-text-dark); }
.btn--lg { font-size: 1.1rem; padding: .7em 2em; }
.btn--sm { font-size: .82rem; padding: .38em 1em; }

/* ===================== HEADER ===================== */
.site-header {
  background: linear-gradient(90deg, #8a5510 0%, var(--c-header) 40%, #a86820 100%);
  box-shadow: 0 3px 20px rgba(0,0,0,.55);
  position: sticky; top: 0; z-index: 1000;
}
.site-header .container { padding-top: 0; padding-bottom: 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 12px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: var(--c-white); font-weight: 700; font-size: .88rem;
  padding: 6px 10px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 5px; transition: background var(--trans), color var(--trans);
}
.header-nav a:hover { background: rgba(255,255,255,.15); color: var(--c-gold-light); }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none; border: none; cursor: pointer; padding: 5px;
}
.burger span { display: block; height: 3px; background: var(--c-white); border-radius: 2px; transition: all .25s; }
.burger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav {
  display: none; position: absolute; top: 68px; left: 0; right: 0;
  background: #7a4510; box-shadow: 0 8px 24px rgba(0,0,0,.6); z-index: 999;
  padding: 12px 0; flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--c-white); font-weight: 700; padding: 10px 24px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08); font-size: .95rem;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--c-gold-light); }
.mobile-nav svg { width: 18px; height: 18px; }

/* ===================== HERO ===================== */
.hero {
  position: relative; overflow: hidden; min-height: 520px;
  display: flex; align-items: center;
  background: var(--c-bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/img/crazy-time-hero.png');
  background-size: cover; background-position: center 30%;
  filter: brightness(.55) saturate(1.2);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,9,22,.2) 0%, rgba(59,9,22,.75) 70%, rgba(59,9,22,1) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0 70px; }
.hero-content .container { display: flex; flex-direction: column; align-items: flex-start; max-width: 760px; }
.hero h1 { color: var(--c-gold-light); text-shadow: 0 2px 16px rgba(0,0,0,.8); margin-bottom: .4em; }
.hero-intro {
  font-size: 1.1rem; color: var(--c-text); margin-bottom: .5em;
  max-width: 620px; line-height: 1.6;
}
.hero-spoiler { margin-bottom: 1.5em; }
.hero-spoiler summary {
  cursor: pointer; color: var(--c-text-muted); font-size: .92rem;
  user-select: none; list-style: none; display: flex; align-items: center; gap: 6px;
}
.hero-spoiler summary::-webkit-details-marker { display: none; }
.hero-spoiler summary::before { content: '+'; font-weight: 900; font-size: 1.1em; }
details[open] .hero-spoiler summary::before { content: '−'; }
.hero-spoiler-body { margin-top: .7em; font-size: .93rem; color: var(--c-text-muted); line-height: 1.6; max-width: 600px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;
}
.hero-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(220,189,54,.3);
  border-radius: 20px; padding: 4px 14px; font-size: .8rem;
  color: var(--c-text-muted); backdrop-filter: blur(4px);
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs-wrap { padding: 12px 0; background: rgba(0,0,0,.25); border-bottom: 1px solid var(--c-border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .83rem; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-btn-gold); }
.breadcrumbs-sep { color: var(--c-border); }
.breadcrumbs-current { color: var(--c-text); font-weight: 700; }

/* ===================== SECTIONS ===================== */
.section { padding: 48px 0; }
.section-title {
  font-size: clamp(1.2rem,2.8vw,1.8rem); color: var(--c-gold-light);
  font-weight: 900; margin-bottom: 1.2em; display: flex; align-items: center; gap: 10px;
}
.section-title svg { width: 26px; height: 26px; color: var(--c-btn-gold); flex-shrink: 0; }

/* ===================== TABLE OF CONTENTS ===================== */
.toc-block {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 28px 32px; margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.toc-block h2 { font-size: 1.15rem; color: var(--c-gold-light); margin-bottom: 1em; }
.toc-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.toc-list li { margin: 0; }
.toc-list a {
  color: var(--c-text); font-size: .93rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; padding: 5px 8px;
  border-radius: var(--radius-sm); transition: background var(--trans), color var(--trans);
}
.toc-list a:hover { background: rgba(220,189,54,.12); color: var(--c-gold-light); }
.toc-list svg { width: 16px; height: 16px; color: var(--c-btn-gold); flex-shrink: 0; }

/* ===================== GAME DEMO ===================== */
.game-block {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  margin-bottom: 36px;
}
.game-block-header {
  background: linear-gradient(90deg, var(--c-surface2), #6a1a28);
  padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.game-block-title { font-size: 1.1rem; font-weight: 900; color: var(--c-gold-light); display: flex; align-items: center; gap: 8px; }
.game-block-title svg { width: 22px; height: 22px; }
.game-block-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.iframe-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: #0a0005;
}
.iframe-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}
.iframe-overlay {
  position: absolute; inset: 0; background: rgba(59,9,22,.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; z-index: 5; text-align: center; padding: 24px;
  transition: opacity .3s; cursor: pointer;
}
.iframe-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-stub {
  position: absolute; inset: 0; background: rgba(59,9,22,.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; z-index: 5; text-align: center; padding: 24px;
}
.demo-stub-icon { font-size: 48px; color: #ffd700; line-height: 1; }
.demo-stub-title { font-size: 1.4rem; font-weight: 700; color: #fff; }
.demo-stub-sub { color: rgba(255,255,255,.6); font-size: .95rem; }
.iframe-overlay-title { font-size: 1.4rem; font-weight: 900; color: var(--c-gold-light); }
.iframe-overlay-sub { color: var(--c-text-muted); font-size: .95rem; }
.iframe-overlay-icon { font-size: 3rem; }
.game-stats-row {
  display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--c-border);
}
.game-stat {
  flex: 1 1 140px; padding: 14px 18px; border-right: 1px solid var(--c-border);
  display: flex; flex-direction: column; gap: 2px;
}
.game-stat:last-child { border-right: none; }
.game-stat-label { font-size: .75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.game-stat-val { font-size: 1rem; font-weight: 800; color: var(--c-gold-light); }

/* ===================== PROS/CONS ===================== */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px;
}
.pros-block, .cons-block {
  border-radius: var(--radius-md); padding: 24px 26px;
  box-shadow: var(--shadow);
}
.pros-block { background: linear-gradient(135deg, #0c2d14 0%, #102b19 100%); border: 1px solid #1e6b30; }
.cons-block { background: linear-gradient(135deg, #2a0808 0%, #200606 100%); border: 1px solid #7a1a1a; }
.pros-cons-title {
  font-size: 1.05rem; font-weight: 900; margin-bottom: 1em;
  display: flex; align-items: center; gap: 8px;
}
.pros-block .pros-cons-title { color: #5de080; }
.cons-block .pros-cons-title { color: #f06060; }
.pros-cons-list { list-style: none; padding: 0; }
.pros-cons-list li {
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: flex-start; gap: 8px; font-size: .93rem;
  color: var(--c-text);
}
.pros-cons-list li:last-child { border-bottom: none; }
.pros-cons-list li::before { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.pros-block .pros-cons-list li::before { content: '✓'; color: #5de080; font-weight: 900; }
.cons-block .pros-cons-list li::before { content: '✗'; color: #f06060; font-weight: 900; }

/* ===================== CONTENT BLOCK ===================== */
.content-block {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 32px 36px; margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.content-block h2, .content-block h3, .content-block h4 { color: var(--c-gold-light); margin-top: 1.4em; }
.content-block h2:first-child, .content-block h3:first-child { margin-top: 0; }
.content-block p { color: var(--c-text); line-height: 1.7; margin-bottom: 1em; }
.content-block ul, .content-block ol { color: var(--c-text); margin-bottom: 1em; }
.content-block li { margin-bottom: .4em; }
.content-block a { color: var(--c-btn-gold); }
.content-block a:hover { color: var(--c-gold-light); }
.content-block table {
  width: 100%; border-collapse: collapse; margin: 1.2em auto;
  font-size: .92rem; text-align: left; overflow-x: auto; display: block;
}
.content-block table th {
  background: var(--c-surface); padding: 10px 14px;
  color: var(--c-gold-light); font-weight: 800; border: 1px solid var(--c-border);
}
.content-block table td {
  padding: 9px 14px; border: 1px solid var(--c-border); color: var(--c-text);
  vertical-align: top;
}
.content-block table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.content-block strong, .content-block b { color: var(--c-gold-light); }
.content-block em { color: var(--c-text-muted); }
.content-block blockquote {
  border-left: 4px solid var(--c-btn-gold); margin: 1.2em 0;
  padding: .7em 1.2em; background: rgba(220,189,54,.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--c-text-muted);
}
.content-block hr { border: none; border-top: 1px solid var(--c-border); margin: 1.5em 0; }
.content-block img { max-width: 100%; border-radius: var(--radius-sm); margin: 1em auto; }
.content-block pre {
  background: rgba(0,0,0,.4); padding: 1em; border-radius: var(--radius-sm);
  overflow-x: auto; font-size: .88rem; margin-bottom: 1em;
}
.content-block code { background: rgba(0,0,0,.35); padding: 2px 6px; border-radius: 4px; font-size: .88em; }

/* ===================== COMMENTS ===================== */
.comments-block {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 32px 36px; margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.comment-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.comment-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(0,0,0,.2); border-radius: var(--radius-md);
  padding: 16px 18px; border: 1px solid rgba(122,58,24,.3);
}
.comment-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-header), #6a3a0a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--c-white); flex-shrink: 0;
}
.comment-body { flex: 1; min-width: 0; }
.comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; flex-wrap: wrap; }
.comment-name { font-weight: 800; color: var(--c-gold-light); font-size: .95rem; }
.comment-date { font-size: .78rem; color: var(--c-text-muted); }
.comment-stars { color: #f0c030; font-size: .9rem; }
.comment-text { font-size: .92rem; color: var(--c-text); line-height: 1.6; }
.comment-form { }
.comment-form h3 { color: var(--c-gold-light); margin-bottom: 1.2em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--c-text-muted); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(0,0,0,.35); border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); padding: 10px 14px;
  color: var(--c-text); font-family: var(--font-main); font-size: .95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--c-btn-gold); box-shadow: 0 0 0 3px rgba(220,189,54,.18);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-stars { display: flex; gap: 6px; margin-bottom: 14px; }
.form-star {
  cursor: pointer; font-size: 1.5rem; color: var(--c-border);
  transition: color var(--trans); line-height: 1;
}
.form-star.active, .form-star:hover ~ .form-star.active { color: #f0c030; }
.form-star:hover { color: #f0c030; }
.form-error { display: none; color: #f06060; font-size: .82rem; margin-top: 3px; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error input, .form-group.has-error textarea { border-color: #f06060; }
.form-success {
  display: none; background: rgba(30,138,60,.15); border: 1px solid #1e8a3c;
  border-radius: var(--radius-sm); padding: 14px 18px; color: #5de080;
  font-weight: 700; text-align: center; margin-top: 10px;
}

/* ===================== AUTHOR ===================== */
.author-block {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 28px 32px; margin-bottom: 36px;
  display: flex; align-items: flex-start; gap: 24px; box-shadow: var(--shadow);
}
.author-photo {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--c-btn-gold); flex-shrink: 0;
  box-shadow: 0 0 16px rgba(220,189,54,.3);
}
.author-info { flex: 1; min-width: 0; }
.author-name { font-size: 1.15rem; font-weight: 900; color: var(--c-gold-light); margin-bottom: .15em; }
.author-position { font-size: .85rem; color: var(--c-text-muted); margin-bottom: .6em; }
.author-bio { font-size: .92rem; color: var(--c-text); line-height: 1.6; margin-bottom: .8em; }
.author-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: .82rem; color: var(--c-text-muted); }
.author-meta span { display: flex; align-items: center; gap: 4px; }
.author-meta svg { width: 14px; height: 14px; }
.author-socials { display: flex; gap: 10px; margin-top: 10px; }
.author-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), transform var(--trans);
  border: 1px solid var(--c-border);
}
.author-social:hover { background: var(--c-btn-gold); transform: scale(1.1); }
.author-social svg { width: 18px; height: 18px; color: var(--c-white); }
.author-social:hover svg { color: var(--c-text-dark); }

/* ===================== FAQ ===================== */
.faq-block {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 32px 36px; margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.faq-item {
  border-bottom: 1px solid var(--c-border); overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; color: var(--c-text);
  font-family: var(--font-main); font-weight: 700; font-size: .97rem;
  text-align: left; cursor: pointer; padding: 16px 12px 16px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--c-gold-light); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--c-btn-gold); transition: transform .25s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 16px 0; font-size: .93rem; color: var(--c-text-muted); line-height: 1.7; }
.faq-item.is-open .faq-answer { display: block; }

/* ===================== RELATED GAMES ===================== */
.related-block { margin-bottom: 36px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 16px; text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  cursor: pointer; text-decoration: none; display: block;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--c-btn-gold); }
.related-card-icon { font-size: 2.2rem; margin-bottom: 8px; }
.related-card-name { font-size: .88rem; font-weight: 800; color: var(--c-gold-light); }
.related-card-tag { font-size: .75rem; color: var(--c-text-muted); margin-top: 3px; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: linear-gradient(180deg, #8a4a10 0%, var(--c-header) 30%, #7a3a08 100%);
  margin-top: auto; padding: 44px 0 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.footer-inner { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-logo-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-logo img { height: 40px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.footer-desc { font-size: .82rem; color: rgba(255,248,238,.75); line-height: 1.6; max-width: 200px; }
.footer-nav h4 { color: var(--c-white); font-size: .9rem; font-weight: 800; margin-bottom: .8em; text-transform: uppercase; letter-spacing: .06em; }
.footer-nav-links { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 5px 14px; }
.footer-nav-links a { color: rgba(255,248,238,.75); font-size: .85rem; transition: color var(--trans); }
.footer-nav-links a:hover { color: var(--c-white); }
.footer-trust h4 { color: var(--c-white); font-size: .9rem; font-weight: 800; margin-bottom: .8em; text-transform: uppercase; letter-spacing: .06em; }
.footer-trust-logos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.trust-badge {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm); padding: 5px 10px; font-size: .72rem;
  color: var(--c-white); font-weight: 700; letter-spacing: .04em;
}
.footer-payments { margin-bottom: 20px; }
.footer-payments h4 { color: var(--c-white); font-size: .9rem; font-weight: 800; margin-bottom: .8em; text-transform: uppercase; letter-spacing: .06em; }
.payment-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-badge {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm); padding: 5px 12px; font-size: .75rem;
  color: var(--c-white); font-weight: 800;
}
.footer-provider { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-provider img { height: 28px; filter: brightness(0) invert(1); opacity: .85; }
.footer-provider-label { font-size: .78rem; color: rgba(255,248,238,.7); }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans); color: var(--c-white);
}
.footer-social:hover { background: rgba(255,255,255,.25); color: var(--c-white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px;
  display: flex; flex-direction: column; gap: 8px; text-align: center;
}
.footer-copyright { font-size: .82rem; color: rgba(255,248,238,.7); }
.footer-legal { font-size: .75rem; color: rgba(255,248,238,.5); line-height: 1.6; max-width: 840px; margin: 0 auto; }
.footer-legal-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.footer-legal-links a { color: rgba(255,248,238,.6); font-size: .8rem; }
.footer-legal-links a:hover { color: var(--c-white); }

/* ===================== INFO PAGE ===================== */
.info-content {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 36px 40px; margin: 36px 0;
  box-shadow: var(--shadow);
}
.info-content h1 { margin-bottom: .6em; }
.info-content h2 { margin-top: 1.5em; }
.info-content p, .info-content li { color: var(--c-text); line-height: 1.7; }
.info-content a { color: var(--c-btn-gold); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(220,189,54,.4); }
  50% { box-shadow: 0 0 22px rgba(220,189,54,.8); }
}
@keyframes spin-wheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.anim-fadeInUp { animation: fadeInUp .55s ease both; }
.anim-fadeIn { animation: fadeIn .5s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.btn--gold { animation: pulse-glow 2.5s infinite; }

/* ===================== DIVIDERS / SEPARATORS ===================== */
.section-divider {
  height: 2px; background: linear-gradient(90deg, transparent, var(--c-btn-gold), transparent);
  margin: 0; opacity: .45;
}

/* ===================== UNUSED UTILITY (uniqualization) ===================== */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 1em; }
.alignright { float: right; margin-left: 1em; }
.aligncenter { display: block; margin: 0 auto; }
.sticky { position: sticky; }
.d4f7a2b { display: none; visibility: hidden; }
.x8m3k91 { pointer-events: none; opacity: 0; position: absolute; }
.r2j5p08 { overflow: hidden; max-height: 0; }
.entry-meta { font-size: .8rem; color: var(--c-text-muted); }
.post-thumbnail { margin-bottom: 1em; }
.widget-title { font-size: 1rem; font-weight: 800; margin-bottom: .8em; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .toc-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .author-socials { justify-content: center; }
  .content-block { padding: 20px 18px; }
  .comments-block { padding: 20px 18px; }
  .faq-block { padding: 20px 18px; }
  .toc-block { padding: 20px 18px; }
  .hero-content .container { max-width: 100%; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .game-stats-row { flex-direction: column; }
  .game-stat { border-right: none; border-bottom: 1px solid var(--c-border); }
  .game-stat:last-child { border-bottom: none; }
  .info-content { padding: 22px 18px; }
  /* demo stub mobile */
  .iframe-wrap { padding-bottom: 0; min-height: 280px; }
  .demo-stub { position: relative; min-height: 280px; gap: 12px; padding: 20px 16px; }
  .demo-stub-icon { font-size: 36px; }
  .demo-stub-title { font-size: 1.15rem; }
  .demo-stub-sub { font-size: .85rem; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-legal-links { flex-direction: column; align-items: center; gap: 6px; }
  .game-block-header { flex-direction: column; align-items: flex-start; }
  .toc-list { grid-template-columns: 1fr; }
  /* demo stub small phones */
  .iframe-wrap { min-height: 220px; }
  .demo-stub { min-height: 220px; gap: 10px; padding: 16px 12px; }
  .demo-stub-icon { font-size: 30px; }
  .demo-stub-title { font-size: 1rem; }
  .demo-stub-sub { font-size: .8rem; }
  .demo-stub .btn { width: 100%; justify-content: center; font-size: .9rem; padding: 10px 16px; }
}
