:root {
  --c-navy: #0a1628;
  --c-navy-mid: #0f2040;
  --c-navy-light: #162b52;
  --c-gold: #d4a017;
  --c-gold-light: #f0c040;
  --c-gold-dark: #a07810;
  --c-text: #e8eaf0;
  --c-text-muted: #8a9bbf;
  --c-text-dark: #1a2340;
  --c-white: #ffffff;
  --c-bg: #060e1e;
  --c-bg-card: #0d1e38;
  --c-bg-card2: #111f3a;
  --c-border: #1e3060;
  --c-green: #22c55e;
  --c-red: #ef4444;
  --c-amber: #f59e0b;
  --c-btn-login: #1e3a6e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.35);
  --transition: 0.22s ease;
  --font-head: "Montserrat", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body.adm-body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: 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;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.adm-wrap {
  width: 100%;
  padding: 0 0 40px;
}
.adm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.adm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-navy);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
}
.adm-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
}
.adm-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.adm-nav {
  flex: 1;
  margin-left: 16px;
}
.adm-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.adm-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}
.adm-nav__link:hover {
  background: var(--c-navy-light);
  color: var(--c-text);
}
.adm-nav__icon {
  flex-shrink: 0;
  opacity: 0.7;
}
.adm-header__reviews-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
}
.adm-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.adm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.adm-btn--gold {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
}
.adm-btn--gold:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  color: var(--c-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
}
.adm-btn--outline {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.adm-btn--outline:hover {
  background: rgba(212, 160, 23, 0.1);
  color: var(--c-gold-light);
}
.adm-btn--ghost {
  background: transparent;
  color: var(--c-text-muted);
  border-color: var(--c-border);
}
.adm-btn--ghost:hover {
  background: var(--c-navy-light);
  color: var(--c-text);
  border-color: var(--c-navy-light);
}
.adm-btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}
.adm-btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}
.adm-btn--full {
  width: 100%;
}

.adm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.adm-burger:hover {
  background: var(--c-navy-light);
}
.adm-burger__line {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.adm-burger.is-open .adm-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.adm-burger.is-open .adm-burger__line:nth-child(2) {
  opacity: 0;
}
.adm-burger.is-open .adm-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.adm-hero {
  position: relative;
  overflow: hidden;
}
.adm-hero__bg {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.adm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 30, 0.9) 0%,
    rgba(10, 22, 40, 0.75) 50%,
    rgba(6, 14, 30, 0.7) 100%
  );
}
.adm-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 16px;
  width: 100%;
}
.adm-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.15;
  text-wrap: balance;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.adm-hero__sub {
  font-size: 1.1rem;
  color: rgba(232, 234, 240, 0.85);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.adm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.adm-info-row {
  display: flex;
  gap: 20px;
  margin: 32px 0 20px;
  align-items: flex-start;
}

.adm-card-tile {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
  max-width: 320px;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.adm-tile__logo-wrap {
  display: flex;
  justify-content: center;
}
.adm-tile__logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.adm-tile__rating-block {
  text-align: center;
}
.adm-score-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.adm-score-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}
.adm-score-value {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1;
}
.adm-score-bar-outer {
  height: 12px;
  background: var(--c-navy-light);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.adm-score-bar-inner {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--c-red) 0%,
    var(--c-amber) 50%,
    var(--c-green) 100%
  );
  transition: width 0.6s ease;
  background-size: 200% 100%;
  background-position: right center;
}
.adm-score-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.adm-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 10px;
}
.adm-star {
  font-size: 1.25rem;
  color: var(--c-border);
}
.adm-star--full {
  color: var(--c-gold);
}
.adm-star--half {
  position: relative;
  color: var(--c-border);
}
.adm-star--half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--c-gold);
}
.adm-tile__bonus {
  text-align: center;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-md);
  padding: 14px;
}
.adm-bonus-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.adm-bonus-val {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-gold);
}
.adm-bonus-alt {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}
.adm-tile__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adm-info-card {
  flex: 1;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.adm-info-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
}
.adm-info-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
}
.adm-info-more-btn {
  font-size: 0.8rem;
  color: var(--c-gold);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: all var(--transition);
}
.adm-info-more-btn:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--c-gold);
}
.adm-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.adm-info-row-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 48, 96, 0.6);
  font-size: 0.875rem;
}
.adm-info-row-item:last-child {
  border-bottom: none;
}
.adm-info-row-item dt {
  color: var(--c-text-muted);
  flex-shrink: 0;
  min-width: 140px;
}
.adm-info-row-item dd {
  color: var(--c-text);
  text-align: right;
  word-break: break-word;
}
.adm-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--c-green);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.8rem;
  font-weight: 600;
}
.adm-providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}
.adm-tag {
  background: var(--c-navy-light);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.adm-bonuses-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}
.adm-bonus-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  flex: 1;
  min-width: 220px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.adm-bonus-tile:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.1);
}
.adm-bonus-tile__icon {
  color: var(--c-gold);
  flex-shrink: 0;
}
.adm-bonus-tile__body {
  flex: 1;
}
.adm-bonus-tile__name {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 2px;
}
.adm-bonus-tile__val {
  font-weight: 700;
  color: var(--c-gold);
  font-size: 0.95rem;
}

.adm-toc-block {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 0 0 24px;
}
.adm-section-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.adm-toc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.adm-toc-tab {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--c-navy-light);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.adm-toc-tab:hover {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
}

.adm-block {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin: 0 0 24px;
  box-shadow: var(--shadow-card);
}
.adm-block__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 24px;
  text-wrap: balance;
}

.adm-bonus-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.15) 0%,
    rgba(10, 22, 40, 0) 100%
  );
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.adm-bonus-banner--bottom {
  margin-top: 28px;
  margin-bottom: 0;
}
.adm-bonus-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.adm-bonus-banner__text strong {
  color: var(--c-gold);
  font-size: 1rem;
}
.adm-bonus-banner__text span {
  color: var(--c-text-muted);
  font-size: 0.875rem;
}

.adm-review-form-wrap {
  background: var(--c-bg-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.adm-review-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--c-white);
}
.adm-form-row {
  display: flex;
  gap: 16px;
}
.adm-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  flex: 1;
}
.adm-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.adm-input,
.adm-textarea {
  background: var(--c-navy);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
}
.adm-input:focus,
.adm-textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}
.adm-input::placeholder,
.adm-textarea::placeholder {
  color: var(--c-text-muted);
  opacity: 0.7;
}
.adm-textarea {
  resize: vertical;
  min-height: 100px;
}
.adm-textarea--sm {
  min-height: 70px;
}

.adm-ratings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  background: var(--c-navy);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
}
.adm-param-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  flex: 1;
}
.adm-param-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  min-width: 120px;
}
.adm-star-picker {
  display: flex;
  gap: 4px;
}
.adm-sp-star {
  font-size: 1.4rem;
  color: var(--c-border);
  transition:
    color var(--transition),
    transform var(--transition);
  padding: 0 2px;
}
.adm-sp-star:hover,
.adm-sp-star.active {
  color: var(--c-gold);
}
.adm-sp-star:hover {
  transform: scale(1.2);
}

.adm-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 20px;
  text-align: center;
}
.adm-form-success__icon {
  color: var(--c-green);
  animation: scaleIn 0.4s ease;
}
.adm-form-success h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--c-white);
}
.adm-form-success p {
  color: var(--c-text-muted);
  max-width: 400px;
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.adm-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.adm-review-card {
  background: var(--c-bg-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.adm-review-card:hover {
  border-color: rgba(212, 160, 23, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.adm-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.adm-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.adm-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}
.adm-review-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-navy-light);
  color: var(--c-text-muted);
}
.adm-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.adm-review-author-name {
  font-weight: 700;
  color: var(--c-white);
  font-size: 0.95rem;
}
.adm-review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.adm-flag {
  border-radius: 2px;
  flex-shrink: 0;
}
.adm-review-date {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.adm-review-rating-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.adm-review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.adm-review-stars {
  display: flex;
  gap: 2px;
}
.adm-review-score {
  font-weight: 700;
  color: var(--c-gold);
  font-size: 0.9rem;
}
.adm-rating-details-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.adm-rating-details-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.adm-rating-details {
  background: var(--c-navy);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 6px;
  min-width: 220px;
}
.adm-rating-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(30, 48, 96, 0.5);
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.adm-rating-detail-row:last-child {
  border-bottom: none;
}
.adm-mini-stars {
  display: flex;
  gap: 2px;
}
.adm-mini-stars .adm-star {
  font-size: 0.9rem;
}

.adm-review-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.adm-review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.adm-source-link {
  color: var(--c-gold);
  font-weight: 500;
}
.adm-source-link:hover {
  color: var(--c-gold-light);
}

.adm-review-body {
  margin-bottom: 16px;
  position: relative;
}
.adm-review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-text);
}
.adm-review-text.is-truncated {
  max-height: 5.5em;
  overflow: hidden;
  position: relative;
}
.adm-review-text.is-truncated::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5em;
  background: linear-gradient(transparent, var(--c-bg-card2));
}
.adm-review-expand {
  color: var(--c-gold);
  font-size: 0.82rem;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-weight: 600;
}
.adm-review-expand:hover {
  color: var(--c-gold-light);
}

.adm-pros-cons {
  display: flex;
  gap: 16px;
  margin: 14px 0;
  flex-wrap: wrap;
}
.adm-pros,
.adm-cons {
  flex: 1;
  min-width: 140px;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.adm-pros {
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.adm-cons {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.adm-pros__title,
.adm-cons__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.adm-pros__title {
  color: var(--c-green);
}
.adm-cons__title {
  color: var(--c-red);
}
.adm-pros__list li,
.adm-cons__list li {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--c-text-muted);
  padding: 2px 0;
}
.adm-pro-item::before {
  content: "+ ";
  color: var(--c-green);
  font-weight: 700;
}
.adm-con-item::before {
  content: "− ";
  color: var(--c-red);
  font-weight: 700;
}

.adm-review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}
.adm-media-thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  transition: opacity var(--transition);
}
.adm-media-thumb:hover img {
  opacity: 0.85;
}

.adm-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.adm-review-votes {
  display: flex;
  gap: 8px;
}
.adm-vote-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.82rem;
  transition: all var(--transition);
}
.adm-vote-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.adm-like-btn.voted {
  border-color: var(--c-green);
  color: var(--c-green);
  background: rgba(34, 197, 94, 0.08);
}
.adm-dislike-btn.voted {
  border-color: var(--c-red);
  color: var(--c-red);
  background: rgba(239, 68, 68, 0.08);
}
.adm-reply-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.82rem;
  transition: all var(--transition);
}
.adm-reply-toggle:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.adm-reply-form {
  margin-top: 14px;
  padding: 14px;
  background: var(--c-navy);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}
.adm-reply-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.adm-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.adm-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  text-align: left;
}
.adm-compare-table th,
.adm-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.875rem;
  vertical-align: middle;
}
.adm-compare-table th {
  background: var(--c-navy-mid);
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.adm-compare-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
}
.adm-compare-table tr:last-child td {
  border-bottom: none;
}
.adm-compare--highlight {
  background: rgba(212, 160, 23, 0.06);
  border-left: 2px solid var(--c-gold) !important;
  border-right: 2px solid var(--c-gold) !important;
}
.adm-compare-table th.adm-compare--highlight {
  border-top: 2px solid var(--c-gold);
}
.adm-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
}
.adm-score--high {
  background: rgba(34, 197, 94, 0.15);
  color: var(--c-green);
  border: 2px solid rgba(34, 197, 94, 0.4);
}
.adm-score--mid {
  background: rgba(245, 158, 11, 0.12);
  color: var(--c-amber);
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.adm-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border: 1px solid var(--c-border);
}
.adm-video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.adm-review-content .adm-content-body {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  margin-top: 24px;
}
.adm-author-card {
  margin-bottom: 24px;
}
.adm-author-info {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--c-navy);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}
.adm-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-navy-light);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  flex-shrink: 0;
}
.adm-author-name {
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 2px;
}
.adm-author-role {
  font-size: 0.78rem;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.adm-author-bio {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.adm-author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: 500;
}
.adm-author-link:hover {
  color: var(--c-gold-light);
}

.adm-content-body h2,
.adm-content-body h3,
.adm-content-body h4 {
  font-family: var(--font-head);
  color: var(--c-white);
  margin: 24px 0 12px;
  line-height: 1.3;
}
.adm-content-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
}
.adm-content-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.adm-content-body h4 {
  font-size: 1rem;
  font-weight: 700;
}
.adm-content-body p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--c-text);
}
.adm-content-body ul,
.adm-content-body ol {
  margin: 0 0 16px 20px;
}
.adm-content-body ul {
  list-style: disc;
}
.adm-content-body ol {
  list-style: decimal;
}
.adm-content-body li {
  margin-bottom: 6px;
  line-height: 1.6;
  color: var(--c-text);
}
.adm-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.adm-content-body table th,
.adm-content-body table td {
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
  font-size: 0.875rem;
}
.adm-content-body table th {
  background: var(--c-navy-mid);
  color: var(--c-text-muted);
  font-weight: 600;
}
.adm-content-body table td {
  background: var(--c-navy);
  color: var(--c-text);
}
.adm-content-body strong {
  color: var(--c-white);
  font-weight: 700;
}
.adm-content-body a {
  color: var(--c-gold);
  font-weight: 500;
}
.adm-content-body blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 18px;
  margin: 16px 0;
  background: rgba(212, 160, 23, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--c-text-muted);
}

.adm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adm-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.adm-faq-item.is-open {
  border-color: rgba(212, 160, 23, 0.35);
}
.adm-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-bg-card2);
  transition:
    background var(--transition),
    color var(--transition);
}
.adm-faq-q:hover {
  background: var(--c-navy-light);
  color: var(--c-gold);
}
.adm-faq-item.is-open .adm-faq-q {
  color: var(--c-gold);
  background: var(--c-navy-light);
}
.adm-faq-arrow {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.adm-faq-item.is-open .adm-faq-arrow {
  transform: rotate(180deg);
}
.adm-faq-a {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: var(--c-navy);
}
.adm-faq-a div {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.adm-faq-item.is-open .adm-faq-a {
  max-height: 300px;
  padding: 0 18px;
}

.adm-footer {
  background: var(--c-navy);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 0;
}
.adm-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.adm-footer__top {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.adm-footer__brand {
  max-width: 280px;
  flex-shrink: 0;
}
.adm-footer__logo {
  margin-bottom: 14px;
}
.adm-footer__desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.adm-footer__nav {
  display: flex;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
}
.adm-footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.adm-footer__nav-col li a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.adm-footer__nav-col li a:hover {
  color: var(--c-gold);
}
.adm-footer__nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}
.adm-footer__trust {
  padding: 20px 0;
  border-top: 1px solid var(--c-border);
  margin-bottom: 20px;
}
.adm-footer__trust-title {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.adm-footer__trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.adm-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.adm-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  text-align: center;
}
.adm-footer__legal p {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}
.adm-footer__geo {
  font-size: 0.73rem !important;
}
.adm-footer__copy {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 12px;
}

.adm-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.adm-widget.is-visible {
  transform: translateY(0);
}
.adm-widget__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 100%;
  padding: 12px 20px;
  background: var(--c-navy-mid);
  border-top: 2px solid var(--c-gold);
  flex-wrap: wrap;
}
.adm-widget__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.adm-widget__text strong {
  color: var(--c-gold);
  font-size: 0.95rem;
}
.adm-widget__text span {
  color: var(--c-text-muted);
  font-size: 0.8rem;
}
.adm-widget__btn {
  background: var(--c-gold);
  color: var(--c-navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.adm-widget__btn:hover {
  background: var(--c-gold-light);
  color: var(--c-navy);
}
.adm-widget__close {
  color: var(--c-text-muted);
  font-size: 1.2rem;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition);
}
.adm-widget__close:hover {
  color: var(--c-text);
}

.adm-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.adm-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.adm-modal__box {
  position: relative;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.adm-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--c-text-muted);
  font-size: 1.3rem;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition);
}
.adm-modal__close:hover {
  color: var(--c-text);
}
.adm-modal__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 20px;
}
.adm-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.adm-modal__row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 48, 96, 0.6);
  font-size: 0.875rem;
}
.adm-modal__row:last-child {
  border-bottom: none;
}
.adm-modal__row dt {
  color: var(--c-text-muted);
  min-width: 160px;
  flex-shrink: 0;
}
.adm-modal__row dd {
  color: var(--c-text);
}

.adm-score-bar-inner[style*="87%"] {
  background-position: right 13% center;
}
.adm-score-bar-inner[style*="74%"] {
  background-position: right 26% center;
}
.adm-score-bar-inner[style*="30%"] {
  background-position: left center;
}

.wp-block-separator {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
  display: none;
}
.elementor-hidden {
  display: none;
}
.wc-notice {
  display: none;
}
.yoast-seo-hide {
  display: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .adm-info-row {
    flex-direction: column;
  }
  .adm-card-tile {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .adm-tile__logo-wrap {
    flex: 1 0 100%;
  }
}
@media (max-width: 768px) {
  .adm-header__reviews-count,
  .adm-header__review-btn {
    display: none;
  }
  .adm-burger {
    display: flex;
  }
  .adm-nav:not(.is-open) {
    display: none;
  }
  .adm-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: var(--c-navy) !important;
    z-index: 160;
    padding: 24px 16px;
    overflow-y: auto;
  }
  .adm-nav.is-open .adm-nav__list {
    flex-direction: column;
    gap: 4px;
  }
  .adm-nav.is-open .adm-nav__link {
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--c-text);
    width: 100%;
  }
  .adm-nav.is-open .adm-nav__link:hover {
    background: var(--c-navy-light);
    color: var(--c-gold);
  }
}

@media (max-width: 480px) {
  .adm-hero__title {
    font-size: 1.75rem;
  }
  .adm-hero__sub {
    font-size: 0.95rem;
  }
  .adm-hero__cta {
    flex-direction: column;
  }
  .adm-hero__cta .adm-btn {
    width: 100%;
    justify-content: center;
  }
  .adm-block__title {
    font-size: 1.2rem;
  }
  .adm-header__actions .adm-btn--ghost {
    display: none;
  }
  .adm-ratings-grid {
    flex-direction: column;
  }
  .adm-param-rating {
    min-width: auto;
  }
  .adm-toc-tabs {
    gap: 6px;
  }
  .adm-toc-tab {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
}

.adm-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 120;
}
.adm-nav-backdrop.is-visible {
  display: block;
}
