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

:root {
  --c-primary: #0a1628;
  --c-primary-light: #0f2040;
  --c-gold: #d4a017;
  --c-gold-light: #f0bc2e;
  --c-green: #1a7a3c;
  --c-green-light: #22a050;
  --c-red: #c0392b;
  --c-bg: #060d1a;
  --c-bg2: #0d1e36;
  --c-bg3: #112040;
  --c-text: #e8eaf0;
  --c-text-muted: #8a9bb8;
  --c-border: #1e3050;
  --c-card: #0e1f38;
  --c-card2: #122540;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 20px rgba(212, 160, 23, 0.2);
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold-light);
}
ul,
ol {
  list-style: none;
}

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

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

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  line-height: 1.25;
  color: var(--c-text);
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active {
  transform: scale(0.97);
}
.btn--gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  color: #0a1628;
  box-shadow: 0 3px 14px rgba(212, 160, 23, 0.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  box-shadow: 0 5px 20px rgba(212, 160, 23, 0.5);
  transform: translateY(-1px);
  color: #0a1628;
}
.btn--green {
  background: linear-gradient(135deg, var(--c-green), var(--c-green-light));
  color: #fff;
  box-shadow: 0 3px 14px rgba(26, 122, 60, 0.35);
}
.btn--green:hover {
  background: linear-gradient(135deg, var(--c-green-light), var(--c-green));
  box-shadow: 0 5px 20px rgba(26, 122, 60, 0.5);
  transform: translateY(-1px);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: #0a1628;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ---- HEADER ---- */
.xh7f2-header {
  background: var(--c-primary);
  border-bottom: 2px solid var(--c-gold);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.xh7f2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.xh7f2-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.xh7f2-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.xh7f2-logo__text {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 1px;
}
.xh7f2-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.xh7f2-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.xh7f2-nav__link:hover {
  color: var(--c-gold);
  background: rgba(212, 160, 23, 0.08);
}
.xh7f2-nav__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.xh7f2-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.xh7f2-review-count {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--c-gold);
  font-weight: 600;
  white-space: nowrap;
}
.xh7f2-review-count svg {
  width: 14px;
  height: 14px;
}
.xh7f2-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: background var(--transition);
}
.xh7f2-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.xh7f2-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.xh7f2-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.xh7f2-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.xh7f2-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--c-primary-light);
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
}
.xh7f2-mobile-menu.active {
  display: flex;
}
.xh7f2-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--c-text);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.xh7f2-mobile-menu__link:hover {
  background: rgba(212, 160, 23, 0.08);
  color: var(--c-gold);
}
.xh7f2-mobile-menu__link svg {
  width: 18px;
  height: 18px;
}
.xh7f2-mobile-menu__btns {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
}

/* ---- HERO ---- */
.qp4k9-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.qp4k9-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/wban.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.qp4k9-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 13, 26, 0.92) 40%,
    rgba(6, 13, 26, 0.5) 100%
  );
}
.qp4k9-hero__inner {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.qp4k9-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.qp4k9-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.15;
}
.qp4k9-hero__title span {
  color: var(--c-gold);
}
.qp4k9-hero__desc {
  font-size: 1.05rem;
  color: rgba(232, 234, 240, 0.85);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.qp4k9-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.qp4k9-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  padding: 6px 14px;
  background: rgba(26, 122, 60, 0.2);
  border: 1px solid rgba(26, 122, 60, 0.4);
  border-radius: 20px;
  font-size: 0.82rem;
  color: #5ddb8a;
}

/* ---- RATING SECTION ---- */
.rm3x1-ratings {
  background: var(--c-bg2);
  padding: 48px 0;
  border-bottom: 1px solid var(--c-border);
}
.rm3x1-ratings__inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.rm3x1-overall {
  flex-shrink: 0;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.rm3x1-overall::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
}
.rm3x1-overall__score {
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.rm3x1-overall__max {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.rm3x1-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: 10px 0 12px;
}
.rm3x1-star {
  font-size: 1.4rem;
  color: #3a4a60;
  transition: color var(--transition);
}
.rm3x1-star.filled {
  color: var(--c-gold);
}
.rm3x1-overall__label {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.rm3x1-overall__count {
  font-size: 0.9rem;
  color: var(--c-text);
  margin-top: 6px;
  font-weight: 600;
}
.rm3x1-params {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  min-width: 0;
}
.rm3x1-param {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rm3x1-param__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rm3x1-param__name {
  font-size: 0.88rem;
  color: var(--c-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rm3x1-param__name svg {
  width: 16px;
  height: 16px;
  color: var(--c-gold);
}
.rm3x1-param__val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-gold);
}
.rm3x1-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.rm3x1-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.rm3x1-bar__fill.animate {
  width: 0 !important;
}

/* ---- BONUSES ---- */
.bn5t3-bonuses {
  background: var(--c-bg2);
  padding: 0 0 48px;
}
.bn5t3-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.bn5t3-bonus-tile {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.bn5t3-bonus-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(212, 160, 23, 0.4);
}
.bn5t3-bonus-tile__icon {
  font-size: 1.8rem;
}
.bn5t3-bonus-tile__title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-gold);
}
.bn5t3-bonus-tile__desc {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.bn5t3-bonus-tile__badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold);
  width: fit-content;
}

/* ---- TOC ---- */
.tc8w2-toc {
  background: var(--c-bg);
  padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 68px;
  z-index: 90;
  backdrop-filter: blur(12px);
}
.tc8w2-toc__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: block;
}
.tc8w2-toc__tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.tc8w2-toc__tabs::-webkit-scrollbar {
  display: none;
}
.tc8w2-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.tc8w2-tab:hover {
  color: var(--c-gold);
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(212, 160, 23, 0.07);
}
.tc8w2-tab.active {
  color: var(--c-gold);
  border-color: var(--c-gold);
  background: rgba(212, 160, 23, 0.1);
}
.tc8w2-tab svg {
  width: 15px;
  height: 15px;
}

/* ---- SECTION COMMON ---- */
.section {
  padding: 56px 0;
}
.section__header {
  margin-bottom: 32px;
}
.section__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.section__title span {
  color: var(--c-gold);
}
.section__sub {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.section--alt {
  background: var(--c-bg2);
}

/* ---- BONUS BANNER ---- */
.bx3k7-banner {
  background: linear-gradient(135deg, var(--c-primary-light), var(--c-bg3));
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
}
.bx3k7-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.bx3k7-banner__icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}
.bx3k7-banner__content {
  flex: 1;
  min-width: 200px;
}
.bx3k7-banner__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.bx3k7-banner__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.bx3k7-banner__desc strong {
  color: var(--c-text);
}

/* ---- REVIEW FORM ---- */
.rf9p2-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 760px;
  margin: 0 auto;
}
.rf9p2-form-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 26px;
}
.rf9p2-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rf9p2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rf9p2-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rf9p2-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rf9p2-input,
.rf9p2-textarea {
  padding: 12px 16px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.rf9p2-input:focus,
.rf9p2-textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}
.rf9p2-textarea {
  resize: vertical;
  min-height: 120px;
}
.rf9p2-ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.rf9p2-rating-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rf9p2-rating-label {
  font-size: 0.85rem;
  color: var(--c-text);
  font-weight: 500;
}
.rf9p2-stars-input {
  display: flex;
  gap: 5px;
}
.rf9p2-stars-input span {
  font-size: 1.5rem;
  color: #3a4a60;
  cursor: pointer;
  transition:
    color var(--transition),
    transform var(--transition);
  user-select: none;
}
.rf9p2-stars-input span:hover,
.rf9p2-stars-input span.active {
  color: var(--c-gold);
  transform: scale(1.15);
}
.rf9p2-success {
  display: none;
  background: rgba(26, 122, 60, 0.15);
  border: 1px solid rgba(26, 122, 60, 0.4);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: center;
  color: #5ddb8a;
  font-weight: 600;
  font-size: 1rem;
}
.rf9p2-success svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  color: #5ddb8a;
}
.rf9p2-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- USER REVIEWS ---- */
.rv2n8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.mb-review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.mb-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.mb-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.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);
  flex-shrink: 0;
}
.mb-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mb-review-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
}
.mb-review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.mb-review-country img {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 2px;
}
.mb-review-date {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.mb-review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.mb-rating-display {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mb-rating-value {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.mb-stars {
  display: flex;
  gap: 2px;
}
.mb-star {
  font-size: 0.9rem;
  color: #3a4a60;
}
.mb-star.mb-star-filled {
  color: var(--c-gold);
}
.mb-rating-details-btn {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.mb-rating-details-btn:hover {
  color: var(--c-gold);
}
.mb-rating-detail-panel {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 14px;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  margin-top: -8px;
}
.mb-rating-detail-panel.open {
  display: flex;
}
.mb-rating-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mb-rating-detail-name {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.mb-rating-detail-stars {
  display: flex;
  gap: 2px;
}
.mb-rating-detail-stars span {
  font-size: 0.75rem;
  color: #3a4a60;
}
.mb-rating-detail-stars span.filled {
  color: var(--c-gold);
}
.mb-review-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
}
.mb-review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 3px solid var(--c-gold);
}
.mb-review-source a {
  color: var(--c-gold);
  font-weight: 600;
  font-size: 0.78rem;
}
.mb-review-body {
  position: relative;
}
.mb-review-text {
  font-size: 0.9rem;
  color: rgba(232, 234, 240, 0.88);
  line-height: 1.65;
}
.mb-review-text.truncated {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.mb-review-expand {
  background: none;
  border: none;
  color: var(--c-gold);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px 0 0;
  font-weight: 600;
  transition: color var(--transition);
}
.mb-review-expand:hover {
  color: var(--c-gold-light);
}
.mb-review-pros-cons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mb-review-pros,
.mb-review-cons {
  flex: 1;
  min-width: 130px;
}
.mb-review-pros h5,
.mb-review-cons h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.mb-review-pros h5 {
  color: #5ddb8a;
}
.mb-review-cons h5 {
  color: #e55c5c;
}
.mb-pro-item,
.mb-con-item {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.mb-pro-item {
  color: rgba(93, 219, 138, 0.85);
}
.mb-con-item {
  color: rgba(229, 92, 92, 0.85);
}
.mb-review-media {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mb-review-media img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.mb-review-media img:hover {
  transform: scale(1.05);
  border-color: var(--c-gold);
}
.mb-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}
.mb-review-votes {
  display: flex;
  gap: 8px;
}
.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  color: var(--c-text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.mb-vote-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.mb-vote-btn.voted {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(212, 160, 23, 0.08);
}
.mb-reply-btn {
  padding: 6px 14px;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  color: var(--c-text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.mb-reply-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.mb-reply-form {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}
.mb-reply-form.open {
  display: flex;
}
.mb-reply-form textarea {
  padding: 10px 12px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  color: var(--c-text);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition);
}
.mb-reply-form textarea:focus {
  border-color: var(--c-gold);
}
.mb-reply-actions {
  display: flex;
  gap: 8px;
}
.mb-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.mb-btn-primary {
  background: var(--c-gold);
  color: #0a1628;
}
.mb-btn-primary:hover {
  background: var(--c-gold-light);
}
.mb-btn-secondary {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.mb-btn-secondary:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* ---- COMPARISON TABLE ---- */
.ct6m4-compare {
  overflow-x: auto;
}
.ct6m4-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--c-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  text-align: left;
}
.ct6m4-table thead tr {
  background: var(--c-primary);
}
.ct6m4-table th {
  padding: 16px 20px;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-gold);
  border-bottom: 2px solid var(--c-border);
}
.ct6m4-table th:first-child {
  width: 200px;
}
.ct6m4-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.ct6m4-table tbody tr:last-child td {
  border-bottom: none;
}
.ct6m4-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.ct6m4-table tbody tr:hover td {
  background: rgba(212, 160, 23, 0.04);
}
.ct6m4-table .ct6m4-featured td {
  background: rgba(212, 160, 23, 0.05);
}
.ct6m4-table .ct6m4-featured td:first-child {
  border-left: 3px solid var(--c-gold);
}
.ct6m4-param-name {
  font-weight: 600;
  color: var(--c-text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ct6m4-param-name svg {
  width: 15px;
  height: 15px;
  color: var(--c-gold);
}
.ct6m4-yes {
  color: #5ddb8a;
  font-weight: 600;
}
.ct6m4-no {
  color: #e55c5c;
}
.ct6m4-stars-row {
  display: flex;
  gap: 2px;
}
.ct6m4-stars-row span {
  font-size: 0.8rem;
  color: #3a4a60;
}
.ct6m4-stars-row span.filled {
  color: var(--c-gold);
}

/* ---- ADVANTAGES ---- */
.av7h5-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.av7h5-adv-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.av7h5-adv-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 160, 23, 0.35);
}
.av7h5-adv-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av7h5-adv-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-gold);
}
.av7h5-adv-title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
}
.av7h5-adv-desc {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ---- CONTENT BLOCK ---- */
.cx1v6-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.cx1v6-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  margin-bottom: 28px;
}
.cx1v6-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}
.cx1v6-author__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
}
.cx1v6-author__title {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.cx1v6-author__links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.cx1v6-author__links a {
  font-size: 0.78rem;
  color: var(--c-gold);
}
.cx1v6-content-body {
  color: var(--c-text);
  line-height: 1.75;
}
.cx1v6-content-body h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: var(--c-gold);
  margin: 28px 0 14px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 8px;
}
.cx1v6-content-body h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  color: var(--c-text);
  margin: 22px 0 10px;
}
.cx1v6-content-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.cx1v6-content-body p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.cx1v6-content-body a {
  color: var(--c-gold);
}
.cx1v6-content-body a:hover {
  text-decoration: underline;
}
.cx1v6-content-body ul,
.cx1v6-content-body ol {
  margin: 14px 0 18px 0;
  padding-left: 20px;
  list-style: initial;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cx1v6-content-body ol {
  list-style: decimal;
}
.cx1v6-content-body li {
  font-size: 0.93rem;
  color: rgba(232, 234, 240, 0.9);
  line-height: 1.65;
}
.cx1v6-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.cx1v6-content-body th {
  background: var(--c-primary);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--c-gold);
  border: 1px solid var(--c-border);
}
.cx1v6-content-body td {
  padding: 10px 16px;
  font-size: 0.88rem;
  border: 1px solid var(--c-border);
}
.cx1v6-content-body blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(212, 160, 23, 0.05);
  margin: 18px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(232, 234, 240, 0.85);
}
.cx1v6-content-body img {
  border-radius: 8px;
  margin: 14px 0;
}
.cx1v6-content-body strong {
  color: var(--c-text);
}
.cx1v6-content-body code {
  background: var(--c-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.88em;
  color: var(--c-gold);
}

/* ---- FAQ ---- */
.fq8b3-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.fq8b3-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.fq8b3-item:hover {
  border-color: rgba(212, 160, 23, 0.3);
}
.fq8b3-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  user-select: none;
}
.fq8b3-question svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.fq8b3-item.open .fq8b3-question svg {
  transform: rotate(180deg);
}
.fq8b3-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.fq8b3-item.open .fq8b3-answer {
  display: block;
}

/* ---- FOOTER ---- */
.ft4d1-footer {
  background: var(--c-primary);
  border-top: 2px solid var(--c-gold);
  padding: 48px 0 24px;
  margin-top: auto;
}
.ft4d1-footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.ft4d1-footer__logo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ft4d1-footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.ft4d1-footer__desc {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.ft4d1-footer__col h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.ft4d1-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft4d1-footer__links a {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.ft4d1-footer__links a:hover {
  color: var(--c-gold);
}
.ft4d1-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
  justify-content: center;
  align-items: center;
}
.ft4d1-trust-badge {
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 500;
}
.ft4d1-trust-badge span {
  color: var(--c-gold);
}
.ft4d1-footer__bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.ft4d1-footer__copyright {
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: rgba(138, 155, 184, 0.7);
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap");

:root {
  --c-primary: #0a1628;
  --c-primary-light: #0f2040;
  --c-gold: #d4a017;
  --c-gold-light: #f0bc2e;
  --c-green: #1a7a3c;
  --c-green-light: #22a050;
  --c-red: #c0392b;
  --c-bg: #060d1a;
  --c-bg2: #0d1e36;
  --c-bg3: #112040;
  --c-text: #e8eaf0;
  --c-text-muted: #8a9bb8;
  --c-border: #1e3050;
  --c-card: #0e1f38;
  --c-card2: #122540;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 20px rgba(212, 160, 23, 0.2);
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold-light);
}
ul,
ol {
  list-style: none;
}

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

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

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  line-height: 1.25;
  color: var(--c-text);
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active {
  transform: scale(0.97);
}
.btn--gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  color: #0a1628;
  box-shadow: 0 3px 14px rgba(212, 160, 23, 0.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  box-shadow: 0 5px 20px rgba(212, 160, 23, 0.5);
  transform: translateY(-1px);
  color: #0a1628;
}
.btn--green {
  background: linear-gradient(135deg, var(--c-green), var(--c-green-light));
  color: #fff;
  box-shadow: 0 3px 14px rgba(26, 122, 60, 0.35);
}
.btn--green:hover {
  background: linear-gradient(135deg, var(--c-green-light), var(--c-green));
  box-shadow: 0 5px 20px rgba(26, 122, 60, 0.5);
  transform: translateY(-1px);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: #0a1628;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ---- HEADER ---- */
.xh7f2-header {
  background: var(--c-primary);
  border-bottom: 2px solid var(--c-gold);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.xh7f2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.xh7f2-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.xh7f2-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.xh7f2-logo__text {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 1px;
}
.xh7f2-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.xh7f2-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.xh7f2-nav__link:hover {
  color: var(--c-gold);
  background: rgba(212, 160, 23, 0.08);
}
.xh7f2-nav__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.xh7f2-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.xh7f2-review-count {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--c-gold);
  font-weight: 600;
  white-space: nowrap;
}
.xh7f2-review-count svg {
  width: 14px;
  height: 14px;
}
.xh7f2-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: background var(--transition);
}
.xh7f2-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.xh7f2-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.xh7f2-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.xh7f2-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.xh7f2-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--c-primary-light);
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
}
.xh7f2-mobile-menu.active {
  display: flex;
}
.xh7f2-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--c-text);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.xh7f2-mobile-menu__link:hover {
  background: rgba(212, 160, 23, 0.08);
  color: var(--c-gold);
}
.xh7f2-mobile-menu__link svg {
  width: 18px;
  height: 18px;
}
.xh7f2-mobile-menu__btns {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
}

/* ---- HERO ---- */
.qp4k9-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.qp4k9-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/wban.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.qp4k9-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 13, 26, 0.92) 40%,
    rgba(6, 13, 26, 0.5) 100%
  );
}
.qp4k9-hero__inner {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.qp4k9-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.qp4k9-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.15;
}
.qp4k9-hero__title span {
  color: var(--c-gold);
}
.qp4k9-hero__desc {
  font-size: 1.05rem;
  color: rgba(232, 234, 240, 0.85);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.qp4k9-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.qp4k9-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  padding: 6px 14px;
  background: rgba(26, 122, 60, 0.2);
  border: 1px solid rgba(26, 122, 60, 0.4);
  border-radius: 20px;
  font-size: 0.82rem;
  color: #5ddb8a;
}

/* ---- RATING SECTION ---- */
.rm3x1-ratings {
  background: var(--c-bg2);
  padding: 48px 0;
  border-bottom: 1px solid var(--c-border);
}
.rm3x1-ratings__inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.rm3x1-overall {
  flex-shrink: 0;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.rm3x1-overall::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
}
.rm3x1-overall__score {
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.rm3x1-overall__max {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.rm3x1-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: 10px 0 12px;
}
.rm3x1-star {
  font-size: 1.4rem;
  color: #3a4a60;
  transition: color var(--transition);
}
.rm3x1-star.filled {
  color: var(--c-gold);
}
.rm3x1-overall__label {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.rm3x1-overall__count {
  font-size: 0.9rem;
  color: var(--c-text);
  margin-top: 6px;
  font-weight: 600;
}
.rm3x1-params {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  min-width: 0;
}
.rm3x1-param {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rm3x1-param__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rm3x1-param__name {
  font-size: 0.88rem;
  color: var(--c-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rm3x1-param__name svg {
  width: 16px;
  height: 16px;
  color: var(--c-gold);
}
.rm3x1-param__val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-gold);
}
.rm3x1-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.rm3x1-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.rm3x1-bar__fill.animate {
  width: 0 !important;
}

/* ---- BONUSES ---- */
.bn5t3-bonuses {
  background: var(--c-bg2);
  padding: 0 0 48px;
}
.bn5t3-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.bn5t3-bonus-tile {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.bn5t3-bonus-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(212, 160, 23, 0.4);
}
.bn5t3-bonus-tile__icon {
  font-size: 1.8rem;
}
.bn5t3-bonus-tile__title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-gold);
}
.bn5t3-bonus-tile__desc {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.bn5t3-bonus-tile__badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold);
  width: fit-content;
}

/* ---- TOC ---- */
.tc8w2-toc {
  background: var(--c-bg);
  padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 68px;
  z-index: 90;
  backdrop-filter: blur(12px);
}
.tc8w2-toc__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: block;
}
.tc8w2-toc__tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.tc8w2-toc__tabs::-webkit-scrollbar {
  display: none;
}
.tc8w2-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.tc8w2-tab:hover {
  color: var(--c-gold);
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(212, 160, 23, 0.07);
}
.tc8w2-tab.active {
  color: var(--c-gold);
  border-color: var(--c-gold);
  background: rgba(212, 160, 23, 0.1);
}
.tc8w2-tab svg {
  width: 15px;
  height: 15px;
}

/* ---- SECTION COMMON ---- */
.section {
  padding: 56px 0;
}
.section__header {
  margin-bottom: 32px;
}
.section__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.section__title span {
  color: var(--c-gold);
}
.section__sub {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.section--alt {
  background: var(--c-bg2);
}

/* ---- BONUS BANNER ---- */
.bx3k7-banner {
  background: linear-gradient(135deg, var(--c-primary-light), var(--c-bg3));
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
}
.bx3k7-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.bx3k7-banner__icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}
.bx3k7-banner__content {
  flex: 1;
  min-width: 200px;
}
.bx3k7-banner__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.bx3k7-banner__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.bx3k7-banner__desc strong {
  color: var(--c-text);
}

/* ---- REVIEW FORM ---- */
.rf9p2-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 760px;
  margin: 0 auto;
}
.rf9p2-form-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 26px;
}
.rf9p2-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rf9p2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rf9p2-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rf9p2-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rf9p2-input,
.rf9p2-textarea {
  padding: 12px 16px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.rf9p2-input:focus,
.rf9p2-textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}
.rf9p2-textarea {
  resize: vertical;
  min-height: 120px;
}
.rf9p2-ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.rf9p2-rating-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rf9p2-rating-label {
  font-size: 0.85rem;
  color: var(--c-text);
  font-weight: 500;
}
.rf9p2-stars-input {
  display: flex;
  gap: 5px;
}
.rf9p2-stars-input span {
  font-size: 1.5rem;
  color: #3a4a60;
  cursor: pointer;
  transition:
    color var(--transition),
    transform var(--transition);
  user-select: none;
}
.rf9p2-stars-input span:hover,
.rf9p2-stars-input span.active {
  color: var(--c-gold);
  transform: scale(1.15);
}
.rf9p2-success {
  display: none;
  background: rgba(26, 122, 60, 0.15);
  border: 1px solid rgba(26, 122, 60, 0.4);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: center;
  color: #5ddb8a;
  font-weight: 600;
  font-size: 1rem;
}
.rf9p2-success svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  color: #5ddb8a;
}
.rf9p2-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- USER REVIEWS ---- */
.rv2n8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.mb-review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.mb-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.mb-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.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);
  flex-shrink: 0;
}
.mb-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mb-review-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
}
.mb-review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.mb-review-country img {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 2px;
}
.mb-review-date {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.mb-review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.mb-rating-display {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mb-rating-value {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.mb-stars {
  display: flex;
  gap: 2px;
}
.mb-star {
  font-size: 0.9rem;
  color: #3a4a60;
}
.mb-star.mb-star-filled {
  color: var(--c-gold);
}
.mb-rating-details-btn {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.mb-rating-details-btn:hover {
  color: var(--c-gold);
}
.mb-rating-detail-panel {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 14px;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  margin-top: -8px;
}
.mb-rating-detail-panel.open {
  display: flex;
}
.mb-rating-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mb-rating-detail-name {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.mb-rating-detail-stars {
  display: flex;
  gap: 2px;
}
.mb-rating-detail-stars span {
  font-size: 0.75rem;
  color: #3a4a60;
}
.mb-rating-detail-stars span.filled {
  color: var(--c-gold);
}
.mb-review-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
}
.mb-review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 3px solid var(--c-gold);
}
.mb-review-source a {
  color: var(--c-gold);
  font-weight: 600;
  font-size: 0.78rem;
}
.mb-review-body {
  position: relative;
}
.mb-review-text {
  font-size: 0.9rem;
  color: rgba(232, 234, 240, 0.88);
  line-height: 1.65;
}
.mb-review-text.truncated {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.mb-review-expand {
  background: none;
  border: none;
  color: var(--c-gold);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px 0 0;
  font-weight: 600;
  transition: color var(--transition);
}
.mb-review-expand:hover {
  color: var(--c-gold-light);
}
.mb-review-pros-cons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mb-review-pros,
.mb-review-cons {
  flex: 1;
  min-width: 130px;
}
.mb-review-pros h5,
.mb-review-cons h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.mb-review-pros h5 {
  color: #5ddb8a;
}
.mb-review-cons h5 {
  color: #e55c5c;
}
.mb-pro-item,
.mb-con-item {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.mb-pro-item {
  color: rgba(93, 219, 138, 0.85);
}
.mb-con-item {
  color: rgba(229, 92, 92, 0.85);
}
.mb-review-media {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mb-review-media img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.mb-review-media img:hover {
  transform: scale(1.05);
  border-color: var(--c-gold);
}
.mb-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}
.mb-review-votes {
  display: flex;
  gap: 8px;
}
.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  color: var(--c-text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.mb-vote-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.mb-vote-btn.voted {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(212, 160, 23, 0.08);
}
.mb-reply-btn {
  padding: 6px 14px;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  color: var(--c-text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.mb-reply-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.mb-reply-form {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}
.mb-reply-form.open {
  display: flex;
}
.mb-reply-form textarea {
  padding: 10px 12px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  color: var(--c-text);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition);
}
.mb-reply-form textarea:focus {
  border-color: var(--c-gold);
}
.mb-reply-actions {
  display: flex;
  gap: 8px;
}
.mb-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.mb-btn-primary {
  background: var(--c-gold);
  color: #0a1628;
}
.mb-btn-primary:hover {
  background: var(--c-gold-light);
}
.mb-btn-secondary {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.mb-btn-secondary:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* ---- COMPARISON TABLE ---- */
.ct6m4-compare {
  overflow-x: auto;
}
.ct6m4-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--c-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  text-align: left;
}
.ct6m4-table thead tr {
  background: var(--c-primary);
}
.ct6m4-table th {
  padding: 16px 20px;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-gold);
  border-bottom: 2px solid var(--c-border);
}
.ct6m4-table th:first-child {
  width: 200px;
}
.ct6m4-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.ct6m4-table tbody tr:last-child td {
  border-bottom: none;
}
.ct6m4-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.ct6m4-table tbody tr:hover td {
  background: rgba(212, 160, 23, 0.04);
}
.ct6m4-table .ct6m4-featured td {
  background: rgba(212, 160, 23, 0.05);
}
.ct6m4-table .ct6m4-featured td:first-child {
  border-left: 3px solid var(--c-gold);
}
.ct6m4-param-name {
  font-weight: 600;
  color: var(--c-text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ct6m4-param-name svg {
  width: 15px;
  height: 15px;
  color: var(--c-gold);
}
.ct6m4-yes {
  color: #5ddb8a;
  font-weight: 600;
}
.ct6m4-no {
  color: #e55c5c;
}
.ct6m4-stars-row {
  display: flex;
  gap: 2px;
}
.ct6m4-stars-row span {
  font-size: 0.8rem;
  color: #3a4a60;
}
.ct6m4-stars-row span.filled {
  color: var(--c-gold);
}

/* ---- ADVANTAGES ---- */
.av7h5-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.av7h5-adv-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.av7h5-adv-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 160, 23, 0.35);
}
.av7h5-adv-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av7h5-adv-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-gold);
}
.av7h5-adv-title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
}
.av7h5-adv-desc {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ---- CONTENT BLOCK ---- */
.cx1v6-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.cx1v6-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  margin-bottom: 28px;
}
.cx1v6-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}
.cx1v6-author__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
}
.cx1v6-author__title {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.cx1v6-author__links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.cx1v6-author__links a {
  font-size: 0.78rem;
  color: var(--c-gold);
}
.cx1v6-content-body {
  color: var(--c-text);
  line-height: 1.75;
}
.cx1v6-content-body h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: var(--c-gold);
  margin: 28px 0 14px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 8px;
}
.cx1v6-content-body h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  color: var(--c-text);
  margin: 22px 0 10px;
}
.cx1v6-content-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.cx1v6-content-body p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.cx1v6-content-body a {
  color: var(--c-gold);
}
.cx1v6-content-body a:hover {
  text-decoration: underline;
}
.cx1v6-content-body ul,
.cx1v6-content-body ol {
  margin: 14px 0 18px 0;
  padding-left: 20px;
  list-style: initial;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cx1v6-content-body ol {
  list-style: decimal;
}
.cx1v6-content-body li {
  font-size: 0.93rem;
  color: rgba(232, 234, 240, 0.9);
  line-height: 1.65;
}
.cx1v6-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.cx1v6-content-body th {
  background: var(--c-primary);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--c-gold);
  border: 1px solid var(--c-border);
}
.cx1v6-content-body td {
  padding: 10px 16px;
  font-size: 0.88rem;
  border: 1px solid var(--c-border);
}
.cx1v6-content-body blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(212, 160, 23, 0.05);
  margin: 18px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(232, 234, 240, 0.85);
}
.cx1v6-content-body img {
  border-radius: 8px;
  margin: 14px 0;
}
.cx1v6-content-body strong {
  color: var(--c-text);
}
.cx1v6-content-body code {
  background: var(--c-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.88em;
  color: var(--c-gold);
}

/* ---- FAQ ---- */
.fq8b3-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.fq8b3-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.fq8b3-item:hover {
  border-color: rgba(212, 160, 23, 0.3);
}
.fq8b3-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  user-select: none;
}
.fq8b3-question svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.fq8b3-item.open .fq8b3-question svg {
  transform: rotate(180deg);
}
.fq8b3-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.fq8b3-item.open .fq8b3-answer {
  display: block;
}

/* ---- FOOTER ---- */
.ft4d1-footer {
  background: var(--c-primary);
  border-top: 2px solid var(--c-gold);
  padding: 48px 0 24px;
  margin-top: auto;
}
.ft4d1-footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.ft4d1-footer__logo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ft4d1-footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.ft4d1-footer__desc {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.ft4d1-footer__col h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.ft4d1-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft4d1-footer__links a {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.ft4d1-footer__links a:hover {
  color: var(--c-gold);
}
.ft4d1-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
  justify-content: center;
  align-items: center;
}
.ft4d1-trust-badge {
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 500;
}
.ft4d1-trust-badge span {
  color: var(--c-gold);
}
.ft4d1-footer__bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.ft4d1-footer__copyright {
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: rgba(138, 155, 184, 0.7);
}

.wd9f6-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100vw - 24px);
  z-index: 998;
  background: linear-gradient(135deg, var(--c-primary-light), var(--c-bg3));
  border: 1px solid var(--c-gold);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(212, 160, 23, 0.15);
  animation: wd9f6-slide-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.wd9f6-widget__text {
  font-size: 0.88rem;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.wd9f6-widget__text strong {
  color: var(--c-gold);
}
.wd9f6-widget__btn {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-light));
  color: #fff;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: none;
  flex-shrink: 0;
}
.wd9f6-widget__btn:hover {
  background: linear-gradient(135deg, var(--c-green-light), var(--c-green));
  transform: scale(1.04);
  color: #fff;
}
.wd9f6-widget__close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 2px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.wd9f6-widget__close:hover {
  color: var(--c-text);
}

@keyframes wd9f6-slide-up {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 480px) {
  .wd9f6-widget {
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    bottom: 12px;
    padding: 10px 14px;
    gap: 10px;
  }
  .wd9f6-widget__text {
    font-size: 0.78rem;
  }
  @keyframes wd9f6-slide-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ---- ANIMATIONS ---- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fade-up 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.fade-up-d1 {
  animation-delay: 0.1s;
}
.fade-up-d2 {
  animation-delay: 0.2s;
}
.fade-up-d3 {
  animation-delay: 0.3s;
}

/* ---- UTILITIES ---- */
.text-gold {
  color: var(--c-gold);
}
.text-muted {
  color: var(--c-text-muted);
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-8 {
  margin-bottom: 32px;
}
.d-flex {
  display: flex;
}
.ai-center {
  align-items: center;
}
.jc-center {
  justify-content: center;
}
.jc-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}

.wp-block-group {
  display: block;
}
.entry-content {
  display: contents;
}
.post-thumbnail {
  display: none;
}
.wp-caption {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
link[rel="https://api.w.org/"] {
  display: none;
}

@media (max-width: 1024px) {
  .ft4d1-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .ft4d1-footer__logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .xh7f2-nav {
    display: none;
  }
  .xh7f2-burger {
    display: flex;
  }
  .xh7f2-review-count {
    display: none;
  }
  .rf9p2-row {
    grid-template-columns: 1fr;
  }
  .rm3x1-ratings__inner {
    flex-direction: column;
  }
  .rm3x1-overall {
    width: 100%;
  }
  .qp4k9-hero {
    min-height: 380px;
  }
  .rv2n8-grid {
    grid-template-columns: 1fr;
  }
  .ft4d1-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cx1v6-content {
    padding: 24px 18px;
  }
  .bx3k7-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .wd9f6-widget {
    bottom: 12px;
    padding: 10px 16px;
    gap: 10px;
  }
  .wd9f6-widget__text {
    font-size: 0.78rem;
  }
  .tc8w2-toc {
    position: static;
  }
  .rf9p2-form-wrap {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .qp4k9-hero__btns {
    flex-direction: column;
  }
  .xh7f2-header__actions .btn:not(.btn--gold):not(.btn--green) {
    display: none;
  }
  .bn5t3-bonuses__grid {
    grid-template-columns: 1fr 1fr;
  }
  .av7h5-advantages__grid {
    grid-template-columns: 1fr;
  }
}

.xr4t2-hidden {
  display: none !important;
  pointer-events: none;
}
.k8p3m-spacer {
  height: 0;
  overflow: hidden;
}
.vn7w1-block {
  visibility: hidden;
  height: 0;
}

.fade-up {
  animation: fade-up 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.fade-up-d1 {
  animation-delay: 0.1s;
}
.fade-up-d2 {
  animation-delay: 0.2s;
}
.fade-up-d3 {
  animation-delay: 0.3s;
}

/* ---- UTILITIES ---- */
.text-gold {
  color: var(--c-gold);
}
.text-muted {
  color: var(--c-text-muted);
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-8 {
  margin-bottom: 32px;
}
.d-flex {
  display: flex;
}
.ai-center {
  align-items: center;
}
.jc-center {
  justify-content: center;
}
.jc-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}

.wp-block-group {
  display: block;
}
.entry-content {
  display: contents;
}
.post-thumbnail {
  display: none;
}
.wp-caption {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
link[rel="https://api.w.org/"] {
  display: none;
}

@media (max-width: 1024px) {
  .ft4d1-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .ft4d1-footer__logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .xh7f2-nav {
    display: none;
  }
  .xh7f2-burger {
    display: flex;
  }
  .xh7f2-review-count {
    display: none;
  }
  .rf9p2-row {
    grid-template-columns: 1fr;
  }
  .rm3x1-ratings__inner {
    flex-direction: column;
  }
  .rm3x1-overall {
    width: 100%;
  }
  .qp4k9-hero {
    min-height: 380px;
  }
  .rv2n8-grid {
    grid-template-columns: 1fr;
  }
  .ft4d1-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cx1v6-content {
    padding: 24px 18px;
  }
  .bx3k7-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .wd9f6-widget {
    bottom: 12px;
    padding: 10px 16px;
    gap: 10px;
  }
  .wd9f6-widget__text {
    font-size: 0.78rem;
  }
  .tc8w2-toc {
    position: static;
  }
  .rf9p2-form-wrap {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .qp4k9-hero__btns {
    flex-direction: column;
  }
  .xh7f2-header__actions .btn:not(.btn--gold):not(.btn--green) {
    display: none;
  }
  .bn5t3-bonuses__grid {
    grid-template-columns: 1fr 1fr;
  }
  .av7h5-advantages__grid {
    grid-template-columns: 1fr;
  }
}

.xr4t2-hidden {
  display: none !important;
  pointer-events: none;
}
.k8p3m-spacer {
  height: 0;
  overflow: hidden;
}
.vn7w1-block {
  visibility: hidden;
  height: 0;
}
