:root {
  --adm-navy: #0a1628;
  --adm-navy-light: #112240;
  --adm-navy-card: #0f1e38;
  --adm-gold: #c9a227;
  --adm-gold-light: #e2b93b;
  --adm-gold-pale: #f5e08a;
  --adm-white: #f0f4ff;
  --adm-gray: #8a9bc0;
  --adm-gray-dim: #4a5a7a;
  --adm-green: #1db954;
  --adm-red: #e03e3e;
  --adm-orange: #e07a1a;
  --adm-border: #1e3154;
  --adm-radius: 10px;
  --adm-radius-lg: 16px;
  --adm-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --adm-shadow-card: 0 2px 16px rgba(0, 0, 0, 0.35);
  --adm-transition: 0.22s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Open Sans", system-ui, sans-serif;
  background-color: var(--adm-navy);
  color: var(--adm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--adm-white);
}
a {
  color: var(--adm-gold);
  text-decoration: none;
  transition: color var(--adm-transition);
}
a:hover {
  color: var(--adm-gold-light);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  padding-left: 1.25rem;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input,
textarea,
button,
select {
  font-family: inherit;
}
.adm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.adm-site-wrap {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100vh;
}

.adm-header {
  background: var(--adm-navy-light);
  border-bottom: 1px solid var(--adm-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.adm-hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.adm-hdr-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.adm-logo-link {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--adm-transition);
}
.adm-logo-link:hover {
  opacity: 0.85;
}
.adm-logo-link img {
  width: 140px;
  height: auto;
}
.adm-review-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--adm-gray);
  white-space: nowrap;
}
.adm-rc-num {
  color: var(--adm-gold);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.adm-hdr-nav-wrap {
  display: flex;
  justify-content: center;
}
.adm-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.adm-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--adm-gray);
  transition:
    color var(--adm-transition),
    background var(--adm-transition);
}
.adm-nav-link:hover {
  color: var(--adm-white);
  background: rgba(201, 162, 39, 0.12);
}
.adm-nav-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.adm-hdr-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
.adm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background var(--adm-transition);
}
.adm-burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.adm-burger-line {
  width: 22px;
  height: 2px;
  background: var(--adm-white);
  border-radius: 2px;
  transition:
    transform var(--adm-transition),
    opacity var(--adm-transition);
}
.adm-burger.adm-burger--open .adm-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.adm-burger.adm-burger--open .adm-burger-line:nth-child(2) {
  opacity: 0;
}
.adm-burger.adm-burger--open .adm-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.adm-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 98;
}
.adm-nav-overlay.adm-nav-overlay--visible {
  display: block;
}

.adm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--adm-transition),
    transform var(--adm-transition),
    box-shadow var(--adm-transition);
  white-space: nowrap;
  line-height: 1;
}
.adm-btn:hover {
  transform: translateY(-1px);
}
.adm-btn:active {
  transform: translateY(0);
}
.adm-btn--gold {
  background: linear-gradient(
    135deg,
    var(--adm-gold) 0%,
    var(--adm-gold-light) 100%
  );
  color: #0a1628;
  box-shadow: 0 3px 12px rgba(201, 162, 39, 0.35);
}
.adm-btn--gold:hover {
  box-shadow: 0 5px 20px rgba(201, 162, 39, 0.5);
  color: #0a1628;
}
.adm-btn--outline {
  background: transparent;
  border: 1.5px solid var(--adm-gold);
  color: var(--adm-gold);
}
.adm-btn--outline:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--adm-gold);
}
.adm-btn--ghost {
  background: transparent;
  border: 1.5px solid var(--adm-border);
  color: var(--adm-gray);
}
.adm-btn--ghost:hover {
  border-color: var(--adm-gray);
  color: var(--adm-white);
}
.adm-btn--sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}
.adm-btn--md {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.adm-btn--lg {
  padding: 13px 28px;
  font-size: 1rem;
}

.adm-hero {
  position: relative;
  overflow: hidden;
}
.adm-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/5;
  min-height: 260px;
}
.adm-slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.adm-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.adm-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.adm-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.4) 60%,
    transparent 100%
  );
  display: flex;
  align-items: center;
}
.adm-slide-content {
  padding: 32px 48px;
  max-width: 540px;
}
.adm-slide-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--adm-white);
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.adm-slide-sub {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: rgba(240, 244, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}
.adm-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 22, 40, 0.65);
  border: 1.5px solid rgba(201, 162, 39, 0.4);
  color: var(--adm-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--adm-transition),
    border-color var(--adm-transition);
  z-index: 5;
}
.adm-slider-btn:hover {
  background: rgba(201, 162, 39, 0.25);
  border-color: var(--adm-gold);
}
.adm-slider-btn--prev {
  left: 16px;
}
.adm-slider-btn--next {
  right: 16px;
}
.adm-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.adm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background var(--adm-transition),
    transform var(--adm-transition);
}
.adm-dot--active {
  background: var(--adm-gold);
  transform: scale(1.3);
}

.adm-hero-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.adm-casino-card {
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--adm-shadow-card);
}
.adm-cc-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.adm-cc-logo-wrap img {
  max-width: 140px;
}
.adm-cc-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.adm-cc-score {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--adm-gold);
}
.adm-cc-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--adm-white);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.4;
}
.adm-cc-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adm-rating-summary {
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-lg);
  padding: 24px;
  box-shadow: var(--adm-shadow-card);
}
.adm-rs-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--adm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.adm-rs-total {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.adm-rs-big-score {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--adm-gold);
  line-height: 1;
}
.adm-rs-total-stars {
  display: flex;
}
.adm-rs-count {
  font-size: 0.82rem;
  color: var(--adm-gray);
}
.adm-rs-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adm-rs-row {
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  align-items: center;
  gap: 10px;
}
.adm-rs-label {
  font-size: 0.8rem;
  color: var(--adm-gray);
  text-align: right;
}
.adm-rs-bar-wrap {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
}
.adm-rs-bar {
  height: 100%;
  background: var(--adm-green);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.adm-rs-bar--mid {
  background: var(--adm-gold);
}
.adm-rs-bar--low {
  background: var(--adm-orange);
}
.adm-rs-bar--bad {
  background: var(--adm-red);
}
.adm-rs-num {
  font-size: 0.78rem;
  color: var(--adm-gray);
  font-family: "Montserrat", sans-serif;
}

.adm-main {
  padding: 0;
}
.adm-section {
  padding: 48px 0;
}
.adm-section + .adm-section {
  border-top: 1px solid var(--adm-border);
}
.adm-section-head {
  margin-bottom: 28px;
}
.adm-section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--adm-white);
  margin-bottom: 8px;
}
.adm-section-sub {
  font-size: 0.95rem;
  color: var(--adm-gray);
  line-height: 1.6;
}

.adm-bonus-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.15) 0%,
    rgba(201, 162, 39, 0.05) 100%
  );
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--adm-radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.adm-bb-icon {
  flex-shrink: 0;
}
.adm-bb-text {
  flex: 1;
  min-width: 200px;
}
.adm-bb-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--adm-gold);
  margin-bottom: 4px;
}
.adm-bb-text span {
  font-size: 0.88rem;
  color: var(--adm-gray);
  line-height: 1.5;
}

.adm-review-form-wrap {
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-lg);
  padding: 32px;
  box-shadow: var(--adm-shadow-card);
}
.adm-review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.adm-form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.adm-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adm-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--adm-white);
  font-family: "Montserrat", sans-serif;
}
.adm-form-label span {
  color: var(--adm-gold);
}
.adm-form-input,
.adm-form-textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--adm-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--adm-white);
  font-size: 0.9rem;
  line-height: 1.5;
  transition:
    border-color var(--adm-transition),
    background var(--adm-transition);
  width: 100%;
}
.adm-form-input:focus,
.adm-form-textarea:focus {
  outline: none;
  border-color: var(--adm-gold);
  background: rgba(255, 255, 255, 0.09);
}
.adm-form-input::placeholder,
.adm-form-textarea::placeholder {
  color: var(--adm-gray-dim);
}
.adm-form-input.adm-input--error,
.adm-form-textarea.adm-input--error {
  border-color: var(--adm-red);
}
.adm-field-error {
  font-size: 0.78rem;
  color: var(--adm-red);
  min-height: 1em;
}
.adm-form-textarea {
  resize: vertical;
  min-height: 120px;
}
.adm-ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.adm-rating-param {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  padding: 12px 14px;
}
.adm-rp-label {
  display: block;
  font-size: 0.8rem;
  color: var(--adm-gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.adm-star-picker {
  display: flex;
  gap: 4px;
}
.adm-sp-star {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--adm-gray-dim);
  padding: 0;
  line-height: 1;
  transition:
    color var(--adm-transition),
    transform var(--adm-transition);
}
.adm-sp-star:hover,
.adm-sp-star.adm-sp-star--active {
  color: var(--adm-gold);
}
.adm-sp-star:hover {
  transform: scale(1.15);
}
.adm-form-submit {
  align-self: flex-start;
}
.adm-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  animation: adm-fadeIn 0.4s ease;
}
.adm-form-success h3 {
  color: var(--adm-green);
  font-size: 1.3rem;
}
.adm-form-success p {
  color: var(--adm-gray);
  font-size: 0.9rem;
}

.adm-reviews-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.adm-filter-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--adm-border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: var(--adm-gray);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: all var(--adm-transition);
}
.adm-filter-btn:hover {
  border-color: var(--adm-gold);
  color: var(--adm-gold);
}
.adm-filter-btn--active {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--adm-gold);
  color: var(--adm-gold);
}

.adm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.adm-review-card {
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--adm-shadow-card);
  transition:
    box-shadow var(--adm-transition),
    border-color var(--adm-transition);
}
.adm-review-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 162, 39, 0.25);
}

.adm-rc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.adm-rc-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.adm-rc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--adm-border);
}
.adm-rc-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--adm-navy-light);
  border: 2px solid var(--adm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--adm-gold);
  flex-shrink: 0;
}
.adm-rc-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.adm-rc-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--adm-white);
}
.adm-rc-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--adm-gray);
}
.adm-rc-date {
  font-size: 0.75rem;
  color: var(--adm-gray-dim);
}
.adm-rc-rating-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.adm-rc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.adm-rc-score {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--adm-gold);
}
.adm-rc-score-max {
  font-size: 0.75rem;
  color: var(--adm-gray);
}

.adm-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.adm-star {
  font-size: 1rem;
  color: var(--adm-gray-dim);
  line-height: 1;
}
.adm-star--filled {
  color: var(--adm-gold);
}
.adm-star--half {
  color: var(--adm-gold);
  opacity: 0.5;
}
.adm-stars--lg .adm-star {
  font-size: 1.25rem;
}
.adm-stars--sm .adm-star {
  font-size: 0.85rem;
}

.adm-btn-details {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--adm-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--adm-gray);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: all var(--adm-transition);
}
.adm-btn-details:hover {
  border-color: var(--adm-gold);
  color: var(--adm-gold);
}

.adm-rc-details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  padding: 14px;
  animation: adm-fadeIn 0.25s ease;
}
.adm-rd-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adm-rd-item {
  display: grid;
  grid-template-columns: 140px 1fr 24px;
  align-items: center;
  gap: 8px;
}
.adm-rd-label {
  font-size: 0.78rem;
  color: var(--adm-gray);
}
.adm-rd-bar-wrap {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}
.adm-rd-bar {
  height: 100%;
  background: var(--adm-green);
  border-radius: 4px;
}
.adm-rd-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--adm-gold);
  font-family: "Montserrat", sans-serif;
  text-align: right;
}

.adm-rc-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--adm-gray-dim);
}
.adm-source-link {
  color: var(--adm-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.adm-source-badge {
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.7rem;
  color: var(--adm-gold);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.adm-rc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--adm-white);
  font-family: "Montserrat", sans-serif;
  line-height: 1.35;
}

.adm-rc-body {
  position: relative;
}
.adm-rc-text {
  font-size: 0.88rem;
  color: rgba(240, 244, 255, 0.8);
  line-height: 1.65;
}
.adm-rc-text--collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.adm-rc-text--expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.adm-rc-expand {
  background: none;
  border: none;
  color: var(--adm-gold);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 4px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: color var(--adm-transition);
}
.adm-rc-expand:hover {
  color: var(--adm-gold-light);
}

.adm-rc-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.adm-rc-pros,
.adm-rc-cons {
  border-radius: 8px;
  padding: 10px 12px;
}
.adm-rc-pros {
  background: rgba(29, 185, 84, 0.08);
  border: 1px solid rgba(29, 185, 84, 0.2);
}
.adm-rc-cons {
  background: rgba(224, 62, 62, 0.08);
  border: 1px solid rgba(224, 62, 62, 0.2);
}
.adm-pros-title,
.adm-cons-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
}
.adm-pros-title {
  color: var(--adm-green);
}
.adm-cons-title {
  color: var(--adm-red);
}
.adm-pros-list,
.adm-cons-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.adm-pro-item,
.adm-con-item {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(240, 244, 255, 0.75);
}

.adm-rc-media {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.adm-rc-media-link {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--adm-border);
  transition: border-color var(--adm-transition);
}
.adm-rc-media-link:hover {
  border-color: var(--adm-gold);
}
.adm-rc-media-img {
  width: 110px;
  height: 74px;
  object-fit: cover;
  display: block;
}

.adm-rc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  border-top: 1px solid var(--adm-border);
}
.adm-rc-votes {
  display: flex;
  align-items: center;
  gap: 8px;
}
.adm-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--adm-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--adm-gray);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: all var(--adm-transition);
}
.adm-vote-btn--like:hover {
  border-color: var(--adm-green);
  color: var(--adm-green);
  background: rgba(29, 185, 84, 0.1);
}
.adm-vote-btn--like.adm-voted {
  border-color: var(--adm-green);
  color: var(--adm-green);
  background: rgba(29, 185, 84, 0.12);
}
.adm-vote-btn--dislike:hover {
  border-color: var(--adm-red);
  color: var(--adm-red);
  background: rgba(224, 62, 62, 0.1);
}
.adm-vote-btn--dislike.adm-voted {
  border-color: var(--adm-red);
  color: var(--adm-red);
  background: rgba(224, 62, 62, 0.12);
}
.adm-vote-count {
  min-width: 16px;
  text-align: center;
}
.adm-btn-reply {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--adm-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--adm-gray);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: all var(--adm-transition);
}
.adm-btn-reply:hover {
  border-color: var(--adm-gold);
  color: var(--adm-gold);
}

.adm-reply-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: adm-fadeIn 0.25s ease;
}
.adm-reply-textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--adm-border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--adm-white);
  font-size: 0.85rem;
  resize: vertical;
  width: 100%;
  min-height: 80px;
  transition: border-color var(--adm-transition);
}
.adm-reply-textarea:focus {
  outline: none;
  border-color: var(--adm-gold);
}
.adm-reply-form-actions {
  display: flex;
  gap: 8px;
}

.adm-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adm-faq-item {
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius);
  overflow: hidden;
  transition: border-color var(--adm-transition);
}
.adm-faq-item:hover {
  border-color: rgba(201, 162, 39, 0.3);
}
.adm-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--adm-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--adm-transition);
}
.adm-faq-q::after {
  content: "›";
  font-size: 1.4rem;
  color: var(--adm-gold);
  transition: transform var(--adm-transition);
  flex-shrink: 0;
  line-height: 1;
}
.adm-faq-q[aria-expanded="true"] {
  color: var(--adm-gold);
}
.adm-faq-q[aria-expanded="true"]::after {
  transform: rotate(90deg);
}
.adm-faq-a {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: rgba(240, 244, 255, 0.75);
  line-height: 1.7;
  animation: adm-fadeIn 0.2s ease;
}
.adm-faq-a p {
  margin-bottom: 0;
}

.adm-comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--adm-radius-lg);
  border: 1px solid var(--adm-border);
}
.adm-comparison-table {
  min-width: 560px;
  border-collapse: collapse;
}
.adm-comparison-table th,
.adm-comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--adm-border);
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.4;
}
.adm-comparison-table thead tr {
  background: var(--adm-navy-light);
}
.adm-comparison-table th {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--adm-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.adm-comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.adm-comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.adm-ct-highlight {
  background: rgba(201, 162, 39, 0.07);
  font-weight: 600;
  color: var(--adm-white);
}
.adm-ct-yes {
  color: var(--adm-green);
  font-weight: 600;
}

.adm-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.adm-scr-item {
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius);
  overflow: hidden;
  transition:
    transform var(--adm-transition),
    border-color var(--adm-transition);
}
.adm-scr-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.3);
}
.adm-scr-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.adm-scr-caption {
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--adm-gray);
  text-align: center;
}
.adm-scr-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}
.adm-scr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--adm-transition);
}
.adm-scr-dot--active {
  background: var(--adm-gold);
  transform: scale(1.3);
}

.adm-content-section {
}
.adm-content-body {
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-lg);
  padding: 32px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240, 244, 255, 0.85);
}
.adm-content-body h2 {
  font-size: 1.4rem;
  color: var(--adm-white);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--adm-border);
}
.adm-content-body h2:first-child {
  margin-top: 0;
}
.adm-content-body h3 {
  font-size: 1.15rem;
  color: var(--adm-white);
  margin: 22px 0 10px;
}
.adm-content-body h4 {
  font-size: 1rem;
  color: var(--adm-gold);
  margin: 18px 0 8px;
}
.adm-content-body p {
  margin-bottom: 14px;
}
.adm-content-body p:last-child {
  margin-bottom: 0;
}
.adm-content-body ul,
.adm-content-body ol {
  margin: 10px 0 14px;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adm-content-body li {
  line-height: 1.6;
}
.adm-content-body ul li {
  list-style-type: disc;
}
.adm-content-body ol li {
  list-style-type: decimal;
}
.adm-content-body a {
  color: var(--adm-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.adm-content-body a:hover {
  color: var(--adm-gold-light);
}
.adm-content-body strong,
.adm-content-body b {
  color: var(--adm-white);
  font-weight: 700;
}
.adm-content-body em,
.adm-content-body i {
  font-style: italic;
  color: rgba(240, 244, 255, 0.7);
}
.adm-content-body blockquote {
  border-left: 3px solid var(--adm-gold);
  padding: 12px 20px;
  background: rgba(201, 162, 39, 0.07);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: rgba(240, 244, 255, 0.75);
}
.adm-content-body table {
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  overflow: hidden;
  margin: 18px 0;
  font-size: 0.88rem;
}
.adm-content-body table th {
  background: var(--adm-navy-light);
  color: var(--adm-white);
  padding: 10px 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--adm-border);
}
.adm-content-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(30, 49, 84, 0.5);
  color: rgba(240, 244, 255, 0.8);
}
.adm-content-body table tr:last-child td {
  border-bottom: none;
}
.adm-content-body table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.adm-content-body code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  font-family: monospace;
}
.adm-content-body pre {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin: 14px 0;
}
.adm-content-body hr {
  border: none;
  border-top: 1px solid var(--adm-border);
  margin: 24px 0;
}

.adm-author-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--adm-navy-card);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-lg);
  padding: 24px;
  box-shadow: var(--adm-shadow-card);
}
.adm-author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--adm-gold);
  flex-shrink: 0;
}
.adm-author-info {
  flex: 1;
}
.adm-author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--adm-white);
  margin-bottom: 2px;
}
.adm-author-title {
  font-size: 0.82rem;
  color: var(--adm-gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.adm-author-bio {
  font-size: 0.88rem;
  color: rgba(240, 244, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
.adm-author-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.adm-author-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--adm-gray);
  border: 1px solid var(--adm-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 500;
  transition: all var(--adm-transition);
}
.adm-author-link:hover {
  border-color: var(--adm-gold);
  color: var(--adm-gold);
}

.adm-footer {
  background: var(--adm-navy-light);
  border-top: 1px solid var(--adm-border);
  padding: 48px 0 24px;
}
.adm-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.adm-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.adm-footer-brand {
}
.adm-footer-desc {
  font-size: 0.82rem;
  color: var(--adm-gray);
  line-height: 1.6;
  margin-top: 12px;
}
.adm-footer-nav-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--adm-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.adm-footer-nav-col nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.adm-footer-link {
  font-size: 0.85rem;
  color: var(--adm-gray);
  transition: color var(--adm-transition);
}
.adm-footer-link:hover {
  color: var(--adm-white);
}
.adm-footer-trust {
  border-top: 1px solid var(--adm-border);
  padding-top: 24px;
}
.adm-footer-trust-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--adm-gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.adm-footer-trust-logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.adm-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.65;
  transition: opacity var(--adm-transition);
}
.adm-trust-badge:hover {
  opacity: 1;
}
.adm-trust-badge span {
  font-size: 0.68rem;
  color: var(--adm-gray);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.adm-footer-payments {
  border-top: 1px solid var(--adm-border);
  padding-top: 24px;
}
.adm-payment-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.adm-pay-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--adm-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: var(--adm-gray);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.adm-footer-bottom {
  border-top: 1px solid var(--adm-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adm-footer-copyright {
  font-size: 0.82rem;
  color: var(--adm-gray-dim);
}
.adm-footer-legal {
  font-size: 0.75rem;
  color: var(--adm-gray-dim);
  line-height: 1.6;
  max-width: 900px;
}

.adm-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: linear-gradient(
    135deg,
    var(--adm-gold) 0%,
    var(--adm-gold-light) 100%
  );
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.45);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  animation: adm-slideUp 0.5s ease;
}
.adm-widget-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px 12px 16px;
  text-decoration: none;
  gap: 2px;
}
.adm-widget-bonus {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(10, 22, 40, 0.8);
  line-height: 1;
}
.adm-widget-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0a1628;
  line-height: 1.2;
  white-space: nowrap;
}
.adm-widget-close {
  background: rgba(0, 0, 0, 0.15);
  border: none;
  color: #0a1628;
  width: 32px;
  height: 100%;
  min-height: 60px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: background var(--adm-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.adm-widget-close:hover {
  background: rgba(0, 0, 0, 0.25);
}
.adm-widget--hidden {
  display: none;
}

@keyframes adm-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes adm-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.adm-d8k3-unused {
  display: none;
  visibility: hidden;
}
.adm-p7f1-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#adm-invisible-tag-r4x9 {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--adm-border);
  margin: 20px 0;
  display: none;
}
.entry-meta-q2w8 {
  display: none;
}
.elementor-invisible {
  display: none;
}

@media (max-width: 1024px) {
  .adm-hero-info-row {
    grid-template-columns: 1fr;
  }
  .adm-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .adm-hdr-inner {
    grid-template-columns: 1fr auto auto;
  }
  .adm-hdr-nav-wrap {
    display: none;
  }
  .adm-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--adm-navy-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 32px;
    z-index: 99;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--adm-border);
    gap: 4px;
    overflow-y: auto;
  }
  .adm-nav.adm-nav--open {
    right: 0;
  }
  .adm-nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .adm-burger {
    display: flex;
  }
  .adm-hdr-btns .adm-btn--outline {
    display: none;
  }
  .adm-slide-content {
    padding: 20px 24px;
  }
  .adm-slider {
    aspect-ratio: 16/7;
    min-height: 200px;
  }
  .adm-reviews-grid {
    grid-template-columns: 1fr;
  }
  .adm-form-row--2col {
    grid-template-columns: 1fr;
  }
  .adm-rc-pros-cons {
    grid-template-columns: 1fr;
  }
  .adm-screenshots-grid {
    grid-template-columns: 1fr;
    position: relative;
  }
  .adm-scr-item {
    display: none;
  }
  .adm-scr-item.adm-scr-active {
    display: block;
  }
  .adm-scr-slider-nav {
    display: flex;
  }
  .adm-footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .adm-comparison-table th,
  .adm-comparison-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
  .adm-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .adm-author-links {
    justify-content: center;
  }
  .adm-rd-item {
    grid-template-columns: 120px 1fr 24px;
  }
  .adm-hero-info-row {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .adm-ratings-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .adm-footer-top {
    grid-template-columns: 1fr;
  }
  .adm-rs-big-score {
    font-size: 2.2rem;
  }
  .adm-bonus-banner {
    flex-direction: column;
    text-align: center;
  }
  .adm-widget {
    right: 12px;
    bottom: 12px;
  }
  .adm-ratings-grid {
    grid-template-columns: 1fr;
  }
  .adm-section {
    padding: 32px 0;
  }
  .adm-review-form-wrap {
    padding: 20px;
  }
  .adm-content-body {
    padding: 20px;
  }
}
.adm-scr-item:first-child {
  display: block;
}
.wp-block-separator {
  display: none !important;
}
.elementor-invisible {
  visibility: hidden !important;
}
.entry-meta-q2w8 {
  display: none !important;
}
.adm-d8k3-unused,
.adm-p7f1-hidden {
  display: none !important;
}
