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

:root {
  --c-bg: #0e0e0e;
  --c-header: #1b1c1d;
  --c-surface: #161718;
  --c-surface2: #1f2023;
  --c-border: #2a2c2f;
  --c-red: #e50539;
  --c-red-h: #c8042f;
  --c-green: #28a909;
  --c-green-h: #1f8a07;
  --c-text: #f0f0f0;
  --c-text-muted: #9a9da3;
  --c-text-dim: #6b6e75;
  --c-gold: #f5b800;
  --c-gold-dim: #c49200;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.22s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-red-h); }
button { cursor: pointer; font-family: inherit; }

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

.hdr-root {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

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

.hdr-logo img {
  height: 36px;
  width: auto;
}

.hdr-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.02em;
}

.hdr-logo-text span { color: var(--c-red); }

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

.hdr-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.hdr-nav a:hover {
  color: var(--c-text);
  background: rgba(255,255,255,0.06);
}

.hdr-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.hdr-reviews-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.hdr-reviews-count strong { color: var(--c-gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  outline: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

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

.btn-red {
  background: var(--c-red);
  color: #fff;
}

.btn-red:hover {
  background: var(--c-red-h);
  color: #fff;
  box-shadow: 0 4px 16px rgba(229,5,57,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(40,169,9,0.35);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  color: var(--c-text);
  border-color: rgba(255,255,255,0.2);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--c-text);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--c-text);
}

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

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

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

.hdr-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 20px 20px;
}

.hdr-mobile-menu.open { display: flex; }

.hdr-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.hdr-mobile-menu a:hover {
  color: var(--c-text);
  background: rgba(255,255,255,0.06);
}

.hdr-mobile-menu a svg { width: 18px; height: 18px; }

.hdr-mobile-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.hdr-mobile-btns .btn { flex: 1; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.95) 0%, rgba(14,14,14,0.7) 50%, rgba(14,14,14,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0;
}

.hero-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.gtile {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.gtile-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.gtile-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gtile-logo img { width: 100%; height: 100%; object-fit: contain; }

.gtile-title { font-size: 1.25rem; font-weight: 700; color: var(--c-text); }
.gtile-provider { font-size: 0.8rem; color: var(--c-text-muted); margin-top: 2px; }

.gtile-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

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

.star {
  font-size: 1.1rem;
  color: var(--c-text-dim);
}

.star.filled { color: var(--c-gold); }
.star.half { color: var(--c-gold); position: relative; }

.rating-score {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-gold);
}

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

.gtile-bonus {
  background: rgba(40,169,9,0.12);
  border: 1px solid rgba(40,169,9,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gtile-bonus-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gtile-bonus-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-green);
}

.gtile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gtile-actions .btn { width: 100%; justify-content: center; }

.rbreak {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex: 1;
  min-width: 220px;
  box-shadow: var(--shadow);
}

.rbreak-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.rbreak-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rbreak-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  width: 30px;
  flex-shrink: 0;
}

.rbreak-bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--c-border);
  border-radius: 4px;
  overflow: hidden;
}

.rbreak-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.rbreak-count {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  width: 20px;
  text-align: right;
  flex-shrink: 0;
}

.ginfo {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex: 1.2;
  box-shadow: var(--shadow);
}

.ginfo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ginfo-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}

.ginfo-item:hover { background: rgba(255,255,255,0.04); }

.ginfo-key {
  font-size: 0.73rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ginfo-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
}

.ginfo-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 6px;
  margin-top: 14px;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}

.ginfo-more-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--c-text);
}

.pc-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex: 1;
  box-shadow: var(--shadow);
}

.pc-grid {
  display: flex;
  gap: 16px;
}

.pc-col { flex: 1; }

.pc-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border);
}

.pc-col-title.pros { color: var(--c-green); }
.pc-col-title.cons { color: var(--c-red); }

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

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

.pc-item-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

.pc-item-icon.pro {
  background: rgba(40,169,9,0.2);
  color: var(--c-green);
}

.pc-item-icon.con {
  background: rgba(229,5,57,0.2);
  color: var(--c-red);
}

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

.sec-pad { padding: 56px 0; }
.sec-pad-sm { padding: 40px 0; }

.sec-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.sec-sub {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}

.toc-root {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.toc-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--c-border);
  scrollbar-width: none;
}

.toc-tabs::-webkit-scrollbar { display: none; }

.toc-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.toc-tab:hover {
  color: var(--c-text);
}

.toc-tab.active {
  color: var(--c-red);
  border-bottom-color: var(--c-red);
}

.toc-tab svg { width: 16px; height: 16px; }

/* REVIEW FORM SECTION */
.rvf-banner {
  background: linear-gradient(135deg, rgba(229,5,57,0.15) 0%, rgba(40,169,9,0.1) 100%);
  border: 1px solid rgba(229,5,57,0.25);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.rvf-banner-text { flex: 1; }

.rvf-banner-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.rvf-banner-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.rvf-form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.rvf-form-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--c-text);
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

.form-input,
.form-textarea {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--c-text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(229,5,57,0.12);
}

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

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

.rating-params { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }

.rp-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rp-label {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  width: 160px;
  flex-shrink: 0;
}

.rp-stars {
  display: flex;
  gap: 4px;
}

.rp-star {
  font-size: 1.3rem;
  color: var(--c-text-dim);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.rp-star:hover,
.rp-star.active {
  color: var(--c-gold);
  transform: scale(1.1);
}

.form-success {
  display: none;
  background: rgba(40,169,9,0.12);
  border: 1px solid rgba(40,169,9,0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: var(--c-green);
  font-weight: 600;
  font-size: 1rem;
}

.form-success.show { display: block; }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rv-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rv-card:hover {
  border-color: rgba(229,5,57,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.rv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}

.rv-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.rv-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
}

.rv-author-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.rv-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.rv-flag {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.rv-date {
  font-size: 0.75rem;
  color: var(--c-text-dim);
}

.rv-rating-wrap { flex-shrink: 0; text-align: right; }

.rv-rating-score {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}

.rv-stars-sm {
  display: flex;
  gap: 1px;
  justify-content: flex-end;
  margin-top: 3px;
}

.rv-stars-sm .star { font-size: 0.75rem; }

.rv-rating-details-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--c-text-dim);
  font-size: 0.72rem;
  cursor: pointer;
  margin-top: 4px;
  justify-content: flex-end;
  width: 100%;
  transition: color var(--transition);
}

.rv-rating-details-btn:hover { color: var(--c-text-muted); }

.rv-rating-details {
  display: none;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
}

.rv-rating-details.open { display: block; }

.rv-rd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}

.rv-rd-row:last-child { margin-bottom: 0; }

.rv-rd-bar-wrap {
  width: 80px;
  height: 5px;
  background: var(--c-border);
  border-radius: 3px;
  overflow: hidden;
}

.rv-rd-bar {
  height: 100%;
  background: var(--c-gold);
  border-radius: 3px;
}

.rv-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
}

.rv-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--c-text-dim);
}

.rv-source a {
  color: var(--c-text-muted);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all var(--transition);
}

.rv-source a:hover {
  color: var(--c-text);
  text-decoration-color: var(--c-text-muted);
}

.rv-source-badge {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.7rem;
  color: var(--c-text-muted);
}

.rv-body {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.rv-body-inner { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.rv-body-inner.expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }

.rv-expand-btn {
  background: none;
  border: none;
  color: var(--c-red);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  padding: 0;
  transition: color var(--transition);
}

.rv-expand-btn:hover { color: var(--c-red-h); }

.rv-pros-cons {
  display: flex;
  gap: 12px;
}

.rv-pc-col { flex: 1; }

.rv-pc-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.rv-pc-title.pros { color: var(--c-green); }
.rv-pc-title.cons { color: var(--c-red); }

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

.rv-pc-item {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.4;
}

.rv-pc-dot-pro { color: var(--c-green); font-weight: 700; }
.rv-pc-dot-con { color: var(--c-red); font-weight: 700; }

.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.rv-votes {
  display: flex;
  gap: 8px;
}

.rv-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all var(--transition);
  cursor: pointer;
}

.rv-vote-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--c-text); }
.rv-vote-btn.liked { color: var(--c-green); border-color: rgba(40,169,9,0.4); background: rgba(40,169,9,0.1); }
.rv-vote-btn.disliked { color: var(--c-red); border-color: rgba(229,5,57,0.4); background: rgba(229,5,57,0.1); }

.rv-reply-btn {
  background: none;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  cursor: pointer;
}

.rv-reply-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--c-text); }

.rv-reply-form {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 14px;
}

.rv-reply-form.open { display: flex; }

.rv-reply-form textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  color: var(--c-text);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 10px;
  resize: vertical;
  min-height: 80px;
  outline: none;
}

.rv-reply-form textarea:focus { border-color: var(--c-red); }

.rv-reply-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cmp-table-wrap { overflow-x: auto; }

.cmp-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border-spacing: 0;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.cmp-table th {
  background: var(--c-surface2);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--c-border);
}

.cmp-table td {
  padding: 14px 16px;
  font-size: 0.87rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: rgba(255,255,255,0.03); }

.cmp-table .cmp-highlight td { background: rgba(229,5,57,0.05); }
.cmp-table .cmp-highlight .cmp-game { font-weight: 700; color: var(--c-text); }

.cmp-badge {
  display: inline-block;
  background: rgba(229,5,57,0.15);
  color: var(--c-red);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.cmp-rtp { color: var(--c-gold); font-weight: 600; }
.cmp-check { color: var(--c-green); }
.cmp-cross { color: var(--c-red); }

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

.adv-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.adv-card:hover {
  border-color: rgba(229,5,57,0.25);
  transform: translateY(-3px);
}

.adv-icon {
  width: 52px;
  height: 52px;
  background: rgba(229,5,57,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.adv-icon svg { width: 26px; height: 26px; color: var(--c-red); }

.adv-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

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

.content-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  line-height: 1.7;
}

.content-block h2 { font-size: 1.35rem; font-weight: 700; color: var(--c-text); margin: 28px 0 12px; line-height: 1.3; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 1.1rem; font-weight: 600; color: var(--c-text); margin: 22px 0 10px; }
.content-block h4 { font-size: 0.95rem; font-weight: 600; color: var(--c-text); margin: 16px 0 8px; }
.content-block p { font-size: 0.9rem; color: var(--c-text-muted); margin-bottom: 14px; }
.content-block p:last-child { margin-bottom: 0; }
.content-block ul, .content-block ol { padding-left: 22px; margin-bottom: 14px; }
.content-block ul li, .content-block ol li { font-size: 0.9rem; color: var(--c-text-muted); margin-bottom: 6px; line-height: 1.5; }
.content-block a { color: var(--c-red); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition); }
.content-block a:hover { text-decoration-color: var(--c-red); }
.content-block strong { color: var(--c-text); font-weight: 600; }
.content-block em { color: var(--c-text-muted); }
.content-block blockquote { border-left: 3px solid var(--c-red); padding: 10px 16px; background: rgba(229,5,57,0.06); border-radius: 0 8px 8px 0; margin: 16px 0; }
.content-block blockquote p { color: var(--c-text-muted); margin: 0; }
.content-block table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.content-block table th { background: var(--c-surface2); padding: 10px 14px; text-align: left; font-size: 0.82rem; color: var(--c-text-muted); font-weight: 600; border: 1px solid var(--c-border); }
.content-block table td { padding: 10px 14px; font-size: 0.85rem; color: var(--c-text-muted); border: 1px solid var(--c-border); }
.content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.content-block hr { border: none; border-top: 1px solid var(--c-border); margin: 22px 0; }
.content-block code { background: var(--c-surface2); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; color: var(--c-red); }
.content-block pre { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: 8px; padding: 16px; overflow-x: auto; margin: 14px 0; }
.content-block pre code { background: none; padding: 0; color: var(--c-text-muted); }

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

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-border);
  flex-shrink: 0;
}

.author-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 3px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.author-info { flex: 1; }

.author-badge {
  display: inline-block;
  background: rgba(229,5,57,0.12);
  color: var(--c-red);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

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

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

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

.author-social {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}

.author-social:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--c-text);
}

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

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

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

.faq-item:hover { border-color: rgba(229,5,57,0.2); }

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

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

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform var(--transition);
}

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

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

.faq-item.open .faq-answer { display: block; }


.ftr-root {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}

.ftr-top {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
}

.ftr-brand { flex-shrink: 0; }

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

.ftr-logo img { height: 32px; width: auto; }

.ftr-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text);
}

.ftr-logo-text span { color: var(--c-red); }

.ftr-tagline {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  max-width: 200px;
  line-height: 1.5;
}

.ftr-nav-groups {
  display: flex;
  gap: 48px;
  flex: 1;
}

.ftr-nav-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ftr-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.ftr-nav-group a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.ftr-nav-group a:hover { color: var(--c-text); }

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

.ftr-trust-label {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.ftr-trust-logo {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color var(--transition);
}

.ftr-trust-logo:hover { border-color: rgba(255,255,255,0.15); color: var(--c-text); }

.ftr-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ftr-legal {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  max-width: 680px;
}

.ftr-copy { font-size: 0.78rem; color: var(--c-text-dim); flex-shrink: 0; }


.wgt-root {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.wgt-text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.wgt-text strong { color: var(--c-green); }

.wgt-close {
  background: none;
  border: none;
  color: var(--c-text-dim);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0 0 6px;
  margin-left: -6px;
  transition: color var(--transition);
}

.wgt-close:hover { color: var(--c-text); }

.wgt-root.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }


.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}

.modal-close:hover { color: var(--c-text); background: rgba(255,255,255,0.08); }

.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 20px;
  padding-right: 40px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-info-item {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 12px 14px;
}

.modal-info-key {
  font-size: 0.72rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.modal-info-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
}


.sec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 8px 0;
}


.text-muted { color: var(--c-text-muted); }
.text-red { color: var(--c-red); }
.text-green { color: var(--c-green); }
.text-gold { color: var(--c-gold); }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.fw-700 { font-weight: 700; }
.fs-sm { font-size: 0.85rem; }

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

.anim-fade-up { animation: fadeInUp 0.45s ease both; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.wp-block-separator { display: none; }
.elementor-widget-wrap { display: contents; }

#wpadminbar { display: none !important; }
.wp-caption-text { display: none; }
.screen-reader-text { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-nav-groups { gap: 28px; }
  .hero-grid { flex-wrap: wrap; }
  .gtile { min-width: 0; max-width: 100%; flex: 1; }
  .modal-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .hdr-burger { display: flex; }
  .hdr-reviews-count { display: none; }

  .hero-root { min-height: 420px; }
  .hero-grid { flex-direction: column; }
  .gtile { min-width: 0; max-width: 100%; }
  .rbreak { min-width: 0; }
  .hero-bottom { flex-direction: column; }

  .rv-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }

  .form-row-2 { grid-template-columns: 1fr; }
  .rp-label { width: 140px; }

  .ftr-top { flex-direction: column; gap: 28px; }
  .ftr-nav-groups { flex-wrap: wrap; gap: 20px; }

  .wgt-root { left: 12px; right: 12px; transform: none; border-radius: 12px; flex-wrap: wrap; justify-content: center; }
  .wgt-root.hidden { transform: translateY(20px); }

  .pc-grid { flex-direction: column; }
  .rv-pros-cons { flex-direction: column; }

  .sec-pad { padding: 36px 0; }
  .content-block { padding: 20px; }

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

  .rvf-banner { flex-direction: column; gap: 12px; }
  .rvf-banner .btn { width: 100%; }

  .ginfo-grid { grid-template-columns: 1fr; }

  .hdr-logo img {
    height: 25px;
    width: auto;
  }
  .hdr-actions { display: none; }
}

@media (max-width: 480px) {
  .x7k2-wrap { padding: 0 12px; }
  .sec-title { font-size: 1.3rem; }
  .btn { font-size: 0.82rem; padding: 8px 14px; }
  .hdr-actions .btn { padding: 7px 12px; font-size: 0.8rem; }
  .gtile { padding: 16px; }
  .rvf-form-wrap { padding: 18px; }
  .modal-box { padding: 20px; }
}
