*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #0b1220;
  color: #d4dae8;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #f0cd5a;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
.ax-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ax-site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.ax-main {
  flex: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ax-header {
  background: #0d1a35;
  border-bottom: 1px solid #1e3060;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  min-height: 64px;
}
.hdr-logo img {
  height: 44px;
  width: auto;
}
.hdr-nav {
  flex: 1;
}
.hdr-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #a0aec0;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.hdr-nav-link:hover,
.hdr-nav-link:focus {
  background: #162348;
  color: #d4af37;
}
.hdr-nav-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-reviews-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #7a8eb0;
  white-space: nowrap;
}
.hdr-reviews-count svg {
  color: #d4af37;
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hdr-burger:hover {
  background: #162348;
}
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #a0aec0;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hdr-burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.hdr-burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #0d1a35;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-inner {
  padding: 80px 24px 32px;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #d4dae8;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-nav-link:hover {
  background: #162348;
  color: #d4af37;
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ax-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 150;
}
.ax-overlay.active {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 10px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--login {
  padding: 9px 18px;
  font-size: 13px;
  background: #162348;
  color: #d4dae8;
  border: 1px solid #2a4070;
}
.btn--login:hover {
  background: #1e3060;
  color: #fff;
}
.btn--register {
  padding: 9px 18px;
  font-size: 13px;
  background: linear-gradient(135deg, #c9a227, #f0cd5a);
  color: #0b1220;
}
.btn--register:hover {
  background: linear-gradient(135deg, #d4af37, #f8e07a);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}
.btn--full {
  width: 100%;
}
.btn--primary {
  padding: 12px 28px;
  font-size: 15px;
  background: linear-gradient(135deg, #c9a227, #f0cd5a);
  color: #0b1220;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #d4af37, #f8e07a);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
}
.btn--ghost {
  padding: 10px 20px;
  font-size: 14px;
  background: transparent;
  color: #a0aec0;
  border: 1px solid #2a4070;
}
.btn--ghost:hover {
  background: #162348;
  color: #d4dae8;
}
.btn--small,
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn--submit {
  padding: 14px 36px;
  font-size: 15px;
  width: 100%;
  background: linear-gradient(135deg, #c9a227, #f0cd5a);
  color: #0b1220;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.btn--submit:hover {
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.55);
}
.btn--hero-primary {
  padding: 14px 32px;
  font-size: 15px;
  background: linear-gradient(135deg, #c9a227, #f0cd5a);
  color: #0b1220;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.btn--hero-primary:hover {
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
}
.btn--hero-secondary {
  padding: 14px 32px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.btn--hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.btn--bonus-cta {
  padding: 14px 32px;
  font-size: 15px;
  background: #d4af37;
  color: #0b1220;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}
.btn--bonus-cta:hover {
  background: #f0cd5a;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}
.btn--widget {
  padding: 10px 20px;
  font-size: 13px;
  background: linear-gradient(135deg, #c9a227, #f0cd5a);
  color: #0b1220;
}
.btn--widget:hover {
  background: linear-gradient(135deg, #d4af37, #f8e07a);
}
.mt-1 {
  margin-top: 12px;
}

.ax-hero-section {
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}
.hero-slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 18, 32, 0.85) 40%,
    rgba(11, 18, 32, 0.3) 100%
  );
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 40px 0;
}
.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.hero-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero-subtext {
  font-size: 16px;
  color: #c5cedf;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(13, 26, 53, 0.7);
  border: 1px solid #2a4070;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.hero-prev {
  left: 16px;
}
.hero-next {
  right: 16px;
}
.hero-prev:hover,
.hero-next:hover {
  background: #162348;
  border-color: #d4af37;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.hero-dot.active {
  background: #d4af37;
  transform: scale(1.25);
}

.ax-section-header {
  margin-bottom: 28px;
}
.ax-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-wrap: balance;
}
.ax-section-subtitle {
  font-size: 15px;
  color: #7a8eb0;
  line-height: 1.5;
}

.ax-rating-section {
  padding: 56px 0;
}
.rating-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.rating-overall-block {
  background: #0d1a35;
  border: 1px solid #1e3060;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
}
.rating-big-score {
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 12px;
}
.rating-big-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.rating-overall-label {
  font-size: 14px;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 20px;
}
.rating-params-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.rating-param-card {
  background: #0d1a35;
  border: 1px solid #1e3060;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.rating-param-card:hover {
  border-color: #d4af37;
  transform: translateY(-2px);
}
.rp-icon {
  color: #d4af37;
}
.rp-label {
  font-size: 14px;
  font-weight: 600;
  color: #c5cedf;
}
.rp-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rp-bar {
  flex: 1;
  height: 6px;
  background: #1e3060;
  border-radius: 3px;
  overflow: hidden;
}
.rp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a227, #f0cd5a);
  border-radius: 3px;
  transition: width 0.8s ease;
}
.rp-score {
  font-size: 13px;
  font-weight: 700;
  color: #d4af37;
  min-width: 28px;
}

.ax-toc-section {
  padding: 0 0 40px;
}
.toc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.toc-tab {
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #a0aec0;
  background: #0d1a35;
  border: 1px solid #1e3060;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.toc-tab:hover {
  background: #162348;
  color: #d4af37;
  border-color: #d4af37;
}

.ax-bonus-banner {
  padding: 28px 32px;
  border-radius: 16px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #1a2e5a, #0f2040);
  border: 1px solid #d4af37;
}
.bonus-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.bonus-banner-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f0cd5a;
  margin-bottom: 6px;
}
.bonus-banner-desc {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.5;
}
.bonus-banner-text {
  flex: 1;
}

.ax-leave-review-section {
  padding: 40px 0;
}
.ax-form-wrap {
  background: #0d1a35;
  border: 1px solid #1e3060;
  border-radius: 16px;
  padding: 36px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #c5cedf;
}
.form-required {
  color: #f87171;
}
.form-input,
.form-textarea {
  padding: 12px 16px;
  background: #0b1220;
  border: 1px solid #2a4070;
  border-radius: 10px;
  color: #d4dae8;
  font-size: 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #4a5a78;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  padding: 16px;
  background: #0b1220;
  border: 1px solid #2a4070;
  border-radius: 10px;
}
.form-rating-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-rating-label {
  font-size: 13px;
  color: #7a8eb0;
  font-weight: 500;
}
.star-picker {
  display: flex;
  gap: 4px;
}
.sp-star {
  font-size: 22px;
  color: #2a4070;
  cursor: pointer;
  transition:
    color 0.15s,
    transform 0.15s;
  line-height: 1;
}
.sp-star:hover,
.sp-star.active {
  color: #d4af37;
  transform: scale(1.15);
}
.leave-review-form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(74, 222, 128, 0.1);
  border: 2px solid #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #4ade80;
}
.leave-review-form-success h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 8px;
}
.leave-review-form-success p {
  color: #7a8eb0;
}

.ax-reviews-section {
  padding: 40px 0;
}
.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.rv-card {
  background: #0d1a35;
  border: 1px solid #1e3060;
  border-radius: 16px;
  padding: 24px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.rv-card:hover {
  border-color: #2a4070;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.rv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.rv-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1e3060;
  flex-shrink: 0;
}
.rv-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #162348;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #d4af37;
  border: 2px solid #2a4070;
  flex-shrink: 0;
}
.rv-author-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rv-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.rv-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #7a8eb0;
}
.rv-country img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
.rv-date {
  font-size: 12px;
  color: #4a5a78;
}
.rv-rating-wrap {
  text-align: right;
}
.rv-rating-main {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  margin-bottom: 6px;
}
.rv-rating-value {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #d4af37;
}
.rv-stars {
  display: flex;
  gap: 2px;
}
.rv-star {
  font-size: 14px;
  color: #2a4070;
  line-height: 1;
}
.rv-star--filled {
  color: #d4af37;
}
.rv-star--half {
  color: #d4af37;
  opacity: 0.5;
}
.rv-details-toggle {
  font-size: 12px;
  color: #5a7aaa;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}
.rv-details-toggle:hover {
  color: #d4af37;
}
.rv-rating-detail {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}
.rv-param-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.rv-param-label {
  color: #7a8eb0;
  min-width: 120px;
  font-size: 11px;
}
.rv-param-bar {
  flex: 1;
  height: 4px;
  background: #1e3060;
  border-radius: 2px;
  overflow: hidden;
}
.rv-param-fill {
  height: 100%;
  background: #d4af37;
  border-radius: 2px;
}
.rv-param-val {
  color: #d4af37;
  font-weight: 700;
  font-size: 11px;
  min-width: 24px;
}
.rv-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5a7aaa;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: #0b1220;
  border-radius: 6px;
  border: 1px solid #1a2a4a;
}
.rv-source-link {
  color: #d4af37;
  text-decoration: underline;
  font-weight: 500;
}
.rv-source-link:hover {
  color: #f0cd5a;
}
.rv-title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.rv-body {
  margin-bottom: 16px;
}
.rv-text {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.6;
}
.rv-text--collapsed {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.rv-text--expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.rv-expand-btn {
  font-size: 13px;
  color: #d4af37;
  margin-top: 6px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.rv-expand-btn:hover {
  color: #f0cd5a;
}
.rv-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.rv-pros,
.rv-cons {
  padding: 12px 16px;
  border-radius: 10px;
}
.rv-pros {
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.rv-cons {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.rv-pros-title {
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rv-cons-title {
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rv-pros-list li,
.rv-cons-list li {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
  color: #c5cedf;
}
.rv-pros-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.rv-cons-list li::before {
  content: "\2212";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}
.rv-media {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.rv-media-img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #2a4070;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}
.rv-media-img:hover {
  opacity: 0.85;
  border-color: #d4af37;
}
.rv-media-video iframe {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  border: 1px solid #2a4070;
}
.rv-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #162348;
}
.rv-votes {
  display: flex;
  gap: 10px;
}
.rv-vote-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: #0b1220;
  border: 1px solid #2a4070;
  color: #7a8eb0;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.rv-vote-btn:hover {
  background: #162348;
  border-color: #d4af37;
  color: #d4af37;
}
.rv-vote-btn.voted-like {
  background: rgba(74, 222, 128, 0.1);
  border-color: #4ade80;
  color: #4ade80;
}
.rv-vote-btn.voted-dislike {
  background: rgba(248, 113, 113, 0.1);
  border-color: #f87171;
  color: #f87171;
}
.rv-reply-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: #162348;
  color: #7a8eb0;
  border: 1px solid #2a4070;
  transition:
    background 0.2s,
    color 0.2s;
}
.rv-reply-toggle:hover {
  background: #1e3060;
  color: #d4af37;
  border-color: #d4af37;
}
.rv-reply-form {
  margin-top: 14px;
  padding: 16px;
  background: #0b1220;
  border: 1px solid #2a4070;
  border-radius: 10px;
}
.rv-reply-textarea {
  width: 100%;
  padding: 10px 14px;
  background: #0d1a35;
  border: 1px solid #2a4070;
  border-radius: 8px;
  color: #d4dae8;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 10px;
}
.rv-reply-textarea:focus {
  outline: none;
  border-color: #d4af37;
}
.rv-reply-actions {
  display: flex;
  gap: 10px;
}

.ax-faq-section {
  padding: 40px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #0d1a35;
  border: 1px solid #1e3060;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: #d4af37;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #d4dae8;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #d4af37;
}
.faq-question[aria-expanded="true"] {
  color: #d4af37;
}
.faq-icon {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: #5a7aaa;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: #d4af37;
}
.faq-answer {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.7;
}
.faq-answer p {
  margin-bottom: 8px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

.ax-comparison-section {
  padding: 40px 0;
}
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #1e3060;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: left;
}
.comparison-table th {
  padding: 14px 18px;
  background: #0d1a35;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #7a8eb0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #1e3060;
}
.comparison-table td {
  padding: 13px 18px;
  font-size: 14px;
  color: #a0aec0;
  border-bottom: 1px solid #162348;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: #0f1f3a;
}
.ct-highlight {
  background: rgba(212, 175, 55, 0.05) !important;
  border-left: 2px solid #d4af37;
}
.comparison-table th.ct-highlight {
  color: #d4af37;
}
.ct-good {
  color: #4ade80 !important;
  font-weight: 600;
}
.ct-bad {
  color: #f87171 !important;
  font-weight: 600;
}
.ct-stars {
  color: #d4af37;
  letter-spacing: -2px;
}

.ax-screenshots-section {
  padding: 40px 0;
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e3060;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.screenshot-item:hover {
  border-color: #d4af37;
  transform: translateY(-2px);
}
.screenshot-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.screenshot-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}
.screenshot-link:hover img {
  transform: scale(1.04);
}
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #d4af37;
}
.screenshot-link:hover .screenshot-overlay {
  opacity: 1;
}
.screenshot-caption {
  padding: 10px 14px;
  font-size: 13px;
  color: #7a8eb0;
  background: #0d1a35;
}

.ax-review-text-section {
  padding: 40px 0 56px;
}
.review-author-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
  padding: 16px 20px;
  background: #0d1a35;
  border: 1px solid #1e3060;
  border-radius: 12px;
}
.review-author-meta {
  font-size: 14px;
  color: #7a8eb0;
  margin-bottom: 4px;
}
.review-author-link {
  color: #d4af37;
  font-weight: 600;
}
.review-author-link:hover {
  color: #f0cd5a;
}
.review-author-bio {
  font-size: 13px;
  color: #5a7aaa;
  line-height: 1.5;
}
.ax-review-content-block {
  background: #0d1a35;
  border: 1px solid #1e3060;
  border-radius: 16px;
  padding: 36px;
  margin-top: 24px;
}
.rc-styled h1,
.rc-styled h2,
.rc-styled h3,
.rc-styled h4,
.rc-styled h5,
.rc-styled h6 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 700;
}
.rc-styled h2 {
  font-size: 22px;
  border-bottom: 1px solid #1e3060;
  padding-bottom: 10px;
}
.rc-styled h3 {
  font-size: 18px;
  color: #d4af37;
}
.rc-styled p {
  font-size: 15px;
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 14px;
}
.rc-styled ul,
.rc-styled ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.rc-styled ul {
  list-style: disc;
}
.rc-styled ol {
  list-style: decimal;
}
.rc-styled li {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 6px;
}
.rc-styled a {
  color: #d4af37;
  text-decoration: underline;
}
.rc-styled a:hover {
  color: #f0cd5a;
}
.rc-styled strong {
  color: #d4dae8;
  font-weight: 700;
}
.rc-styled em {
  color: #c5cedf;
  font-style: italic;
}
.rc-styled table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.rc-styled table th {
  padding: 11px 16px;
  background: #162348;
  color: #d4dae8;
  font-weight: 600;
  border: 1px solid #2a4070;
  text-align: left;
}
.rc-styled table td {
  padding: 10px 16px;
  border: 1px solid #1e3060;
  color: #a0aec0;
  vertical-align: top;
}
.rc-styled table tr:nth-child(even) td {
  background: #0f1f3a;
}
.rc-styled blockquote {
  border-left: 3px solid #d4af37;
  padding: 12px 20px;
  background: #0b1220;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: #7a8eb0;
}

.ax-footer {
  background: #0d1a35;
  border-top: 1px solid #1e3060;
  padding: 48px 0 24px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 36px;
}
.ftr-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ftr-tagline {
  font-size: 13px;
  color: #5a7aaa;
  line-height: 1.5;
}
.ftr-nav-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ftr-nav-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #d4dae8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 14px;
}
.ftr-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-nav-link {
  font-size: 14px;
  color: #5a7aaa;
  transition: color 0.2s;
}
.ftr-nav-link:hover {
  color: #d4af37;
}
.ftr-trust {
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid #162348;
  border-bottom: 1px solid #162348;
}
.ftr-trust-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #4a5a78;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.ftr-trust-logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.ftr-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #3a5070;
}
.ftr-trust-item:hover {
  color: #7a8eb0;
}
.ftr-trust-item span {
  font-size: 11px;
  color: #3a5070;
  text-align: center;
}
.ftr-legal {
  text-align: center;
}
.ftr-legal-text {
  font-size: 12px;
  color: #3a5070;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 10px;
}
.ftr-copyright {
  font-size: 12px;
  color: #3a5070;
}

.ax-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0;
  background: #0d1a35;
  border-top: 1px solid #d4af37;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.ax-widget.hidden {
  transform: translateY(100%);
}
.widget-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.widget-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #d4af37;
}
.widget-subtitle {
  font-size: 13px;
  color: #7a8eb0;
}
.widget-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #162348;
  color: #7a8eb0;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  border: 1px solid #2a4070;
}
.widget-close:hover {
  background: #1e3060;
  color: #f87171;
  border-color: #f87171;
}

.ax-btn-hidden-junk {
  display: none !important;
}
.wp-link-pages,
.post-categories,
.wp-post-image,
.entry-content,
.wp-caption,
.attachment-thumbnail,
.size-medium,
.wp-image-pjx9 {
  display: none;
}

@media (max-width: 900px) {
  .hdr-nav {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-reviews-count {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .rating-layout {
    flex-direction: column;
  }
  .rating-overall-block {
    min-width: unset;
    width: 100%;
  }
  .rv-grid {
    grid-template-columns: 1fr;
  }
  .ftr-top {
    grid-template-columns: 1fr;
  }
  .ftr-nav-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slider {
    height: 400px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .rv-pros-cons {
    grid-template-columns: 1fr;
  }
  .bonus-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .ax-form-wrap {
    padding: 20px;
  }
  .hero-slider {
    height: 340px;
  }
  .hero-heading {
    font-size: 24px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .btn--hero-primary,
  .btn--hero-secondary {
    width: 100%;
    text-align: center;
  }
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .toc-tabs {
    gap: 6px;
  }
  .toc-tab {
    padding: 7px 14px;
    font-size: 13px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .widget-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px;
  }
  .rv-card {
    padding: 16px;
  }
  .ftr-nav-wrap {
    grid-template-columns: 1fr;
  }
  .form-ratings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rv-card-header {
    flex-direction: column;
  }
  .rv-rating-wrap {
    text-align: left;
  }
  .rv-rating-main {
    justify-content: flex-start;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}
