*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #0d1117;
  --c-surface: #161b22;
  --c-surface2: #1c2230;
  --c-border: #2d3748;
  --c-text: #e2e8f0;
  --c-text-muted: #8898aa;
  --c-orange: #ff6b00;
  --c-orange-h: #ff8c33;
  --c-green: #00c06f;
  --c-green-h: #00d97e;
  --c-red: #e53e3e;
  --c-star: #fbbf24;
  --c-white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.35);
  --transition: 0.2s ease;
  --font-main: "Inter", system-ui, sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: var(--c-orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-orange-h);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
  font-family: var(--font-main);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  color: var(--c-white);
}

.xq7r2 {
  display: none;
}
.wp-block-spacer {
  height: 20px;
}
.site-icon {
  display: none;
}
.entry-meta {
  display: none;
}
.wp-embed-aspect-16-9 {
  display: none;
}
.elementor-hidden {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  padding: 60px 0;
}
.section--sm {
  padding: 36px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--orange {
  background: var(--c-orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--c-orange-h);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
}
.btn--green {
  background: var(--c-green);
  color: #fff;
}
.btn--green:hover {
  background: var(--c-green-h);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 192, 111, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--ghost:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 80px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    color var(--transition),
    background var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}
.header-nav svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.header-review-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  margin-left: 8px;
}
.header-review-count strong {
  color: var(--c-orange);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--c-surface);
}
.hero-slide {
  display: none;
  position: relative;
  min-height: 420px;
  align-items: center;
}
.hero-slide.active {
  display: flex;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 600px;
}
.hero-slide-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-slide-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.7;
}
.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  transition:
    background var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
}
.slider-prev {
  left: 16px;
}
.slider-next {
  right: 16px;
}
.slider-prev:hover,
.slider-next:hover {
  background: rgba(255, 107, 0, 0.7);
}

.info-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 16px 32px;
}
.info-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.info-block-header h2 {
  font-size: 1.2rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.info-item {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.info-item-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.info-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-white);
}
.info-item-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.info-item-logos img {
  height: 80px;
  width: auto;
  filter: brightness(0.9) grayscale(0.3);
  border-radius: 3px;
  background: #fff;
  padding: 2px 4px;
}
.info-spoiler {
  display: none;
}
.info-spoiler.open {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.info-toggle-btn {
  font-size: 0.85rem;
  color: var(--c-orange);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bonus-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 16px 32px;
}
.bonus-tile {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(
    135deg,
    var(--c-surface) 0%,
    var(--c-surface2) 100%
  );
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.bonus-tile:hover {
  border-color: var(--c-orange);
  transform: translateY(-2px);
}
.bonus-tile-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-orange);
  background: rgba(255, 107, 0, 0.12);
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
  width: fit-content;
}
.bonus-tile h4 {
  font-size: 1rem;
  color: var(--c-white);
}
.bonus-tile p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  flex: 1;
}

.toc-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0 16px 32px;
}
.toc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.toc-tab {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  text-decoration: none;
  transition: all var(--transition);
}
.toc-tab:hover,
.toc-tab:focus {
  color: var(--c-white);
  background: var(--c-surface);
  border-color: var(--c-orange);
}

.review-promo-banner {
  background: linear-gradient(100deg, #1a2540 0%, #1e2e1a 100%);
  border: 1px solid rgba(0, 192, 111, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 16px 20px;
}
.review-promo-banner p {
  font-size: 1rem;
  color: var(--c-text);
  max-width: 600px;
}
.review-promo-banner strong {
  color: var(--c-green);
}

.review-form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 16px 32px;
}
.review-form-wrap h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--c-white);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field--full {
  grid-column: 1/-1;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--c-orange);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.rating-fields {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.rating-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rating-field label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.star-rating {
  display: flex;
  gap: 2px;
}
.star-rating input {
  display: none;
}
.star-rating label {
  font-size: 1.4rem;
  color: var(--c-border);
  cursor: pointer;
  transition: color 0.15s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--c-star);
}
.star-rating {
  flex-direction: row-reverse;
}
.star-rating label:hover,
.star-rating input:checked ~ label {
  color: var(--c-star);
}
.form-success {
  display: none;
  background: rgba(0, 192, 111, 0.1);
  border: 1px solid var(--c-green);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--c-green);
  font-weight: 600;
}
.form-success.visible {
  display: block;
}

.mb-reviews-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 16px;
}
.mb-review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition);
}
.mb-review-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
}
.mb-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.mb-review-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mb-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}
.mb-review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mb-review-author {
  font-size: 0.95rem;
  color: var(--c-white);
}
.mb-review-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.mb-review-country img {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
.mb-review-date {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.mb-review-rating-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.mb-rating-display {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mb-rating-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-star);
}
.mb-stars {
  display: flex;
  gap: 2px;
}
.mb-star {
  font-size: 1rem;
  color: var(--c-border);
}
.mb-star-filled {
  color: var(--c-star);
}
.mb-rating-details-btn {
  font-size: 0.75rem;
  color: var(--c-orange);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline dotted;
}
.mb-rating-details {
  display: none;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 8px;
}
.mb-rating-details.open {
  display: block;
}
.mb-rating-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mb-rating-detail-row:last-child {
  border-bottom: none;
}
.mb-rating-detail-bar {
  flex: 1;
  height: 4px;
  background: var(--c-border);
  border-radius: 2px;
  overflow: hidden;
}
.mb-rating-detail-fill {
  height: 100%;
  background: var(--c-star);
  border-radius: 2px;
}
.mb-review-source {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mb-review-source a {
  color: var(--c-orange);
  font-size: 0.78rem;
}
.mb-review-source-badge {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 0.72rem;
  color: var(--c-orange);
}
.mb-review-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
}
.mb-review-text {
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.7;
}
.mb-review-text-truncated {
  max-height: none;
}
.mb-review-expand-wrap {
  margin-top: 6px;
}
.mb-review-expand {
  font-size: 0.82rem;
  color: var(--c-orange);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline dotted;
}
.mb-review-expanded .mb-review-expand {
  display: none;
}
.mb-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}
.mb-review-pros h5,
.mb-review-cons h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.mb-review-pros h5 {
  color: var(--c-green);
}
.mb-review-cons h5 {
  color: var(--c-red);
}
.mb-review-pros ul,
.mb-review-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mb-pro-item,
.mb-con-item {
  font-size: 0.85rem;
  padding-left: 4px;
  color: var(--c-text);
}
.mb-pro-item::before {
  content: "+ ";
  color: var(--c-green);
  font-weight: 700;
}
.mb-con-item::before {
  content: "— ";
  color: var(--c-red);
  font-weight: 700;
}
.mb-review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.mb-review-media img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: transform var(--transition);
}
.mb-review-media img:hover {
  transform: scale(1.03);
}
.mb-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}
.mb-review-votes {
  display: flex;
  gap: 8px;
}
.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.85rem;
  color: var(--c-text);
  transition: all var(--transition);
}
.mb-vote-btn:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}
.mb-vote-btn.voted {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--c-orange);
  color: var(--c-orange);
}
.mb-reply-btn {
  font-size: 0.85rem;
  color: var(--c-orange);
  background: none;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  transition: all var(--transition);
}
.mb-reply-btn:hover {
  background: rgba(255, 107, 0, 0.1);
}
.mb-reply-form {
  margin-top: 14px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.mb-reply-form textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  padding: 10px 12px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  resize: vertical;
}
.mb-reply-form textarea:focus {
  outline: none;
  border-color: var(--c-orange);
}
.mb-reply-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.comparison-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 16px 32px;
  overflow-x: auto;
}
.comparison-block h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
}
.comparison-table th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  background: var(--c-surface2);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--c-text-muted);
}
.comparison-table td:nth-child(2) {
  color: var(--c-orange);
  font-weight: 600;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.compare-stars {
  color: var(--c-star);
  font-size: 0.85rem;
}
.compare-btn-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.screenshots-block {
  padding: 0 16px 32px;
}
.screenshots-block h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding: 0 0 0 0;
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.screenshot-item:hover {
  transform: translateY(-2px);
  border-color: var(--c-orange);
}
.screenshot-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.video-block {
  padding: 0 16px 32px;
}
.video-block h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-review-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 0 16px 32px;
}
.content-review-block h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.author-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}
.author-line img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}
.author-line-info {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.author-line-info a {
  color: var(--c-orange);
}
.content-body {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--c-text);
}
.content-body h2 {
  font-size: 1.4rem;
  margin: 28px 0 12px;
  color: var(--c-white);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}
.content-body h3 {
  font-size: 1.15rem;
  margin: 22px 0 10px;
  color: var(--c-white);
}
.content-body h4 {
  font-size: 1rem;
  margin: 18px 0 8px;
  color: var(--c-orange);
}
.content-body p {
  margin-bottom: 14px;
}
.content-body ul,
.content-body ol {
  margin: 12px 0 16px 20px;
}
.content-body ul {
  list-style: disc;
}
.content-body ol {
  list-style: decimal;
}
.content-body li {
  margin-bottom: 6px;
  color: var(--c-text);
}
.content-body a {
  color: var(--c-orange);
  text-decoration: underline dotted;
}
.content-body strong {
  color: var(--c-white);
}
.content-body blockquote {
  border-left: 3px solid var(--c-orange);
  padding: 12px 20px;
  margin: 16px 0;
  background: var(--c-surface2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.content-body table th {
  background: var(--c-surface2);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--c-border);
}
.content-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
}
.content-body table tr:last-child td {
  border-bottom: none;
}
.content-body table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.content-body code {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 0.88em;
  font-family: monospace;
  color: var(--c-orange);
}
.content-body pre {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}
.content-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--c-text);
}
.content-body img {
  border-radius: var(--radius-md);
  margin: 12px 0;
}
.content-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

.faq-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 16px 32px;
}
.faq-block h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--c-surface2);
  border: none;
  padding: 14px 18px;
  color: var(--c-text);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}
.faq-question.open {
  color: var(--c-white);
}
.faq-icon {
  font-size: 1rem;
  color: var(--c-orange);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.7;
  background: var(--c-bg);
}
.faq-answer.open {
  display: block;
}

.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-brand img {
  height: 85px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-nav h4,
.footer-trust h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav ul a {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.footer-nav ul a:hover {
  color: var(--c-text);
}
.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-trust-logos img {
  height: 28px;
  width: auto;
  filter: grayscale(0.6) brightness(0.8);
  opacity: 0.7;
  transition: all var(--transition);
}
.footer-trust-logos img:hover {
  filter: none;
  opacity: 1;
}
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 20px 16px 0;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  max-width: 600px;
  line-height: 1.5;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, #1a2540 0%, #1e2c1a 100%);
  border-top: 1px solid var(--c-border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.sticky-widget p {
  font-size: 0.9rem;
  color: var(--c-text);
  font-weight: 500;
}
.sticky-widget strong {
  color: var(--c-green);
}
.sticky-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 1.2rem;
  padding: 4px 8px;
  cursor: pointer;
  margin-left: auto;
  transition: color var(--transition);
}
.sticky-widget-close:hover {
  color: var(--c-text);
}

.section-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}
.section-subheading {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
}
.modal-close:hover {
  color: var(--c-text);
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.flag-img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    padding: 12px 0;
    z-index: 850;
  }
  .header-nav.open {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .header-review-count {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rating-fields {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero-slide-content {
    padding: 32px 20px;
  }
  .hero-slide-content h2 {
    font-size: 1.5rem;
  }
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-tiles {
    flex-direction: column;
  }
  .mb-review-pros-cons {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .comparison-block {
    padding: 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .section {
    padding: 36px 0;
  }
  .content-review-block {
    padding: 20px;
  }
  .review-promo-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .rating-fields {
    grid-template-columns: 1fr;
  }
  .mb-review-header {
    flex-direction: column;
    gap: 10px;
  }
  .mb-review-rating-wrap {
    align-items: flex-start;
  }
}

.xq9a4 {
  height: 0;
  overflow: hidden;
  position: absolute;
  visibility: hidden;
}
.r3f7k:not(.active) {
  pointer-events: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
