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

:root {
  --c-bg: #140d05;
  --c-nav: #2a1b0f;
  --c-nav-dark: #1e1208;
  --c-gold: #d4af37;
  --c-gold-hover: #f0cc55;
  --c-bonus: #ffb300;
  --c-bonus-hover: #ffd04d;
  --c-text: #f0e6d0;
  --c-text-muted: #b09a78;
  --c-text-light: #fdf5e8;
  --c-border: #3d2a14;
  --c-border-light: #5a3e20;
  --c-card: #1e1208;
  --c-card-hover: #2a1b0f;
  --c-overlay: rgba(20,13,5,0.85);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 20px rgba(212,175,55,0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Poppins', sans-serif;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; background: var(--c-bg); overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold-hover); }

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

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  color: var(--c-text-light);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--c-text); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.xb7k2 { display: none; }
.wr9p1 { visibility: hidden; position: absolute; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section-gap { padding: 60px 0; }
.section-gap--sm { padding: 40px 0; }

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--c-text-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, transparent 100%);
  margin-left: 16px;
  opacity: 0.5;
}

.section-subtitle {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn--demo {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--demo:hover {
  background: rgba(212,175,55,0.12);
  box-shadow: var(--shadow-gold);
  color: var(--c-gold-hover);
}

.btn--play {
  background: linear-gradient(135deg, var(--c-gold) 0%, #b8930a 100%);
  color: #0f0800;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.btn--play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.5);
  color: #0f0800;
}

.btn--bonus {
  background: linear-gradient(135deg, var(--c-bonus) 0%, #e67e00 100%);
  color: #0f0800;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,179,0,0.35);
}
.btn--bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,179,0,0.5);
  color: #0f0800;
}

.btn--sm { padding: 8px 18px; font-size: 0.85rem; }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

.btn-pulse {
  animation: pulse-glow 2.2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 6px 30px rgba(212,175,55,0.7); }
}

#header {
  background: var(--c-nav);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--c-gold);
  background: rgba(212,175,55,0.08);
}

.header-nav a svg { flex-shrink: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--c-nav-dark);
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
}

.mobile-menu.active { display: block; }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--c-text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.mobile-menu-nav a:hover {
  color: var(--c-gold);
  background: rgba(212,175,55,0.08);
}

.mobile-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

#hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-banner.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.04);
  transition: transform 8s ease;
}

#hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,13,5,0.92) 0%, rgba(20,13,5,0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--c-text-light);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  line-height: 1.2;
}

.hero-content h1 span { color: var(--c-gold); }

.hero-intro {
  color: var(--c-text-muted);
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.7;
}

.spoiler-toggle {
  background: none;
  border: none;
  color: var(--c-gold);
  font-size: 0.85rem;
  font-family: var(--font);
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.spoiler-toggle:hover { color: var(--c-gold-hover); }

.spoiler-content {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 12px 16px;
  background: rgba(212,175,55,0.06);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
  display: none;
}

.spoiler-content.open { display: block; animation: fadeIn 0.3s ease; }

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-gold);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#breadcrumbs {
  background: var(--c-nav-dark);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin: 0;
}

.breadcrumbs-list li a {
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.breadcrumbs-list li a:hover { color: var(--c-gold); }
.breadcrumbs-list li:last-child { color: var(--c-gold); }

.breadcrumb-sep {
  color: var(--c-border-light);
  font-size: 0.75rem;
}

#toc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 2px;
}

.toc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px 24px;
}

.toc-list li { margin: 0; }

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.toc-list a:hover {
  color: var(--c-gold);
  background: rgba(212,175,55,0.07);
}

.toc-list a svg { flex-shrink: 0; opacity: 0.7; }
.toc-num {
  width: 22px;
  height: 22px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-gold);
  flex-shrink: 0;
}

#advantages { background: transparent; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.adv-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(212,175,55,0.1);
}

.adv-card:hover::before { opacity: 1; }

.adv-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.adv-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-light);
  margin: 0;
}

.adv-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
}

#game-info { background: transparent; }

.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table th {
  background: var(--c-nav);
  color: var(--c-gold);
  font-weight: 600;
  text-align: left;
  padding: 14px 20px;
  border-bottom: 2px solid var(--c-border);
  white-space: nowrap;
}

.info-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle;
}

.info-table tr:last-child td { border-bottom: none; }

.info-table tr:nth-child(even) td { background: rgba(42,27,15,0.4); }

.info-table tr:hover td { background: rgba(212,175,55,0.05); }

.info-table td strong { color: var(--c-gold); }

.tag-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212,175,55,0.15);
  color: var(--c-gold);
  border: 1px solid rgba(212,175,55,0.25);
}

#video { background: transparent; }

.video-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-header-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,0,0,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4040;
}

.video-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#review { background: transparent; }

.review-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.review-content-area {
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.review-content-area h2 { color: var(--c-text-light); margin: 1.6rem 0 0.8rem; font-size: 1.3rem; }
.review-content-area h3 { color: var(--c-gold); margin: 1.3rem 0 0.6rem; font-size: 1.1rem; }
.review-content-area h4 { color: var(--c-text-light); margin: 1rem 0 0.5rem; font-size: 1rem; }
.review-content-area p { margin-bottom: 1rem; color: var(--c-text); }
.review-content-area ul, .review-content-area ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.review-content-area li { margin-bottom: 0.5rem; }
.review-content-area a { color: var(--c-gold); }
.review-content-area a:hover { color: var(--c-gold-hover); text-decoration: underline; }
.review-content-area strong { color: var(--c-text-light); font-weight: 600; }
.review-content-area em { color: var(--c-gold); font-style: italic; }
.review-content-area blockquote {
  border-left: 4px solid var(--c-gold);
  background: rgba(212,175,55,0.06);
  padding: 16px 20px;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.review-content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.review-content-area th {
  background: var(--c-nav);
  color: var(--c-gold);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-border);
}
.review-content-area td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.review-content-area tr:last-child td { border-bottom: none; }
.review-content-area tr:nth-child(even) td { background: rgba(42,27,15,0.4); }
.review-content-area img { border-radius: var(--radius-sm); margin: 1rem 0; }
.review-content-area hr { border: none; border-top: 1px solid var(--c-border); margin: 2rem 0; }
.review-content-area code {
  background: rgba(212,175,55,0.12);
  color: var(--c-gold);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.88em;
}

#comments { background: transparent; }

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.comment-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color var(--transition);
}

.comment-card:hover { border-color: rgba(212,175,55,0.25); }

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold) 0%, #8b6914 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #0f0800;
  flex-shrink: 0;
  text-transform: uppercase;
}

.comment-meta { flex: 1; }

.comment-name {
  font-weight: 600;
  color: var(--c-text-light);
  font-size: 0.92rem;
}

.comment-date {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.comment-stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
  font-size: 0.85rem;
}

.comment-text {
  color: var(--c-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.comment-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.comment-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text-light);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.star-rating {
  display: flex;
  gap: 4px;
  font-size: 1.4rem;
  cursor: pointer;
  margin-bottom: 4px;
}

.star-rating span {
  color: var(--c-border-light);
  transition: color var(--transition);
  user-select: none;
}

.star-rating span.active,
.star-rating span:hover { color: var(--c-gold); }

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--c-gold);
  font-weight: 600;
  font-size: 1rem;
}

#faq { background: transparent; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(212,175,55,0.35); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-light);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--c-gold); }

.faq-item.open .faq-question { color: var(--c-gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--c-gold);
}

.faq-item.open .faq-icon { background: rgba(212,175,55,0.25); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

#author { background: transparent; }

.author-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.author-info { flex: 1; min-width: 0; }

.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 4px;
}

.author-position {
  font-size: 0.85rem;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.author-bio {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.author-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.author-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.author-meta svg { color: var(--c-gold); }

.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  color: var(--c-gold);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
}

.author-social-link:hover {
  background: rgba(212,175,55,0.18);
  border-color: var(--c-gold);
  color: var(--c-gold-hover);
}

#footer {
  background: var(--c-nav);
  border-top: 1px solid var(--c-border);
  margin-top: 60px;
}

.footer-top {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--c-border);
}

.footer-logo img { height: 44px; width: auto; margin-bottom: 14px; }

.footer-logo p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--c-gold); }

.footer-trust {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
}

.footer-trust-title {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.trust-logo {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-logo:hover {
  border-color: rgba(212,175,55,0.35);
  color: var(--c-gold);
  background: rgba(212,175,55,0.06);
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.payment-logo {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.payment-logo:hover { border-color: rgba(212,175,55,0.25); color: var(--c-text-light); }

.footer-provider {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
}

.footer-provider span {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.provider-logo {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.provider-logo:hover { border-color: var(--c-gold); color: var(--c-gold); }

.footer-provider-socials {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  max-width: 480px;
  line-height: 1.5;
  text-align: right;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--c-border-light);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-border-light) 30%, var(--c-border-light) 70%, transparent 100%);
  margin: 48px 0;
  opacity: 0.5;
}

.cta-strip {
  background: linear-gradient(135deg, var(--c-nav) 0%, var(--c-nav-dark) 100%);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.cta-strip-text h3 { font-size: 1.1rem; margin: 0 0 4px; color: var(--c-text-light); }
.cta-strip-text p { font-size: 0.85rem; color: var(--c-text-muted); margin: 0; }
.cta-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade { animation: fadeIn 0.5s ease; }

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--c-gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f0800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
  box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,175,55,0.5); }

.info-page-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 40px 0;
}

.info-page-content h1 { margin-bottom: 1.2rem; }
.info-page-content h2 { color: var(--c-gold); font-size: 1.15rem; margin: 1.6rem 0 0.6rem; }
.info-page-content p { color: var(--c-text); line-height: 1.8; }
.info-page-content ul { padding-left: 1.5rem; }
.info-page-content li { margin-bottom: 0.4rem; color: var(--c-text); }

.related-games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: all var(--transition);
}

.game-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.game-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(212,175,55,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--c-gold);
  font-size: 1.4rem;
}

.game-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-light);
  margin-bottom: 4px;
}

.game-card-provider {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.wp-content { display: none; }
.elementor-section { display: none; }

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .header-actions { display: none; }

  .hero-content { padding: 40px 0; }
  .hero-stats { gap: 16px; }

  .advantages-grid { grid-template-columns: repeat(2, 1fr); }

  .review-box { padding: 24px 20px; }

  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-socials { justify-content: center; }
  .author-meta { justify-content: center; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
  .footer-provider { justify-content: center; }
  .footer-provider-socials { margin-left: 0; }

  .cta-strip { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .toc-list { grid-template-columns: 1fr; }

  .comment-form { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .info-table th, .info-table td { padding: 10px 12px; }
  .header-inner { gap: 8px; }
  .header-logo img { height: 36px; }
}

@media (max-width: 768px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  pre, code { white-space: pre-wrap; word-break: break-word; }
  iframe { max-width: 100%; }
  .hero-content { max-width: 100%; }
}

.lz9r3 { font-size: 0; line-height: 0; visibility: hidden; }
.qm7w2 { pointer-events: none; }
#wp-toolbar { display: none !important; }
