:root {
  --clr-bg: #0d0f14;
  --clr-surface: #161922;
  --clr-surface2: #1e2330;
  --clr-surface3: #252c3d;
  --clr-gold: #f5c518;
  --clr-gold-dark: #d4a812;
  --clr-green: #22c55e;
  --clr-green-dark: #16a34a;
  --clr-red: #ef4444;
  --clr-red-dark: #b91c1c;
  --clr-text: #e8eaf0;
  --clr-text-muted: #8b93a7;
  --clr-text-dim: #5a6278;
  --clr-border: #2a3148;
  --clr-border-light: #333d55;
  --clr-accent: #3b82f6;
  --clr-accent-dark: #2563eb;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-btn: 0 2px 12px rgba(0, 0, 0, 0.4);
  --transition: 0.22s ease;
  --font-main: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.az-wrapper {
  width: 100%;
  overflow-x: clip;
}
.az-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.az-container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------- TYPOGRAPHY -------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--clr-text);
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}
h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}
h4 {
  font-size: 1.05rem;
}
p {
  margin-bottom: 1rem;
  color: var(--clr-text);
}
p:last-child {
  margin-bottom: 0;
}

/* -------- BUTTONS -------- */
.az-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1.2;
}
.az-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
.az-btn:active {
  transform: translateY(0);
}
.az-btn--gold {
  background: var(--clr-gold);
  color: #0d0f14;
  border-color: var(--clr-gold);
}
.az-btn--gold:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
}
.az-btn--green {
  background: var(--clr-green);
  color: #fff;
  border-color: var(--clr-green);
}
.az-btn--green:hover {
  background: var(--clr-green-dark);
  border-color: var(--clr-green-dark);
}
.az-btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.az-btn--outline:hover {
  background: var(--clr-gold);
  color: #0d0f14;
}
.az-btn--accent {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.az-btn--accent:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
}
.az-btn--sm {
  padding: 7px 16px;
  font-size: 0.8rem;
}
.az-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.az-btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--clr-text);
  border-color: var(--clr-border);
}
.az-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

/* -------- HEADER -------- */
.az-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  backdrop-filter: blur(10px);
}
.az-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.az-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.az-header__logo img {
  height: 40px;
  width: auto;
}
.az-header__logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 0.03em;
}
.az-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.az-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: var(--transition);
}
.az-nav-link:hover,
.az-nav-link.az-active {
  color: var(--clr-gold);
  background: rgba(245, 197, 24, 0.08);
}
.az-nav-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.az-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.az-header__reviews-count {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  background: var(--clr-surface2);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.az-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.az-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}
.az-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.az-burger.active span:nth-child(2) {
  opacity: 0;
}
.az-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.az-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-surface);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 40px;
  gap: 8px;
  overflow-y: auto;
}
.az-mobile-menu.active {
  display: flex;
}
.az-mobile-menu .az-nav-link {
  font-size: 1rem;
  padding: 12px 16px;
}
.az-mobile-menu__sep {
  height: 1px;
  background: var(--clr-border);
  margin: 8px 0;
}
.az-mobile-menu__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* -------- HERO / SLIDER -------- */
.az-hero {
  position: relative;
  overflow: hidden;
}
.az-slider {
  position: relative;
  width: 100%;
  height: 520px;
}
.az-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: var(--clr-surface);
}
.az-slide.active {
  opacity: 1;
}
.az-slide__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.az-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 15, 20, 0.85) 0%,
    rgba(13, 15, 20, 0.5) 60%,
    rgba(13, 15, 20, 0.2) 100%
  );
}
.az-slide__content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  max-width: 520px;
}
.az-slide__title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.az-slide__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.az-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.az-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.az-dot.active {
  background: var(--clr-gold);
  width: 24px;
  border-radius: 4px;
}
.az-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}
.az-slider__arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}
.az-slider__arrow--prev {
  left: 16px;
}
.az-slider__arrow--next {
  right: 16px;
}

/* -------- HERO INFO BLOCK -------- */
.az-hero-info {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 28px 0 0;
}
.az-hero-info__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}
.az-casino-tile {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.az-casino-tile__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.az-casino-tile__logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--clr-border-light);
  flex-shrink: 0;
}
.az-casino-tile__brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
}
.az-casino-tile__lic {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.az-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.az-score-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  min-width: 70px;
}
.az-score-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.az-score-bar {
  flex: 1;
  height: 8px;
  background: var(--clr-surface3);
  border-radius: 4px;
  overflow: hidden;
}
.az-score-bar__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}
.az-casino-tile__bonus {
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
}
.az-casino-tile__bonus-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-bottom: 2px;
}
.az-casino-tile__bonus-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.az-casino-tile__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.az-rating-breakdown {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.az-rating-breakdown__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 16px;
}
.az-rating-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.az-rating-row {
  display: grid;
  grid-template-columns: 28px 1fr 80px 32px;
  align-items: center;
  gap: 10px;
}
.az-rating-row__score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-muted);
}
.az-rating-row__bar {
  height: 8px;
  background: var(--clr-surface3);
  border-radius: 4px;
  overflow: hidden;
}
.az-rating-row__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}
.az-rating-row__label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-align: right;
  white-space: nowrap;
}
.az-rating-row__count {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  text-align: right;
}

/* -------- BONUS TILES -------- */
.az-bonus-tiles {
  padding: 20px 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.az-bonus-tile {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}
.az-bonus-tile:hover {
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}
.az-bonus-tile__icon {
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.az-bonus-tile__label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.az-bonus-tile__val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
}

/* -------- TOC -------- */
.az-toc {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
}
.az-toc__tabs {
  display: flex;
  overflow-x: auto;
  gap: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.az-toc__tabs::-webkit-scrollbar {
  display: none;
}
.az-toc-tab {
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.az-toc-tab:hover {
  color: var(--clr-text);
}
.az-toc-tab.active {
  color: var(--clr-gold);
  border-bottom-color: var(--clr-gold);
}

/* -------- SECTION SPACING -------- */
.az-section {
  padding: 56px 0;
}
.az-section--sm {
  padding: 36px 0;
}
.az-section__header {
  text-align: center;
  margin-bottom: 36px;
}
.az-section__title {
  color: var(--clr-text);
  margin-bottom: 8px;
}
.az-section__sub {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}
.az-divider {
  height: 1px;
  background: var(--clr-border);
  margin: 0;
}

/* -------- LEAVE A REVIEW FORM -------- */
.az-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.az-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.az-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.az-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.az-field input,
.az-field textarea,
.az-field select {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: var(--transition);
  width: 100%;
  resize: vertical;
}
.az-field input:focus,
.az-field textarea:focus,
.az-field select:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
}
.az-field textarea {
  min-height: 110px;
}
.az-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.az-rating-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.az-rating-param {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.az-rating-param label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.az-stars-input {
  display: flex;
  gap: 4px;
}
.az-stars-input span {
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--clr-surface3);
  transition: var(--transition);
  line-height: 1;
}
.az-stars-input span.active,
.az-stars-input span.hover {
  color: var(--clr-gold);
}
.az-form__success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
}
.az-form__success svg {
  width: 48px;
  height: 48px;
  color: var(--clr-green);
  margin: 0 auto 12px;
}
.az-form__success h3 {
  color: var(--clr-green);
  margin-bottom: 8px;
}
.az-form__success p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

/* -------- REVIEW CARDS -------- */
.az-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.az-review-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.az-review-card:hover {
  border-color: var(--clr-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.az-review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.az-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.az-review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border-light);
  flex-shrink: 0;
  background: var(--clr-surface2);
}
.az-review-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.az-review-card__name {
  font-weight: 700;
  font-size: 0.95rem;
}
.az-review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.az-review-card__country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}
.az-review-card__country img {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}
.az-review-card__date {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
}
.az-review-card__rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.az-stars {
  display: flex;
  gap: 2px;
}
.az-star {
  font-size: 1rem;
  color: var(--clr-surface3);
}
.az-star.filled {
  color: var(--clr-gold);
}
.az-star.half {
  color: var(--clr-gold);
  opacity: 0.5;
}
.az-rating-details-btn {
  font-size: 0.75rem;
  color: var(--clr-accent);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.az-rating-details-btn:hover {
  text-decoration: underline;
}
.az-rating-details {
  display: none;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 12px;
}
.az-rating-details.open {
  display: block;
}
.az-rating-details__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.82rem;
}
.az-rating-details__label {
  color: var(--clr-text-muted);
}
.az-rating-details__stars {
  display: flex;
  gap: 2px;
}
.az-rating-details__star {
  font-size: 0.8rem;
  color: var(--clr-surface3);
}
.az-rating-details__star.filled {
  color: var(--clr-gold);
}
.az-review-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.az-review-card__body {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}
.az-review-text {
  overflow: hidden;
}
.az-review-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.az-expand-btn {
  font-size: 0.82rem;
  color: var(--clr-accent);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  padding: 0;
  transition: var(--transition);
}
.az-expand-btn:hover {
  text-decoration: underline;
}
.az-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}
.az-pros,
.az-cons {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.az-pros {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.az-cons {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.az-pros h5,
.az-cons h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.az-pros h5 {
  color: var(--clr-green);
}
.az-cons h5 {
  color: var(--clr-red);
}
.az-pros ul li,
.az-cons ul li {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  padding: 2px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.az-pros ul li::before {
  content: "+";
  color: var(--clr-green);
  font-weight: 700;
  flex-shrink: 0;
}
.az-cons ul li::before {
  content: "−";
  color: var(--clr-red);
  font-weight: 700;
  flex-shrink: 0;
}
.az-review-card__source {
  margin: 8px 0;
  font-size: 0.78rem;
  color: var(--clr-text-dim);
}
.az-review-card__source a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.az-review-media {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.az-review-media img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: var(--transition);
}
.az-review-media img:hover {
  transform: scale(1.05);
}
.az-review-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
  gap: 10px;
}
.az-vote-group {
  display: flex;
  gap: 8px;
}
.az-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.az-vote-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-text);
}
.az-vote-btn.voted-like {
  color: var(--clr-green);
  border-color: var(--clr-green);
  background: rgba(34, 197, 94, 0.08);
}
.az-vote-btn.voted-dislike {
  color: var(--clr-red);
  border-color: var(--clr-red);
  background: rgba(239, 68, 68, 0.08);
}
.az-reply-btn {
  font-size: 0.82rem;
  color: var(--clr-accent);
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  padding: 5px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.az-reply-btn:hover {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.az-reply-form {
  display: none;
  margin-top: 14px;
  padding: 14px;
  background: var(--clr-surface2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
}
.az-reply-form.open {
  display: block;
}
.az-reply-form textarea {
  width: 100%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: inherit;
  font-size: 0.88rem;
  padding: 10px;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 10px;
}
.az-reply-form textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
}
.az-reply-form__actions {
  display: flex;
  gap: 8px;
}

/* -------- FAQ -------- */
.az-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.az-faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.az-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  gap: 12px;
  transition: var(--transition);
}
.az-faq-question:hover {
  background: var(--clr-surface2);
}
.az-faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  flex: 1;
}
.az-faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--clr-gold);
  transition: transform 0.3s ease;
}
.az-faq-item.open .az-faq-icon {
  transform: rotate(45deg);
}
.az-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.az-faq-item.open .az-faq-answer {
  max-height: 500px;
}
.az-faq-answer__inner {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* -------- COMPARISON TABLE -------- */
.az-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.az-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 0.88rem;
}
.az-compare-table th,
.az-compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.az-compare-table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.az-compare-table tr:last-child td {
  border-bottom: none;
}
.az-compare-table tr:hover td {
  background: var(--clr-surface2);
}
.az-compare-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
}
.az-compare-table__casino {
  font-weight: 700;
  color: var(--clr-text);
}
.az-compare-table__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.az-compare-table__badge--best {
  background: rgba(245, 197, 24, 0.15);
  color: var(--clr-gold);
}
.az-compare-table .az-compare-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.az-compare-table .az-compare-stars span {
  font-size: 0.9rem;
}

/* -------- ADVANTAGES -------- */
.az-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.az-advantage {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}
.az-advantage:hover {
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}
.az-advantage__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.az-advantage__icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-gold);
}
.az-advantage__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.az-advantage__desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* -------- CONTENT BLOCK -------- */
.az-content-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.az-content-body h1,
.az-content-body h2,
.az-content-body h3,
.az-content-body h4,
.az-content-body h5,
.az-content-body h6 {
  color: var(--clr-text);
  margin: 1.4em 0 0.6em;
  line-height: 1.3;
}
.az-content-body h2 {
  font-size: 1.4rem;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0.4em;
}
.az-content-body h3 {
  font-size: 1.15rem;
}
.az-content-body p {
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.az-content-body a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.az-content-body ul,
.az-content-body ol {
  margin: 0.8em 0 1em 1.4em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.az-content-body ul {
  list-style: disc;
}
.az-content-body ol {
  list-style: decimal;
}
.az-content-body li {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.az-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.88rem;
}
.az-content-body table th,
.az-content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border-light);
  text-align: left;
}
.az-content-body table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.az-content-body blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 0.5em 1em;
  background: rgba(245, 197, 24, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1em 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.az-content-body img {
  border-radius: var(--radius-sm);
  margin: 1em 0;
}
.az-content-body strong {
  color: var(--clr-text);
  font-weight: 700;
}
.az-content-body hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 1.5em 0;
}
.az-content-body code {
  background: var(--clr-surface2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--clr-gold);
  font-family: monospace;
}

/* -------- AUTHOR -------- */
.az-author {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.az-author__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border-light);
  flex-shrink: 0;
}
.az-author__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.az-author__role {
  font-size: 0.8rem;
  color: var(--clr-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.az-author__bio {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.az-author__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.az-author__link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--clr-accent);
  background: rgba(59, 130, 246, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: var(--transition);
}
.az-author__link:hover {
  background: rgba(59, 130, 246, 0.18);
}

/* -------- FOOTER -------- */
.az-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 40px 0 24px;
}
.az-footer__grid {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.az-footer__logo img {
  height: 36px;
  margin-bottom: 10px;
}
.az-footer__logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.az-footer__tagline {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  margin-top: 4px;
}
.az-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.az-footer__nav a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
}
.az-footer__nav a:hover {
  color: var(--clr-gold);
}
.az-trust-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.az-trust-logo {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.az-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.az-footer__copy {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  text-align: center;
}
.az-footer__legal {
  font-size: 0.73rem;
  color: var(--clr-text-dim);
  text-align: center;
  line-height: 1.6;
}

.az-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #161922 0%, #1e2330 100%);
  border-top: 1px solid var(--clr-gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.az-widget__text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.az-widget__bonus {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-gold);
  flex: 1; /* розтягується і не вилазить */
  min-width: 0; /* дозволяє тексту переноситись */
}
.az-widget__close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition);
}
.az-widget__close:hover {
  background: var(--clr-surface3);
}
body.az-widget-open {
  padding-bottom: 60px;
}
/* -------- LIGHTBOX -------- */
.az-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.az-lightbox.open {
  display: flex;
}
.az-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.az-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------- UTILITIES -------- */
.az-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.az-badge--gold {
  background: rgba(245, 197, 24, 0.12);
  color: var(--clr-gold);
}
.az-badge--green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--clr-green);
}
.az-badge--red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--clr-red);
}
.az-text-center {
  text-align: center;
}
.az-mt-8 {
  margin-top: 8px;
}
.az-mt-12 {
  margin-top: 12px;
}
.az-mt-16 {
  margin-top: 16px;
}
.az-mt-24 {
  margin-top: 24px;
}
.az-mb-24 {
  margin-bottom: 24px;
}
.az-gap-16 {
  gap: 16px;
}

/* -------- WP COMPAT STUBS -------- */
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-separator,
.entry-content,
.post-content,
.site-main,
.wp-site-blocks {
  display: contents;
}
.wp-caption,
.wp-caption-text,
.screen-reader-text,
.alignleft,
.alignright,
.aligncenter,
.wp-block-image {
  display: none;
}
.elementor-widget-container,
.elementor-section,
.elementor-column,
.elementor-element {
  display: contents;
}
#wpadminbar,
.wp-admin-bar,
.mce-toolbar,
.update-nag {
  display: none !important;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
  .az-hero-info__grid {
    grid-template-columns: 1fr;
  }
  .az-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .az-header__nav {
    display: none;
  }
  .az-burger {
    display: flex;
  }
  .az-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .az-slider {
    height: 360px;
  }
  .az-slide__content {
    left: 20px;
    bottom: 60px;
    max-width: 90%;
  }
  .az-slide__title {
    font-size: 1.25rem;
  }
  .az-form__row {
    grid-template-columns: 1fr;
  }
  .az-rating-params {
    grid-template-columns: 1fr;
  }
  .az-pros-cons {
    grid-template-columns: 1fr;
  }
  .az-footer__grid {
    grid-template-columns: 1fr;
  }
  .az-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .az-review-card__header {
    flex-direction: column;
  }
  .az-review-card__rating-block {
    align-items: flex-start;
  }
  .az-author {
    flex-direction: column;
  }
  .az-advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .az-bonus-tiles {
    grid-template-columns: 1fr 1fr;
  }
  .az-section {
    padding: 36px 0;
  }
}
@media (max-width: 480px) {
  .az-widget {
    padding: 8px 12px;
    gap: 8px;
  }
  .az-widget__text {
    display: none;
  }
  .az-widget .az-btn {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

.xq7t3 {
  display: contents;
}
.b8k2n {
  display: contents;
}
.p4r9w {
  display: contents;
}
.m1j6s {
  display: contents;
}
.v5e0c {
  display: contents;
}
.f9d2h,
.k3l8m,
.r7o4p,
.t2u1x,
.n6y5z {
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  width: 1px;
  height: 1px;
}
.az-mobile-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  min-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
  background: var(--clr-surface);
  padding: 80px 24px 40px;
  gap: 8px;
}

.az-advantages-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
}
@media (max-width: 768px) {
  .az-advantages-grid {
    grid-template-columns: 1fr;
  }
}
