:root {
  --clr-bg: #020100;
  --clr-header: #090111;
  --clr-btn-login: #0b80dc;
  --clr-btn-reg: #a8c94e;
  --clr-text: #e8e6f0;
  --clr-text-muted: #a09ab8;
  --clr-accent: #0b80dc;
  --clr-gold: #f5c518;
  --clr-border: #1e1630;
  --clr-card: #0d0920;
  --clr-card2: #110e22;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
}
a:hover {
  color: #3da0f0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.b9f3k-section {
  padding: 60px 0;
}

.p4m1v-hidden {
  display: none !important;
}
.j6z8w-ghost {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.r3t9n-dummy {
  height: 0;
  overflow: hidden;
}

.az-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #1a1030;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.az-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.az-header__logo img {
  height: 44px;
  width: auto;
}

.az-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.az-header__nav a {
  color: var(--clr-text);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.az-header__nav a:hover {
  color: #fff;
  background: rgba(11, 128, 220, 0.15);
}

.az-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.az-header__online {
  font-size: 12px;
  color: #a8c94e;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.az-header__online-dot {
  width: 7px;
  height: 7px;
  background: #a8c94e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.az-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.az-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: 0.3s;
}

.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-header__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  padding: 12px 16px 20px;
  border-top: 1px solid #1a1030;
}

.az-header__mobile-nav.active {
  display: flex;
}

.az-header__mobile-nav a {
  color: var(--clr-text);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #1a1030;
}

.az-header__mobile-nav a:last-child {
  border-bottom: none;
}

.btn-login {
  background: var(--clr-btn-login);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-login:hover {
  background: #0a6cbf;
  transform: translateY(-1px);
  color: #fff;
}

.btn-reg {
  background: var(--clr-btn-reg);
  color: #1a1a1a;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-reg:hover {
  background: #94b640;
  transform: translateY(-1px);
  color: #1a1a1a;
}

.btn-primary {
  background: var(--clr-btn-login);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #0a6cbf;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 128, 220, 0.4);
  color: #fff;
}

.btn-bonus {
  background: var(--clr-btn-reg);
  color: #1a1a1a;
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-bonus:hover {
  background: #94b640;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 201, 78, 0.4);
  color: #1a1a1a;
}

.az-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #010009;
}

.az-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  z-index: 0;
}

.az-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 1, 0, 0.85) 0%,
    rgba(9, 1, 17, 0.6) 100%
  );
  z-index: 1;
}

.az-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 700px;
}

.az-hero__badge {
  display: inline-block;
  background: rgba(168, 201, 78, 0.15);
  border: 1px solid var(--clr-btn-reg);
  color: var(--clr-btn-reg);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.az-hero__title {
  font-size: clamp(30px, 6vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.az-hero__title span {
  color: var(--clr-btn-reg);
}

.az-hero__subtitle {
  font-size: 18px;
  color: #c8c0e0;
  margin-bottom: 36px;
  line-height: 1.5;
}

.az-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── INFO TABLE ── */
.az-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.az-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  text-align: left;
}

.az-info-table th,
.az-info-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 15px;
}

.az-info-table th {
  background: #0d0920;
  color: var(--clr-text-muted);
  font-weight: 600;
  width: 42%;
  white-space: nowrap;
}

.az-info-table td {
  background: var(--clr-card);
  color: var(--clr-text);
}

.az-info-table tr:last-child th,
.az-info-table tr:last-child td {
  border-bottom: none;
}

.az-info-table tr:hover td {
  background: #13102a;
}

.az-section-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.az-section-desc {
  color: var(--clr-text-muted);
  font-size: 16px;
  margin-bottom: 36px;
}

.az-section-head {
  margin-bottom: 36px;
}

.az-advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.az-adv-card {
  flex: 1 1 240px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

.az-adv-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
  box-shadow: 0 8px 28px rgba(11, 128, 220, 0.18);
}

.az-adv-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.az-adv-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.az-adv-card__text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

/* ── WINNERS ── */
.az-winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.az-winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  text-align: left;
}

.az-winners-table th {
  background: #0d0920;
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.az-winners-table td {
  background: var(--clr-card);
  padding: 11px 16px;
  font-size: 14px;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
}

.az-winners-table tr:last-child td {
  border-bottom: none;
}

.az-winners-table tr:hover td {
  background: #13102a;
}

.az-win-place {
  font-weight: 700;
  color: var(--clr-gold);
}
.az-win-nick {
  color: #fff;
  font-weight: 600;
}
.az-win-amount {
  color: var(--clr-btn-reg);
  font-weight: 700;
}

.az-win-place-1 {
  color: #ffd700;
}
.az-win-place-2 {
  color: #c0c0c0;
}
.az-win-place-3 {
  color: #cd7f32;
}

/* ── SLOT MINI-GAME ── */
.az-slot {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.az-slot__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.az-slot__sub {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}

.az-slot__reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.az-slot__reel {
  width: 80px;
  height: 90px;
  background: #0d0920;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}

.az-slot__reel.spinning {
  border-color: var(--clr-accent);
  animation: reel-shake 0.1s infinite;
}

@keyframes reel-shake {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.az-slot__btn {
  background: linear-gradient(135deg, #0b80dc, #0a5faf);
  color: #fff;
  border: none;
  padding: 14px 44px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-block;
  margin-bottom: 20px;
}

.az-slot__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 128, 220, 0.5);
}
.az-slot__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.az-slot__result {
  display: none;
  margin-top: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  animation: fade-in 0.4s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.az-slot__result.win {
  display: block;
  background: rgba(168, 201, 78, 0.12);
  border: 1px solid var(--clr-btn-reg);
}

.az-slot__result.lose {
  display: block;
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid #cc3333;
}

.az-slot__result-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.az-slot__result.win .az-slot__result-title {
  color: var(--clr-btn-reg);
}
.az-slot__result.lose .az-slot__result-title {
  color: #e04444;
}

.az-slot__result-text {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

/* ── CONTENT AREA ── */
.az-content-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.az-content-block h1,
.az-content-block h2,
.az-content-block h3,
.az-content-block h4,
.az-content-block h5,
.az-content-block h6 {
  color: #fff;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.az-content-block h1 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 0;
}
.az-content-block h2 {
  font-size: 22px;
  font-weight: 700;
}
.az-content-block h3 {
  font-size: 18px;
  font-weight: 700;
}
.az-content-block h4 {
  font-size: 16px;
  font-weight: 600;
}

.az-content-block p {
  margin-bottom: 14px;
  color: var(--clr-text);
  line-height: 1.7;
}

.az-content-block a {
  color: var(--clr-accent);
}
.az-content-block a:hover {
  color: #3da0f0;
}

.az-content-block ul,
.az-content-block ol {
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--clr-text);
}

.az-content-block li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.az-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  overflow-x: auto;
  display: block;
}

.az-content-block table th,
.az-content-block table td {
  border: 1px solid var(--clr-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}

.az-content-block table th {
  background: #0d0920;
  color: var(--clr-text-muted);
  font-weight: 600;
}
.az-content-block table td {
  background: var(--clr-card2);
}

.az-content-block blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 10px 18px;
  margin: 14px 0;
  background: rgba(11, 128, 220, 0.07);
  color: #c0c0d8;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.az-content-block img {
  border-radius: var(--radius-sm);
  margin: 12px 0;
}

.az-content-block hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 22px 0;
}

/* ── REVIEWS ── */
.az-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.az-review-card {
  flex: 1 1 280px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}

.az-review-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
}

.az-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.az-review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border);
  flex-shrink: 0;
}

.az-review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.az-review-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}

.az-review-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--clr-gold);
}

.az-review-card__text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.az-review-form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  max-width: 560px;
}

.az-review-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.az-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.az-form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.az-form-field input,
.az-form-field textarea {
  background: #0d0920;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.az-form-field input:focus,
.az-form-field textarea:focus {
  border-color: var(--clr-accent);
}

.az-form-success {
  display: none;
  background: rgba(168, 201, 78, 0.12);
  border: 1px solid var(--clr-btn-reg);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--clr-btn-reg);
  font-weight: 600;
  margin-top: 14px;
  animation: fade-in 0.3s ease;
}

/* ── AUTHOR ── */
.az-author {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.az-author__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-accent);
  flex-shrink: 0;
}

.az-author__info {
  flex: 1;
  min-width: 200px;
}

.az-author__name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.az-author__role {
  font-size: 13px;
  color: var(--clr-btn-reg);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.az-author__bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.az-author__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.az-author__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
}

.az-author__links a:hover {
  background: var(--clr-accent);
  color: #fff;
}

/* ── FOOTER ── */
.az-footer {
  background: var(--clr-header);
  border-top: 1px solid #1a1030;
  padding: 48px 0 24px;
}

.az-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}

.az-footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.az-footer__desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  max-width: 260px;
  line-height: 1.6;
}

.az-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.az-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.az-footer__links a {
  color: #a09ab8;
  font-size: 14px;
  transition: color 0.2s;
}

.az-footer__links a:hover {
  color: #fff;
}

.az-footer__payments,
.az-footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.az-footer__pay-badge,
.az-footer__prov-badge {
  background: #0d0920;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #c0c0d8;
  letter-spacing: 0.3px;
}

.az-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}

.az-footer__copy {
  font-size: 12px;
  color: #665e7f;
  line-height: 1.6;
  max-width: 700px;
}

.az-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #090111 0%, #0d0920 100%);
  border-top: 2px solid var(--clr-btn-reg);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
}

.az-widget__text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.az-widget__text span {
  color: var(--clr-btn-reg);
}

.az-widget__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #665e7f;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.az-widget__close:hover {
  color: #fff;
}

body.has-widget {
  padding-bottom: 64px;
}

/* ── DIVIDER ── */
.az-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-border),
    transparent
  );
  margin: 0;
}

/* ── BREADCRUMB ── */
.az-breadcrumb {
  font-size: 13px;
  color: var(--clr-text-muted);
  padding: 10px 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.az-breadcrumb a {
  color: var(--clr-text-muted);
}
.az-breadcrumb a:hover {
  color: #fff;
}
.az-breadcrumb__sep {
  color: #443a5e;
}

.az-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.az-faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.az-faq-item__q {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
}

.az-faq-item__q:hover {
  background: #0d0920;
}

.az-faq-item__q svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.az-faq-item.active .az-faq-item__q svg {
  transform: rotate(180deg);
}

.az-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 20px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.az-faq-item.active .az-faq-item__a {
  max-height: 300px;
  padding: 0 20px 18px;
}

.entry-content,
.wp-block-group,
.elementor-widget-container {
  display: contents;
}
.wp-block-spacer {
  display: none;
}
#wpadminbar {
  display: none !important;
}
.post-thumbnail,
.wp-post-image {
  display: none;
}

@media (max-width: 768px) {
  .az-header__nav {
    display: none;
  }
  .az-burger {
    display: flex;
  }
  .az-hero {
    min-height: 380px;
  }
  .az-hero__content {
    padding: 40px 16px;
  }
  .az-adv-card {
    flex: 1 1 100%;
  }
  .az-footer__top {
    gap: 24px;
  }
  .az-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .az-author__links {
    justify-content: center;
  }
  .az-reviews-grid {
    flex-direction: column;
  }
  .b9f3k-section {
    padding: 40px 0;
  }
  .az-slot__reel {
    width: 68px;
    height: 80px;
    font-size: 34px;
  }
  .az-widget {
    padding: 10px 40px 10px 16px;
  }
}

@media (max-width: 480px) {
  .az-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-bonus {
    width: 100%;
    text-align: center;
  }
  .az-section-title {
    font-size: 20px;
  }
  .az-slot__reels {
    gap: 8px;
  }
  .az-slot__reel {
    width: 58px;
    height: 70px;
    font-size: 28px;
  }
}

/* ── SCROLL ANIMATIONS ── */
.az-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.az-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 8px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.d-flex {
  display: flex;
}
.gap-2 {
  gap: 8px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}

.wc-az8f3 {
  z-index: -9999;
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.yoast-seo-ref-m9x2 {
  display: none;
}
