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

:root {
  --c-bg: #0e1230;
  --c-nav: #1a1f3c;
  --c-gold: #fbc02d;
  --c-purple: #8e24aa;
  --c-gold-hover: #f9a825;
  --c-purple-hover: #6a1b9a;
  --c-text: #e8eaf6;
  --c-text-muted: #9fa8da;
  --c-text-dark: #1a1f3c;
  --c-card: #141836;
  --c-card-border: #2a3060;
  --c-input-bg: #1e244a;
  --c-success: #4caf50;
  --c-danger: #ef5350;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(251,192,45,0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.xk4m9-unused {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.xb3r1-layer {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.mq7t2-hidden-block {
  overflow: hidden;
  height: 0;
  width: 0;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--c-gold);
  color: #1a1f3c;
  box-shadow: 0 4px 15px rgba(251,192,45,0.4);
}

.btn--gold:hover {
  background: var(--c-gold-hover);
  box-shadow: 0 6px 20px rgba(251,192,45,0.6);
  color: #1a1f3c;
}

.btn--purple {
  background: var(--c-purple);
  color: #fff;
  box-shadow: 0 4px 15px rgba(142,36,170,0.4);
}

.btn--purple:hover {
  background: var(--c-purple-hover);
  box-shadow: 0 6px 20px rgba(142,36,170,0.6);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--c-gold);
  border: 2px solid var(--c-gold);
}

.btn--outline:hover {
  background: rgba(251,192,45,0.1);
  color: var(--c-gold);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 7px 15px;
  font-size: 0.8rem;
}


.site-header {
  background: var(--c-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(251,192,45,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.header-logo {
  flex-shrink: 0;
}

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

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  color: var(--c-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--c-gold);
  background: rgba(251,192,45,0.08);
}

.header-nav a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

.mobile-nav {
  display: none;
  background: var(--c-nav);
  border-top: 1px solid rgba(251,192,45,0.1);
  padding: 12px 20px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  color: var(--c-gold);
  background: rgba(251,192,45,0.08);
}

.mobile-nav a svg {
  width: 16px;
  height: 16px;
}

.mobile-nav-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 12px 4px;
}


.hero {
  position: relative;
  min-height: 480px;
  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 top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,18,48,0.92) 40%, rgba(14,18,48,0.6) 70%, rgba(14,18,48,0.3) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,192,45,0.15);
  border: 1px solid rgba(251,192,45,0.35);
  color: var(--c-gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

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

.hero-intro {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-spoiler {
  margin-bottom: 24px;
}

.hero-spoiler-toggle {
  background: none;
  border: none;
  color: var(--c-gold);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.hero-spoiler-toggle svg {
  transition: transform 0.3s;
}

.hero-spoiler-toggle.open svg {
  transform: rotate(180deg);
}

.hero-spoiler-content {
  display: none;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.hero-stat {
  text-align: center;
}

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

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.breadcrumbs {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.8rem;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
}

.breadcrumbs-list li::after {
  content: '›';
  color: rgba(255,255,255,0.2);
}

.breadcrumbs-list li:last-child::after {
  display: none;
}

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

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

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


.section {
  padding: 48px 0;
}

.section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title span.t-gold {
  color: var(--c-gold);
}

.section-title svg {
  width: 24px;
  height: 24px;
  color: var(--c-gold);
  flex-shrink: 0;
}

.card {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: var(--shadow);
}


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

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

.toc-list {
  list-style: none;
  columns: 2;
  gap: 8px;
}

.toc-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--c-text-muted);
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
}

.toc-list a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--c-gold);
}

.toc-list a:hover {
  color: var(--c-gold);
}


.demo-block {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.demo-header {
  background: var(--c-nav);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-header-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-header-btns {
  display: flex;
  gap: 8px;
}

.demo-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,18,48,0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s;
}

.demo-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.demo-overlay-icon {
  width: 64px;
  height: 64px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.demo-overlay-icon svg {
  width: 28px;
  height: 28px;
  color: #1a1f3c;
}

.demo-overlay p {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.demo-info {
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--c-card-border);
}

.demo-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.demo-info-item strong {
  color: var(--c-gold);
}


.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pros-block, .cons-block {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--c-card-border);
}

.pros-block {
  border-top: 3px solid var(--c-success);
}

.cons-block {
  border-top: 3px solid var(--c-danger);
}

.pc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.pros-block .pc-header {
  color: var(--c-success);
}

.cons-block .pc-header {
  color: var(--c-danger);
}

.pc-header svg {
  width: 18px;
  height: 18px;
}

.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  line-height: 1.5;
  color: var(--c-text);
}

.pc-list li .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pros-block .pc-list li .icon {
  color: var(--c-success);
}

.cons-block .pc-list li .icon {
  color: var(--c-danger);
}


.strategies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.strategy-card {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.strategy-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.strategy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.strategy-card:hover .strategy-img img {
  transform: scale(1.05);
}

.strategy-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strategy-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.strategy-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  flex: 1;
}

.strategy-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--c-card-border);
}


.review-content {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5 {
  color: #fff;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.review-content h2 { font-size: 1.3rem; }
.review-content h3 { font-size: 1.1rem; }
.review-content h4 { font-size: 1rem; }

.review-content p {
  color: var(--c-text);
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.review-content ul, .review-content ol {
  margin: 12px 0 16px 20px;
  color: var(--c-text);
  font-size: 0.92rem;
}

.review-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.review-content strong, .review-content b {
  color: var(--c-gold);
}

.review-content em, .review-content i {
  color: var(--c-text-muted);
  font-style: italic;
}

.review-content a {
  color: var(--c-gold);
  text-decoration: underline;
}

.review-content blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 10px 16px;
  margin: 16px 0;
  background: rgba(251,192,45,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

.review-content table th {
  background: var(--c-nav);
  color: var(--c-gold);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--c-card-border);
}

.review-content table td {
  padding: 10px 14px;
  border: 1px solid var(--c-card-border);
  color: var(--c-text);
}

.review-content table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.review-content img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  margin: 12px 0;
}

.review-content code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--c-gold);
}


.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.testimonial-card {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-nav);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.testimonial-stars svg {
  width: 13px;
  height: 13px;
  color: var(--c-gold);
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.testimonial-date {
  font-size: 0.75rem;
  color: rgba(159,168,218,0.5);
}


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

.review-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

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

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-field input,
.form-field textarea {
  background: var(--c-input-bg);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--c-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--c-gold);
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(159,168,218,0.4);
}

.form-success {
  display: none;
  background: rgba(76,175,80,0.1);
  border: 1px solid var(--c-success);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--c-success);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
}

.form-success.visible {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeIn 0.3s ease;
}


.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--c-gold);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.author-position {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.author-desc {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

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

.author-socials a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  transition: color 0.2s;
}

.author-socials a:hover {
  color: var(--c-gold);
}

.author-socials a svg {
  width: 15px;
  height: 15px;
}

.author-dates {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(159,168,218,0.5);
}


.site-footer {
  background: var(--c-nav);
  border-top: 1px solid rgba(251,192,45,0.12);
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(159,168,218,0.7);
  transition: color 0.2s;
}

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

.footer-mid {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 20px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.3px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
  background: rgba(251,192,45,0.15);
  border-color: rgba(251,192,45,0.3);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  color: var(--c-text-muted);
}

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

.footer-legal {
  font-size: 0.75rem;
  color: rgba(159,168,218,0.4);
  line-height: 1.6;
  max-width: 700px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(159,168,218,0.5);
  white-space: nowrap;
}


.faq-block {
  margin-bottom: 32px;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--c-gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.87rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.2s ease;
}


.info-page-content {
  padding: 40px 0;
}

.info-page-content h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.info-page-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-top: 28px;
  margin-bottom: 12px;
}

.info-page-content p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.info-page-content ul {
  margin: 10px 0 16px 20px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

.info-page-content li {
  margin-bottom: 6px;
}

.info-page-content a {
  color: var(--c-gold);
}


.game-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  font-size: 0.88rem;
}

.game-info-table th {
  background: var(--c-nav);
  color: var(--c-gold);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid var(--c-card-border);
}

.game-info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(42,48,96,0.5);
  color: var(--c-text);
}

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

.game-info-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.similar-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.similar-game-card {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: color 0.2s, background 0.2s;
}

.similar-game-card:hover {
  color: var(--c-gold);
  background: rgba(251,192,45,0.06);
}


.wp-block-separator { display: none; }
.entry-meta { display: none; }
.elementor-hidden { visibility: hidden; height: 0; overflow: hidden; }


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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,192,45,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(251,192,45,0); }
}

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

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


@media (max-width: 1024px) {
  .strategies {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .similar-games {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .burger {
    display: flex;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .strategies {
    grid-template-columns: 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .toc-list {
    columns: 1;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-socials {
    justify-content: center;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 14px;
  }
  .similar-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-socials {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 380px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-btns {
    flex-direction: column;
  }
  .header-inner {
    padding: 10px 16px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 32px 0;
  }
  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .game-info-table {
    display: block;
    overflow-x: auto;
  }
}
