/* theme:4uv6 build:4623 */


:root {
  --v4uv6-bg: #ffffff;
  --v4uv6-accent: #1976d2;
  --v4uv6-accent-text: #ffffff;
  --v4uv6-secondary: #f0f4fa;
  --v4uv6-text: #0c1428;
  --v4uv6-muted: #5a6578;
  --v4uv6-login: #1a237e;
  --v4uv6-login-text: #ffffff;
  --v4uv6-link: #1565c0;
  
  --v4uv6-border: rgba(0, 0, 0, 0.10);
  --v4uv6-border-strong: rgba(0, 0, 0, 0.18);
  --v4uv6-card: rgba(0, 0, 0, 0.03);
  --v4uv6-card-hover: rgba(0, 0, 0, 0.06);
  --v4uv6-btn-secondary-bg: rgba(0, 0, 0, 0.05);
  --v4uv6-btn-secondary-bg-hover: rgba(0, 0, 0, 0.10);
  --v4uv6-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --v4uv6-rating-bg: rgba(0, 0, 0, 0.08);
  --v4uv6-footer-overlay: rgba(0, 0, 0, 0.04);
  --v4uv6-max: 1200px;
  --v4uv6-prose-max: 880px;
  --v4uv6-radius: 12px;
  --v4uv6-radius-sm: 8px;
  --v4uv6-header-h: 64px;
  --v4uv6-font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --v4uv6-font-base: 17px;
  --v4uv6-font-h1: 50px;
  --v4uv6-font-h2: 30px;
  --v4uv6-font-h3: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--v4uv6-font-family);
  background: var(--v4uv6-bg); color: var(--v4uv6-text);
  font-size: var(--v4uv6-font-base); line-height: 1.65;
  overflow-x: hidden; min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--v4uv6-accent); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.85; }
button { font-family: inherit; }
.container { max-width: var(--v4uv6-max); margin: 0 auto; padding: 0 20px; }

/* ====================== HEADER ====================== */

.header-bottom-bar-4uv6 { display: none; }

.site-header-4uv6 {
  position: sticky; top: 0; z-index: 100;
  
  background: var(--v4uv6-bg);
  border-bottom: 1px solid var(--v4uv6-border);
  min-height: var(--v4uv6-header-h);
  
  box-shadow: 0 1px 0 var(--v4uv6-border), 0 4px 16px rgba(0,0,0,0.08);
}
.header-inner-4uv6 {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px 20px;
  max-width: var(--v4uv6-max); margin: 0 auto;
  min-height: var(--v4uv6-header-h);
}

/* ====================== LOGO ====================== */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 800; color: var(--v4uv6-text);
  letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
  max-width: 220px;
}
.logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--v4uv6-accent); flex-shrink: 0;
}

.logo-img-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  max-width: 180px;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-img-wrap img,
.logo-img-wrap svg {
  display: block;
  height: 100%;       
  width: auto;        
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo > img.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* ====================== MAIN NAV (desktop) ====================== */
.main-nav-4uv6 { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; list-style: none; }
.main-nav-4uv6 > li { position: relative; }
.main-nav-4uv6 a,
.main-nav-4uv6 .nav-label {
  color: var(--v4uv6-text); font-weight: 500; font-size: 15px;
  padding: 10px 16px; border-radius: 8px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  transition: background 0.15s;
  background: none; border: none;
  text-decoration: none;
}
.main-nav-4uv6 a:hover,
.main-nav-4uv6 .nav-label:hover { background: var(--v4uv6-card); opacity: 1; }
.main-nav-4uv6 a.active,
.main-nav-4uv6 .nav-label.active { color: var(--v4uv6-accent); background: var(--v4uv6-card); }
.nav-chev {
  display: inline-block; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-left: 3px; margin-top: -3px;
  transition: transform 0.2s;
}
.has-dropdown:hover .nav-chev { transform: rotate(225deg); margin-top: 2px; }

/* ====================== DROPDOWN ====================== */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--v4uv6-secondary);
  border: 1px solid var(--v4uv6-border);
  border-radius: 10px; padding: 6px;
  min-width: 230px; margin-top: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  list-style: none; z-index: 101;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: 11px 14px; font-size: 14px;
  border-radius: 7px;
}
.nav-dropdown a:hover { background: var(--v4uv6-card-hover); opacity: 1; }
.nav-dropdown a.active { color: var(--v4uv6-accent); }


.header-actions-4uv6 {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.btn-login-4uv6 {
  background: var(--v4uv6-login); color: var(--v4uv6-login-text);
  padding: 12px 22px; border-radius: 9px;
  font-weight: 700; font-size: 14px;
  white-space: nowrap; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: transform 0.15s, filter 0.15s;
}
.btn-login-4uv6:hover { transform: translateY(-1px); filter: brightness(1.1); opacity: 1; }
.header-cta-4uv6 {
  background: var(--v4uv6-accent); color: var(--v4uv6-accent-text);
  padding: 12px 24px; border-radius: 9px;
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
  text-decoration: none; display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.header-cta-4uv6:hover {
  transform: translateY(-1px); opacity: 1;
  filter: brightness(1.08);
}

/* ====================== BURGER ====================== */
.burger-4uv6 {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 0; position: relative;
  flex-shrink: 0;
}
.burger-4uv6 span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--v4uv6-text); border-radius: 2px; transition: all 0.25s;
}
.burger-4uv6 span:nth-child(1) { top: 14px; }
.burger-4uv6 span:nth-child(2) { top: 19px; }
.burger-4uv6 span:nth-child(3) { top: 24px; }

/* ====================== MOBILE OVERLAY ====================== */
.nav-overlay-4uv6 {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 78%; max-width: 340px; min-width: 260px;
  background: var(--v4uv6-bg);
  border-left: 1px solid var(--v4uv6-border);
  box-shadow: -12px 0 40px rgba(0,0,0,0.5);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
}
.nav-overlay-4uv6.is-open-4uv6 { transform: translateX(0); visibility: visible; }
.nav-overlay-backdrop-4uv6 {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 199; opacity: 0; visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}
.nav-overlay-backdrop-4uv6.is-open-4uv6 { opacity: 1; visibility: visible; }

.nav-overlay-head-4uv6 {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--v4uv6-border);
  min-height: 60px;
}
.nav-overlay-head-4uv6 .logo { font-size: 17px; max-width: 200px; }
.nav-close-4uv6 {
  width: 38px; height: 38px; background: none; border: none;
  color: var(--v4uv6-text); cursor: pointer; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.15s;
  flex-shrink: 0;
}
.nav-close-4uv6:hover { background: var(--v4uv6-card); }

/* ====================== MOBILE NAV LIST ====================== */
.nav-overlay-list-4uv6 { list-style: none; padding: 10px; }
.nav-overlay-list-4uv6 > li { margin-bottom: 2px; }


.nav-overlay-list-4uv6 a {
  display: block;
  color: var(--v4uv6-text); font-weight: 500; font-size: 16px;
  padding: 13px 14px; border-radius: 8px; cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  background: none; border: none; width: 100%;
}
.nav-overlay-list-4uv6 a:hover { background: var(--v4uv6-card); opacity: 1; }
.nav-overlay-list-4uv6 a.active { color: var(--v4uv6-accent); background: var(--v4uv6-card); }


.has-dropdown-m > .nav-parent-row {
  display: flex; align-items: stretch; gap: 0;
}
.has-dropdown-m > .nav-parent-row > a {
  flex: 1;
  padding-right: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.nav-parent-toggle {
  background: none; border: none; cursor: pointer;
  padding: 0 14px; color: var(--v4uv6-text);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition: background 0.15s;
}
.nav-parent-toggle:hover { background: var(--v4uv6-card); }

.nav-submenu {
  list-style: none; padding: 0 0 4px 14px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease;
}
.has-dropdown-m.is-open-4uv6 .nav-submenu { max-height: 400px; }
.nav-submenu a {
  font-size: 14px; padding: 11px 14px; color: var(--v4uv6-muted);
  text-decoration: underline; text-underline-offset: 4px;
}
.nav-submenu a:hover { color: var(--v4uv6-text); }
.nav-submenu a.active { color: var(--v4uv6-accent); }

.nav-chev-m {
  display: inline-block; width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.2s;
}
.has-dropdown-m.is-open-4uv6 .nav-chev-m { transform: rotate(225deg); }

/* ====================== BREADCRUMBS ====================== */
nav.breadcrumbs-4uv6 {
  padding-top: 14px; padding-bottom: 14px;
  font-size: 13px; color: var(--v4uv6-muted);
}

@media (min-width: 961px) {
  nav.breadcrumbs-4uv6 { border-bottom: 1px solid var(--v4uv6-border); }
}
.breadcrumbs-4uv6 ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs-4uv6 li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs-4uv6 li:not(:last-child)::after { content: '/'; color: var(--v4uv6-muted); opacity: 0.5; }
.breadcrumbs-4uv6 a { color: var(--v4uv6-muted); }
.breadcrumbs-4uv6 a:hover { color: var(--v4uv6-accent); }
.breadcrumbs-4uv6 li:last-child { color: var(--v4uv6-text); }

/* ====================== HERO ====================== */
.hero-4uv6 { padding: 52px 0 40px; }
.hero-grid-4uv6 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: center; }
.hero-badge-4uv6 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--v4uv6-card); border: 1px solid var(--v4uv6-border);
  padding: 6px 14px; border-radius: 99px;
  font-size: 13px; color: var(--v4uv6-muted); margin-bottom: 18px;
}
.hero-badge-4uv6::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--v4uv6-accent); }

.hero-4uv6 h1 {
  font-size: var(--v4uv6-font-h1);
  line-height: 1.12; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero-4uv6 h1 { font-size: clamp(26px, 7vw, 36px); }
}

.hero-subtitle-4uv6 {
  font-size: clamp(15px, 1.7vw, 18px); color: var(--v4uv6-muted);
  margin-bottom: 26px; max-width: 560px;
}
.hero-ctas-4uv6 { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-image-mobile-4uv6 { display: none; }


.btn-primary-4uv6 {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--v4uv6-accent); color: var(--v4uv6-accent-text);
  padding: 14px 30px; border-radius: 10px;
  font-weight: 700; font-size: 15.5px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, filter 0.15s;
}
.btn-primary-4uv6:hover { transform: translateY(-2px); opacity: 1; filter: brightness(1.08); }

.btn-secondary-4uv6 {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--v4uv6-btn-secondary-bg);
  color: var(--v4uv6-text);
  padding: 14px 30px; border-radius: 10px;
  font-weight: 600; font-size: 15.5px;
  border: 1px solid var(--v4uv6-border-strong);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.btn-secondary-4uv6:hover {
  background: var(--v4uv6-btn-secondary-bg-hover);
  border-color: rgba(255,255,255,0.2);
  opacity: 1;
}

.cta-inline-wrap-4uv6 { text-align: center; margin: 28px 0; }
.btn-inline-4uv6 { padding: 14px 32px; font-size: 16px; }

/* ====================== HERO SCORE ====================== */
.hero-score-4uv6 {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--v4uv6-card); border: 1px solid var(--v4uv6-border);
  padding: 10px 16px; border-radius: 10px;
}
.hero-score-val-4uv6 { font-size: 28px; font-weight: 800; color: var(--v4uv6-accent); line-height: 1; }
.hero-score-label-4uv6 { font-size: 11px; color: var(--v4uv6-muted); line-height: 1.3; }
.hero-score-label-4uv6 strong { color: var(--v4uv6-text); font-size: 12px; display: block; }

.hero-image-4uv6 {
  position: relative; width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--v4uv6-radius); overflow: hidden;
  background: linear-gradient(135deg, var(--v4uv6-secondary), var(--v4uv6-bg));
  border: 1px solid var(--v4uv6-border); box-shadow: var(--v4uv6-shadow);
}
.hero-image-4uv6 img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* ====================== PAGE TITLE ====================== */
section.page-title { padding-top: 36px; padding-bottom: 16px; }
.page-title h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.18; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 10px;
  max-width: var(--v4uv6-prose-max); margin-left: auto; margin-right: auto;
}
.page-title .hero-subtitle-4uv6 {
  max-width: var(--v4uv6-prose-max); margin: 0 auto;
}

/* ====================== SECTIONS ====================== */
.section { padding: 44px 0; }
.section-head { margin-bottom: 24px; }
.section-head h2 {
  font-size: var(--v4uv6-font-h2); font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.section-head p { color: var(--v4uv6-muted); font-size: 15px; }

/* ====================== FACTS ====================== */
.facts-grid-4uv6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.fact-card-4uv6 {
  background: var(--v4uv6-card); border: 1px solid var(--v4uv6-border);
  padding: 15px 18px; border-radius: var(--v4uv6-radius-sm);
  transition: background 0.15s;
}
.fact-card-4uv6:hover { background: var(--v4uv6-card-hover); }
.fact-label-4uv6 { font-size: 11px; color: var(--v4uv6-muted); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 6px; }
.fact-value-4uv6 { font-size: 16px; font-weight: 700; color: var(--v4uv6-text); line-height: 1.3; }

/* ====================== RATINGS ====================== */
.ratings-wrap {
  background: var(--v4uv6-card); border: 1px solid var(--v4uv6-border);
  padding: 26px; border-radius: var(--v4uv6-radius);
}
.ratings-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 22px;
}
.ratings-score { display: flex; align-items: baseline; gap: 10px; }
.ratings-score-big { font-size: 48px; font-weight: 800; color: var(--v4uv6-accent); line-height: 1; }
.ratings-score-label { color: var(--v4uv6-muted); font-size: 13px; }

.rating-row { margin-bottom: 14px; }
.rating-row:last-child { margin-bottom: 0; }
.rating-row-head {
  display: flex; justify-content: space-between; gap: 12px;
  margin-bottom: 6px; font-size: 13px;
}
.rating-row-head strong { color: var(--v4uv6-accent); font-weight: 700; }
.rating-bar-4uv6 { width: 100%; height: 5px; background: var(--v4uv6-rating-bg); border-radius: 99px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--v4uv6-accent); border-radius: 99px; transition: width 0.8s ease; }

.ratings-toggle {
  display: none;
  margin-top: 16px; width: 100%;
  padding: 11px; background: transparent; color: var(--v4uv6-text);
  border: 1px solid var(--v4uv6-border-strong); border-radius: 8px;
  cursor: pointer; font-size: 14px; font-weight: 600;
}
.ratings-toggle:hover { background: var(--v4uv6-card-hover); }
.ratings-toggle-arrow { display: inline-block; margin-left: 6px; transition: transform 0.25s; }
.ratings-wrap.is-expanded-4uv6 .ratings-toggle-arrow { transform: rotate(180deg); }

/* ====================== CONTENT PROSE ====================== */
.section-prose-4uv6 { padding: 36px 0 44px; }
.content-prose-4uv6 {
  max-width: var(--v4uv6-prose-max);
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-word;
}
.content-prose-4uv6 p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--v4uv6-text);
}
.content-prose-4uv6 h2 {
  font-size: var(--v4uv6-font-h2);
  font-weight: 800;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.content-prose-4uv6 h2:first-child { margin-top: 0; }
.content-prose-4uv6 h3 {
  font-size: var(--v4uv6-font-h3);
  font-weight: 700;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.content-prose-4uv6 ul, .content-prose-4uv6 ol {
  margin: 0 0 20px 4px;
  padding-left: 22px;
}
.content-prose-4uv6 li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 17px;
  padding-left: 4px;
}
.content-prose-4uv6 ul li::marker { color: var(--v4uv6-accent); }
.content-prose-4uv6 a {
  color: var(--v4uv6-link);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.content-prose-4uv6 a:hover { opacity: 0.8; }

.content-prose-4uv6 img,
.content-prose-4uv6 .content-img img {
  display: block; max-width: 100%; height: auto;
  border-radius: var(--v4uv6-radius-sm);
}
.content-prose-4uv6 figure,
.content-prose-4uv6 .content-img {
  margin: 24px auto; max-width: 100%; text-align: center;
}
.content-prose-4uv6 figcaption {
  font-size: 13px; color: var(--v4uv6-muted);
  margin-top: 8px; text-align: center;
  line-height: 1.5;
}
.content-prose-4uv6 iframe,
.content-prose-4uv6 video,
.content-prose-4uv6 embed {
  max-width: 100%; display: block;
  margin: 24px auto; border-radius: var(--v4uv6-radius-sm);
}
.content-prose-4uv6 pre,
.content-prose-4uv6 code {
  max-width: 100%; overflow-x: auto;
  white-space: pre-wrap; word-wrap: break-word;
}


.content-prose-4uv6 table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 15px;
  border: 1px solid var(--v4uv6-border-strong);
  border-radius: var(--v4uv6-radius-sm); overflow: hidden;
}
.content-prose-4uv6 th, .content-prose-4uv6 td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--v4uv6-border);
  vertical-align: top; line-height: 1.55;
}
.content-prose-4uv6 th {
  background: var(--v4uv6-card-hover); font-weight: 700; color: var(--v4uv6-text);
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em;
  border-bottom: 1px solid var(--v4uv6-border-strong);
}
.content-prose-4uv6 td { color: var(--v4uv6-text); }
.content-prose-4uv6 th:not(:last-child),
.content-prose-4uv6 td:not(:last-child) {
  border-right: 1px solid var(--v4uv6-border);
}
.content-prose-4uv6 tbody tr:nth-child(odd) { background: rgba(255,255,255,0.015); }
.content-prose-4uv6 tbody tr:hover { background: var(--v4uv6-card-hover); }
.content-prose-4uv6 tbody tr:last-child td { border-bottom: none; }

.content-prose-4uv6 a.btn-primary-4uv6,
.content-prose-4uv6 a.btn-secondary-4uv6,
.content-prose-4uv6 a.btn-inline-4uv6 {
  color: var(--v4uv6-accent-text); font-weight: 700; text-decoration: none;
}
.content-prose-4uv6 a.btn-secondary-4uv6,
.content-prose-4uv6 a.btn-secondary-4uv6.btn-inline-4uv6 {
  color: var(--v4uv6-text);
}

/* ====================== FAQ ====================== */
.section-faq { padding: 44px 0; }
.section-faq .section-head,
.section-faq .faq-list-4uv6 {
  max-width: var(--v4uv6-prose-max);
  margin-left: auto; margin-right: auto;
}
.faq-list-4uv6 { display: flex; flex-direction: column; gap: 8px; }
.faq-item-4uv6 {
  background: var(--v4uv6-card); border: 1px solid var(--v4uv6-border);
  border-radius: var(--v4uv6-radius-sm); overflow: hidden;
  transition: background 0.15s;
}
.faq-item-4uv6:hover { background: var(--v4uv6-card-hover); }
.faq-question-4uv6 {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 20px; cursor: pointer;
  font-weight: 600; font-size: 15px; user-select: none;
  background: none; border: none; color: var(--v4uv6-text);
  width: 100%; text-align: left;
}
.faq-question-4uv6::after {
  content: '+'; font-size: 22px; color: var(--v4uv6-accent);
  font-weight: 300; transition: transform 0.25s; flex-shrink: 0;
}
.faq-item-4uv6.is-open-4uv6 .faq-question-4uv6::after { transform: rotate(45deg); }
.faq-answer-4uv6 {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.faq-item-4uv6.is-open-4uv6 .faq-answer-4uv6 { max-height: 600px; padding: 0 20px 18px; }
.faq-answer-4uv6 p { color: var(--v4uv6-muted); line-height: 1.65; font-size: 14.5px; }

/* ====================== CTA BLOCK ====================== */
.cta-block-4uv6 {
  background: linear-gradient(135deg, var(--v4uv6-secondary), var(--v4uv6-card-hover));
  border: 1px solid var(--v4uv6-border);
  border-radius: var(--v4uv6-radius); padding: 44px 32px;
  text-align: center; margin: 32px auto;
  max-width: var(--v4uv6-prose-max);
}
.cta-block-4uv6 h2 { font-size: clamp(22px, 2.8vw, 28px); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.cta-block-4uv6 p { color: var(--v4uv6-muted); margin-bottom: 22px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 15px; }

/* ====================== FOOTER ====================== */
.site-footer-4uv6 {
  border-top: 1px solid var(--v4uv6-border);
  padding: 44px 0 22px; margin-top: 50px;
  background: var(--v4uv6-footer-overlay);
}

.footer-grid-4uv6 {
  display: grid;
  gap: 36px; margin-bottom: 32px;
}
.footer-grid-4uv6.cols-1 { grid-template-columns: 1fr; }           
.footer-grid-4uv6.cols-2 { grid-template-columns: 1.5fr 1fr; }     
.footer-grid-4uv6.cols-3 { grid-template-columns: 1.5fr 1fr 1fr; } 

.footer-about-4uv6 p { color: var(--v4uv6-muted); font-size: 14px; line-height: 1.65; max-width: 380px; margin-top: 10px; }
.footer-logo-4uv6 { display: inline-flex !important;  }
.footer-col-4uv6 h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--v4uv6-muted); font-weight: 600; margin-bottom: 12px; }
.footer-col-4uv6 ul { list-style: none; }
.footer-col-4uv6 li { margin-bottom: 8px; }
.footer-col-4uv6 a { color: var(--v4uv6-text); font-size: 14px; }
.footer-col-4uv6 a:hover { color: var(--v4uv6-accent); opacity: 1; }

.footer-bottom-4uv6 {
  padding-top: 22px; border-top: 1px solid var(--v4uv6-border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--v4uv6-muted);
}
.footer-disclaimer-4uv6 { display: flex; align-items: center; gap: 10px; }
.age-badge-4uv6 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--v4uv6-accent); color: var(--v4uv6-accent-text);
  font-size: 10px; font-weight: 800;
}

/* ====================== 404 ====================== */
.page-404 {
  min-height: calc(100vh - var(--v4uv6-header-h) - 200px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px;
}
.page-404-inner {
  background: var(--v4uv6-card); border: 1px solid var(--v4uv6-border);
  border-radius: var(--v4uv6-radius); padding: 48px 36px;
  max-width: 520px; width: 100%;
}
.page-404 .err-code {
  font-size: clamp(56px, 12vw, 112px); font-weight: 800;
  color: var(--v4uv6-accent); line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.page-404 h1 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin-bottom: 12px; }
.page-404 p { color: var(--v4uv6-muted); font-size: 16px; margin-bottom: 24px; }



@media (max-width: 960px) {
  

  :root { --v4uv6-header-h: auto; }
  .site-header-4uv6 { min-height: 0; }

  
  .header-inner-4uv6 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 6px 14px;
    gap: 10px;
    min-height: 48px;
  }

  .main-nav-4uv6 { display: none; }

  
  .header-inner-4uv6 .header-actions-4uv6 { display: none; }

  
  .logo {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 18px;
    max-width: calc(100% - 60px);
    gap: 10px;
  }
  .logo-img-wrap { height: 34px; max-width: 150px; }
  .logo > img.logo-img { height: 34px; max-width: 150px; }

  
  .burger-4uv6 {
    display: block;
    flex: 0 0 42px;
    width: 42px; height: 42px;
    border: 1px solid var(--v4uv6-border-strong);
    border-radius: 10px;
  }
  .burger-4uv6 span {
    left: 11px; right: 11px; height: 2px;
  }
  .burger-4uv6 span:nth-child(1) { top: 14px; }
  .burger-4uv6 span:nth-child(2) { top: 20px; }
  .burger-4uv6 span:nth-child(3) { top: 26px; }

  
  .header-bottom-bar-4uv6 {
    display: grid;
    grid-template-columns: minmax(30%, 1fr) minmax(30%, 1fr);
    gap: 8px;
    padding: 8px 14px 12px;
    background: inherit;
  }
  .header-bottom-bar-4uv6 .btn-login-4uv6,
  .header-bottom-bar-4uv6 .header-cta-4uv6 {
    width: 100%;
    text-align: center;
    padding: 14px 10px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    white-space: normal;
    line-height: 1.25;
    min-height: 48px;
    max-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .header-bottom-bar-4uv6 .btn-login-4uv6.btn-compact-4uv6,
  .header-bottom-bar-4uv6 .header-cta-4uv6.btn-compact-4uv6 {
    font-size: 14px;
    line-height: 1.2;
    padding: 10px 8px;
  }
  .header-bottom-bar-4uv6 .btn-login-4uv6.btn-xcompact-4uv6,
  .header-bottom-bar-4uv6 .header-cta-4uv6.btn-xcompact-4uv6 {
    font-size: 12.5px;
    line-height: 1.15;
    padding: 8px 6px;
  }

  /* ===== HERO MOBILE ===== */
  .hero-4uv6 { padding: 28px 0 14px; }
  .hero-grid-4uv6 { grid-template-columns: 1fr; gap: 12px; }
  .hero-image-4uv6 { display: none; }
  .hero-image-mobile-4uv6 { display: block; margin: 8px 0 12px; }
  .hero-image-mobile-4uv6 .hero-image-4uv6 {
    display: block;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    max-height: 180px;
  }
  .hero-4uv6 h1 { font-size: clamp(22px, 6vw, 28px); margin-bottom: 8px; }
  .hero-subtitle-4uv6 { margin-bottom: 12px; font-size: 14px; }
  .hero-badge-4uv6 { margin-bottom: 12px; padding: 4px 10px; font-size: 12px; }
  .hero-ctas-4uv6 {
    flex-direction: row; gap: 8px; margin-bottom: 12px;
  }
  .hero-ctas-4uv6 .btn-primary-4uv6, .hero-ctas-4uv6 .btn-secondary-4uv6 {
    flex: 1;
    padding: 12px 14px; font-size: 14px;
  }
  .hero-score-4uv6 { padding: 8px 12px; }
  .hero-score-val-4uv6 { font-size: 22px; }
  .hero-score-label-4uv6 { font-size: 10px; }
  .hero-score-label-4uv6 strong { font-size: 11px; }

  
  nav.breadcrumbs-4uv6 { padding-top: 14px; padding-bottom: 18px; border-bottom: none; }
  
  section.page-title { padding-top: 6px; padding-bottom: 8px; }
  .page-title h1 { margin-top: 6px; margin-bottom: 0; }
  
  .section-prose-4uv6 { padding-top: 14px; }

  .facts-grid-4uv6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fact-card-4uv6 { padding: 12px 14px; }

  
  .footer-grid-4uv6,
  .footer-grid-4uv6.cols-1,
  .footer-grid-4uv6.cols-2,
  .footer-grid-4uv6.cols-3 {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }
  .footer-about-4uv6 p { max-width: none; }
  .ratings-wrap { padding: 18px; }
  .section { padding: 32px 0; }
  .cta-block-4uv6 { padding: 28px 18px; }

  .content-prose-4uv6 { font-size: 16px; line-height: 1.75; }
  .content-prose-4uv6 p, .content-prose-4uv6 li { font-size: 16px; }
  .content-prose-4uv6 h2 { margin: 32px 0 14px; }
  .content-prose-4uv6 h3 { margin: 24px 0 10px; }

  .content-prose-4uv6 table {
    display: block; max-width: 100%; overflow-x: auto;
    -webkit-overflow-scrolling: touch; white-space: nowrap; font-size: 14px;
  }
  .content-prose-4uv6 th, .content-prose-4uv6 td { padding: 10px 12px; }

  .ratings-toggle { display: block; }
  .ratings-wrap .rating-row { display: none; }
  .ratings-wrap.is-expanded-4uv6 .rating-row { display: block; }
}



@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .header-inner-4uv6 { padding: 9px 11px 11px; gap: 8px; }
  .logo { font-size: 16px; }
  .logo-img-wrap { height: 36px; max-width: 140px; }
  .logo > img.logo-img { height: 36px; max-width: 140px; }
  .logo-dot { width: 7px; height: 7px; }
  
  .burger-4uv6 { width: 44px; height: 44px; }
  .burger-4uv6 span { left: 11px; right: 11px; }
  .burger-4uv6 span:nth-child(1) { top: 15px; }
  .burger-4uv6 span:nth-child(2) { top: 22px; }
  .burger-4uv6 span:nth-child(3) { top: 29px; }
  
  .btn-login-4uv6, .header-cta-4uv6 {
    padding: 13px 10px;
    font-size: 15px;
    min-height: 46px;
  }

  .facts-grid-4uv6 { grid-template-columns: 1fr; }
  .ratings-score-big { font-size: 38px; }
  .page-title h1 { font-size: clamp(20px, 6vw, 28px); }
  .section-head h2 { font-size: 20px; }
  .ratings-wrap { padding: 14px; }
  .cta-block-4uv6 { padding: 22px 14px; }
  .faq-question-4uv6 { padding: 14px 16px; font-size: 14px; }
  .faq-item-4uv6.is-open-4uv6 .faq-answer-4uv6 { padding: 0 16px 14px; }
  .page-404-inner { padding: 32px 20px; }

  .content-prose-4uv6 { font-size: 15.5px; line-height: 1.72; }
  .content-prose-4uv6 p, .content-prose-4uv6 li { font-size: 15.5px; }
  .content-prose-4uv6 h2 { font-size: 20px; margin-top: 28px; }
  .content-prose-4uv6 h3 { font-size: 17px; margin-top: 20px; }

  .hero-image-mobile-4uv6 .hero-image-4uv6 { max-height: 150px; }
  .hero-ctas-4uv6 { flex-direction: column; }
  .hero-ctas-4uv6 .btn-primary-4uv6, .hero-ctas-4uv6 .btn-secondary-4uv6 { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── LANG SWITCHER ─── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text, #fff);
  background: transparent;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
}
.lang-current:hover {
  opacity: 0.7;
}
.lang-current .lang-flag {
  font-size: 16px;
  line-height: 1;
}
.lang-current .lang-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 70px;
  background: var(--c-bg, #0b0f1e);
  border: 1px solid var(--v4uv6-border-color, rgba(255,255,255,0.15));
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  overflow: hidden;
}
.lang-switcher.open .lang-dropdown {
  display: block;
}
.lang-dropdown a {
  display: block;
  padding: 8px 16px;
  color: var(--c-text, #fff);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.15s;
}
.lang-dropdown a:hover {
  background: rgba(255,255,255,0.06);
}
.lang-dropdown a.active {
  color: var(--c-accent, #ff7a33);
}
.lang-dropdown .lang-flag {
  font-size: 16px;
}


@media (max-width: 960px) {
  .header-actions-4uv6 .lang-switcher {
    margin-right: 0;
  }
}


.mobile-lang-switch-4uv6 {
  display: none;
}
@media (max-width: 960px) {
  .mobile-lang-switch-4uv6 {
    display: flex;
    align-items: center;
  }
  .mobile-lang-switch-4uv6 .lang-switcher {
    margin-right: 4px;
  }
  .mobile-lang-switch-4uv6 .lang-current {
    padding: 4px 8px;
    font-size: 12px;
  }
  .mobile-lang-switch-4uv6 .lang-dropdown {
    right: auto;
    left: 0;
  }
}


/* =====================================================================
   YANDEX v2.0: SLOTS GRID
   ===================================================================== */
.slots-section-4uv6 { margin: 2.5rem 0; }
.slots-title-4uv6 {
  font-size: var(--v4uv6-font-h2);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--v4uv6-text);
}
.slots-grid-4uv6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.slot-card-4uv6 {
  background: var(--v4uv6-card);
  border: 1px solid var(--v4uv6-border);
  border-radius: var(--v4uv6-radius-sm);
  overflow: hidden;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.slot-card-4uv6:hover {
  transform: translateY(-3px);
  box-shadow: var(--v4uv6-shadow);
}
.slot-card-4uv6 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.slot-placeholder-4uv6 {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v4uv6-secondary);
  color: var(--v4uv6-muted);
  font-size: 1.6rem;
  font-weight: 700;
}
.slot-name-4uv6 {
  display: block;
  padding: 8px 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--v4uv6-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .slots-grid-4uv6 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .slot-name-4uv6 { font-size: 0.72rem; padding: 6px 4px; }
}

/* =====================================================================
   YANDEX v2.0: BONUSES BLOCK
   ===================================================================== */
.bonuses-section-4uv6 { margin: 2.5rem 0; }
.bonuses-list-4uv6 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-card-4uv6 {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--v4uv6-card);
  border: 1px solid var(--v4uv6-border);
  border-radius: var(--v4uv6-radius);
  padding: 16px 20px;
  transition: box-shadow 0.18s;
}
.bonus-card-4uv6:hover { box-shadow: var(--v4uv6-shadow); }
.bonus-card-logo-4uv6 {
  min-width: 80px;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--v4uv6-accent);
  padding: 8px;
  background: var(--v4uv6-secondary);
  border-radius: var(--v4uv6-radius-sm);
}
.bonus-card-info-4uv6 { flex: 1; }
.bonus-card-name-4uv6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--v4uv6-text);
  margin-bottom: 4px;
}
.bonus-card-desc-4uv6 {
  font-size: 0.88rem;
  color: var(--v4uv6-muted);
  line-height: 1.4;
}
.bonus-card-btn-4uv6 {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--v4uv6-accent);
  color: var(--v4uv6-accent-text);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.bonus-card-btn-4uv6:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .bonus-card-4uv6 { flex-wrap: wrap; gap: 10px; padding: 12px 14px; }
  .bonus-card-logo-4uv6 { min-width: 60px; font-size: 0.78rem; }
  .bonus-card-btn-4uv6 { width: 100%; justify-content: center; }
}

/* =====================================================================
   YANDEX v2.0: AUTHOR CARD
   ===================================================================== */
.author-section-4uv6 {
  background: var(--v4uv6-secondary);
  padding: 2rem 0;
}
.author-card-4uv6 {
  max-width: var(--v4uv6-prose-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}
.author-photo-4uv6 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--v4uv6-border);
}
.author-photo-placeholder-4uv6 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v4uv6-card);
  border: 3px solid var(--v4uv6-border);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--v4uv6-muted);
}
.author-info-4uv6 { flex: 1; }
.author-name-4uv6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--v4uv6-text);
}
.author-role-4uv6 {
  font-size: 0.85rem;
  color: var(--v4uv6-accent);
  margin-bottom: 6px;
}
.author-desc-4uv6 {
  font-size: 0.88rem;
  color: var(--v4uv6-muted);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .author-card-4uv6 { flex-direction: column; text-align: center; gap: 12px; }
}
