:root {
  --c-bg: #1c1008;
  --c-bg2: #251507;
  --c-surface: #2e1b0a;
  --c-surface2: #3a2210;
  --c-nav: #120b04;
  --c-gold: #d4920e;
  --c-gold-light: #f5b93a;
  --c-gold-dark: #a8720a;
  --c-green: #1a7c3e;
  --c-green-light: #22a852;
  --c-red: #c0392b;
  --c-text: #f0ddb5;
  --c-text-muted: #b09060;
  --c-text-dim: #7a5c30;
  --c-border: #4a3018;
  --c-border-gold: #8a6020;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 18px rgba(212,146,14,0.35);
  --trans: 0.22s ease;
}

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

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-gold-light); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-gold); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

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

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--c-gold-light);
  line-height: 1.25;
  text-wrap: balance;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 0.9em; }

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  border-radius: 2px;
  margin: 0.55rem auto 0;
}

.block-wrap {
  padding: 56px 0;
}
.block-wrap + .block-wrap {
  padding-top: 0;
}

.card-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--c-gold-dark), var(--c-gold), var(--c-gold-light));
  color: #1a0800;
  box-shadow: 0 2px 12px rgba(212,146,14,0.4);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light), #ffd26b);
  color: #0f0500;
  box-shadow: 0 4px 20px rgba(212,146,14,0.6);
  transform: translateY(-1px);
}

.btn--green {
  background: linear-gradient(135deg, var(--c-green), var(--c-green-light));
  color: #fff;
  box-shadow: 0 2px 12px rgba(26,124,62,0.4);
}
.btn--green:hover {
  background: linear-gradient(135deg, var(--c-green-light), #28d466);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,124,62,0.6);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--c-gold-light);
  border: 2px solid var(--c-gold);
}
.btn--outline:hover {
  background: rgba(212,146,14,0.12);
  color: var(--c-gold-light);
}

.btn--lg { padding: 14px 32px; font-size: 1.1rem; }
.btn--sm { padding: 7px 14px; font-size: 0.8rem; }

.btn svg { flex-shrink: 0; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-nav);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--c-gold-light);
  background: rgba(212,146,14,0.1);
}
.nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--trans);
}
.lang-btn:hover { border-color: var(--c-gold); }
.lang-btn svg { width: 14px; height: 14px; transition: transform var(--trans); }
.lang-dropdown.open .lang-btn svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 130px;
  display: none;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--c-text);
  cursor: pointer;
  transition: background var(--trans);
}
.lang-item:hover { background: rgba(212,146,14,0.12); }
.lang-flag { font-size: 1.1rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  transition: all var(--trans);
  flex-shrink: 0;
}
.burger-line {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.burger.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active .burger-line:nth-child(2) { opacity: 0; }
.burger.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--c-nav);
  border-top: 1px solid var(--c-border);
  padding: 12px 16px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: var(--c-text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.mobile-nav-link:hover { color: var(--c-gold-light); background: rgba(212,146,14,0.1); }
.mobile-nav-link svg { width: 18px; height: 18px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,8,2,0.92) 0%, rgba(18,8,2,0.6) 55%, rgba(18,8,2,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,146,14,0.18);
  border: 1px solid var(--c-border-gold);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--c-gold-light);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero h1 { color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
.hero h1 span { color: var(--c-gold-light); }
.hero-desc {
  font-size: 1.05rem;
  color: #d4c4a0;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 2rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--c-gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ BREADCRUMBS ============ */
.breadcrumbs-wrap {
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-gold-light); }
.bc-sep { color: var(--c-text-dim); }
.bc-current { color: var(--c-gold-light); }

/* ============ PROS/CONS ============ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-card { border-color: rgba(34,168,82,0.3); }
.cons-card { border-color: rgba(192,57,43,0.3); }
.pros-cons-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-cons-title.pros { color: #22a852; }
.pros-cons-title.cons { color: #e74c3c; }
.pros-cons-list { display: flex; flex-direction: column; gap: 10px; }
.pros-cons-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.pros-cons-item .ic {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pros-cons-item .ic.plus { background: rgba(34,168,82,0.2); color: #22a852; }
.pros-cons-item .ic.minus { background: rgba(231,76,60,0.2); color: #e74c3c; }

/* ============ SCREENSHOTS ============ */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans);
}
.screenshot-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.screenshot-item img { width: 100%; height: 200px; object-fit: cover; display: block; }
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.screenshot-item:hover .screenshot-overlay { opacity: 1; }
.screenshot-overlay svg { color: #fff; width: 36px; height: 36px; }

.screenshots-slider { display: none; }

/* ============ APP INFO ============ */
.app-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.app-table-wrap { overflow-x: auto; }
.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0 auto;
}
.app-table th, .app-table td {
  padding: 11px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.app-table th {
  background: var(--c-surface2);
  color: var(--c-gold-light);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  width: 45%;
}
.app-table td { background: var(--c-surface); }
.app-table tr:hover td { background: rgba(255,255,255,0.02); }

.app-download-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--c-gold-light);
  margin-bottom: 1.2rem;
}
.app-download-btns { display: flex; flex-direction: column; gap: 12px; }
.dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: var(--c-surface2);
  transition: all var(--trans);
  text-decoration: none;
}
.dl-btn:hover {
  border-color: var(--c-gold);
  background: rgba(212,146,14,0.08);
  transform: translateX(3px);
  color: var(--c-text);
}
.dl-btn-icon { flex-shrink: 0; color: var(--c-gold-light); }
.dl-btn-icon svg { width: 28px; height: 28px; }
.dl-btn-text small { display: block; font-size: 0.72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.dl-btn-text strong { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--c-text); }

/* ============ VIDEO ============ */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============ DEMO GAME ============ */
.demo-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.demo-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border-gold);
  background: #000;
  box-shadow: var(--shadow-gold);
  /* Ключевое для iOS Safari: */
  -webkit-overflow-scrolling: auto;
  overscroll-behavior: contain;
}

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

.demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  flex-wrap: wrap;
}
.demo-cta-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--c-gold-light);
  margin-bottom: 4px;
}
.demo-cta-text span { font-size: 0.88rem; color: var(--c-text-muted); }

/* ============ CONTENT REVIEW ============ */
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 2px solid var(--c-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--c-gold-light);
}
.author-info { flex: 1; }
.author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--c-gold-light);
  margin-bottom: 2px;
}
.author-meta { font-size: 0.8rem; color: var(--c-text-muted); }
.author-link { color: var(--c-gold-light); margin-left: 8px; }

.review-content h2, .review-content h3, .review-content h4 { margin: 1.4em 0 0.6em; }
.review-content p { margin-bottom: 1em; color: var(--c-text); line-height: 1.7; }
.review-content ul, .review-content ol {
  margin: 0.8em 0 1em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-content ul { list-style: disc; }
.review-content ol { list-style: decimal; }
.review-content li { color: var(--c-text); line-height: 1.6; }
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}
.review-content table th, .review-content table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.review-content table th { background: var(--c-surface2); color: var(--c-gold-light); }
.review-content table td { background: var(--c-surface); }
.review-content a { color: var(--c-gold-light); text-decoration: underline; text-underline-offset: 3px; }
.review-content strong { color: var(--c-gold-light); }
.review-content blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(212,146,14,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1em 0;
  font-style: italic;
  color: var(--c-text-muted);
}

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: var(--c-border-gold); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  transition: background var(--trans);
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--c-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-light);
  transition: transform var(--trans), background var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: rgba(212,146,14,0.15); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--c-nav);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 28px;
}
.footer-logo img { height: 44px; width: auto; object-fit: contain; }
.footer-logo-text {
  font-size: 0.8rem;
  color: var(--c-text-dim);
  margin-top: 10px;
  line-height: 1.5;
}
.footer-nav-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--c-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-links a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--trans);
}
.footer-nav-links a:hover { color: var(--c-gold-light); }

.footer-middle {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.footer-logos-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-logos-label {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 100%;
  margin-bottom: 4px;
}
.footer-badge {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-badge svg { width: 16px; height: 16px; color: var(--c-gold-light); }
.footer-payment-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-badge {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--c-text-dim);
}
.footer-provider img { height: 28px; width: auto; object-fit: contain; opacity: 0.75; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.copyright {
  font-size: 0.78rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
}
.legal-age {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  color: var(--c-text-dim);
  text-align: center;
  line-height: 1.1;
}

/* ============ WIDGET ============ */
.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0f1e12 0%, #102818 100%);
  border-top: 2px solid var(--c-green);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  flex-wrap: wrap;
}
.widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.widget-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #fff;
}
.widget-text span { font-size: 0.8rem; color: #a8d8b0; }
.widget-right { display: flex; align-items: center; gap: 10px; }
.widget-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--trans);
  flex-shrink: 0;
}
.widget-close:hover { color: rgba(255,255,255,0.8); }
.widget-close svg { width: 16px; height: 16px; }
.widget-hidden { display: none !important; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--trans);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============ DIVIDER ============ */
.divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0;
}

/* ============ MISC unused styles (uniqualization) ============ */
.wp-block-cover { min-height: 430px; }
.entry-content { color: var(--c-text); }
.site-main { outline: none; }
.wp-block-group { margin: 0; }
.elementor-section { padding: 60px 0; }
.page-id-42 .sidebar { display: none; }
.qx7r2a { opacity: 0; pointer-events: none; }
.zf19bm { display: none; visibility: hidden; }
.k3v8pw { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.m9x4nt { color: transparent; font-size: 0; }
.j7k2lq { transform: scale(0); }
.sidebar-widget-9x2 { display: none; }
.yoast-seo-hidden { display: none; }
.wp-post-author-box { opacity: 0; }

/* ============ 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 float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.fade-in-up { animation: fadeInUp 0.6s ease both; }
.fade-in { animation: fadeIn 0.5s ease both; }

.btn--gold:active { transform: scale(0.97); }
.btn--green:active { transform: scale(0.97); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .app-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
  .screenshots-grid { display: none; }
  .screenshots-slider { display: block; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 420px; }
  .hero-content { padding: 40px 0; }
  .demo-cta { flex-direction: column; text-align: center; }
  .demo-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 540px) {
  .header-inner { flex-wrap: nowrap; }
  .hero-stats { gap: 14px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .online-counter { display: none; }
  .block-wrap { padding: 36px 0; }
  .card-box { padding: 18px; }
}

/* Slider for mobile screenshots */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.slider-btn {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans);
}
.slider-btn:hover { border-color: var(--c-gold); color: var(--c-gold-light); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); cursor: pointer; transition: background var(--trans); }
.slider-dot.active { background: var(--c-gold-light); }

@media (max-width: 900px) {
  .header-inner {
    justify-content: space-between;
  }

  .header-right {
    margin-left: auto;
  }
}

/* ============ DEMO MOBILE FIX ============ */
@media (max-width: 768px) {
  .demo-frame-wrap {
    aspect-ratio: unset;
    height: 620px;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .demo-frame-wrap {
    height: 580px;
  }
}

@media (max-width: 380px) {
  .demo-frame-wrap {
    height: 540px;
  }
}