:root {
  --ax-bg: #111320;
  --ax-bg2: #181b2e;
  --ax-bg3: #1f2340;
  --ax-surface: #252943;
  --ax-border: #2d3258;
  --ax-text: #e8ecf5;
  --ax-text-muted: #8892b0;
  --ax-text-dim: #555e80;
  --ax-primary: #e8a020;
  --ax-primary-dark: #c88010;
  --ax-accent: #d94f2b;
  --ax-gold: #f0b429;
  --ax-green: #27ae60;
  --ax-red: #e74c3c;
  --ax-radius: 12px;
  --ax-radius-sm: 8px;
  --ax-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Montserrat", system-ui, sans-serif;
  background-color: var(--ax-bg);
  color: var(--ax-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--ax-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--ax-primary-dark);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
.ax-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ax-primary);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--ax-radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.ax-skip-link:focus {
  top: 1rem;
}

.ax-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.ax-section {
  padding: 4rem 0;
}
.ax-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ax-text);
  margin-bottom: 1rem;
  text-wrap: balance;
  letter-spacing: -0.02em;
}
.ax-section-subtitle {
  color: var(--ax-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ax-card {
  background: var(--ax-bg2);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius);
  padding: 1.75rem;
  box-shadow: var(--ax-shadow);
}

.ax-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--ax-radius-sm);
  padding: 0.65rem 1.4rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.3;
  text-decoration: none;
}
.ax-btn:focus-visible {
  outline: 3px solid var(--ax-primary);
  outline-offset: 2px;
}
.ax-btn-register {
  background: var(--ax-accent);
  color: #fff;
  border-color: var(--ax-accent);
}
.ax-btn-register:hover {
  background: #bf3f22;
  border-color: #bf3f22;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 79, 43, 0.35);
}
.ax-btn-login {
  background: var(--ax-primary);
  color: #000;
  border-color: var(--ax-primary);
}
.ax-btn-login:hover {
  background: var(--ax-primary-dark);
  border-color: var(--ax-primary-dark);
  color: #000;
  transform: translateY(-1px);
}
.ax-btn-outline {
  background: transparent;
  color: var(--ax-primary);
  border-color: var(--ax-primary);
}
.ax-btn-outline:hover {
  background: var(--ax-primary);
  color: #000;
  transform: translateY(-1px);
}
.ax-btn-ghost {
  background: transparent;
  color: var(--ax-text-muted);
  border-color: var(--ax-border);
}
.ax-btn-ghost:hover {
  background: var(--ax-bg3);
  color: var(--ax-text);
}
.ax-btn-hero {
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: var(--ax-radius);
}
.ax-btn-full {
  width: 100%;
  justify-content: center;
}
.ax-btn-sm {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
}
.ax-btn-cta {
  margin-top: 1.25rem;
}

.ax-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ax-bg2);
  border-bottom: 1px solid var(--ax-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.ax-header {
  width: 100%;
}
.ax-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: nowrap;
}
.ax-header-logo {
  flex-shrink: 0;
}
.ax-header-logo img {
  height: 40px;
  width: auto;
}
.ax-header-nav-wrap {
  flex: 1;
  overflow: hidden;
}
.ax-nav {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ax-nav::-webkit-scrollbar {
  display: none;
}
.ax-nav-list {
  display: flex;
  gap: 0.25rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.ax-nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ax-text-muted);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: var(--ax-radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.ax-nav-link:hover {
  color: var(--ax-text);
  background: var(--ax-bg3);
}
.ax-nav-link svg {
  flex-shrink: 0;
}
.ax-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.ax-review-count {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ax-gold);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.ax-review-count-num {
  font-size: 0.85rem;
}
.ax-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  border-radius: var(--ax-radius-sm);
  transition: background 0.2s;
}
.ax-burger:hover {
  background: var(--ax-bg3);
}
.ax-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ax-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.ax-burger.ax-burger-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ax-burger.ax-burger-open span:nth-child(2) {
  opacity: 0;
}
.ax-burger.ax-burger-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.ax-mobile-menu {
  display: none;
  background: var(--ax-bg2);
  border-bottom: 1px solid var(--ax-border);
  padding: 1rem 1.25rem 1.25rem;
  position: sticky;
  top: 57px;
  z-index: 190;
}
.ax-mobile-menu.ax-mobile-menu-open {
  display: block;
}
.ax-mobile-nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.ax-mobile-nav-link {
  display: block;
  color: var(--ax-text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--ax-radius-sm);
  border: 1px solid var(--ax-border);
  transition: all 0.2s;
  text-align: center;
}
.ax-mobile-nav-link:hover {
  color: var(--ax-text);
  background: var(--ax-bg3);
  border-color: var(--ax-primary);
}
.ax-mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.ax-hero-section {
  padding: 0;
}
.ax-hero-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7;
  min-height: 320px;
}
.ax-slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ax-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}
.ax-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.ax-slide-active .ax-slide-bg {
  transform: scale(1.04);
}
.ax-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 19, 32, 0.85) 40%,
    rgba(17, 19, 32, 0.1) 100%
  );
}
.ax-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.ax-slide-inner {
  max-width: 600px;
  padding: 2rem 0;
}
.ax-slide-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ax-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}
.ax-slide-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-wrap: balance;
}
.ax-slide-text {
  color: rgba(232, 236, 245, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  max-width: 440px;
}
.ax-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 19, 32, 0.7);
  color: var(--ax-text);
  border: 1px solid var(--ax-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.ax-slider-btn:hover {
  background: var(--ax-primary);
  border-color: var(--ax-primary);
  color: #000;
}
.ax-slider-prev {
  left: 1rem;
}
.ax-slider-next {
  right: 1rem;
}
.ax-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.ax-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 236, 245, 0.35);
  transition: all 0.2s;
  border: none;
}
.ax-dot.ax-dot-active {
  background: var(--ax-primary);
  width: 24px;
  border-radius: 4px;
}

.ax-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  align-items: start;
}
.ax-rating-summary-block {
  position: sticky;
  top: 80px;
}
.ax-block-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ax-text-muted);
  margin-bottom: 1.25rem;
}
.ax-overall-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ax-border);
}
.ax-score-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ax-gold);
  line-height: 1;
  flex-shrink: 0;
}
.ax-stars-large {
  display: flex;
  gap: 3px;
  margin-bottom: 0.25rem;
}
.ax-score-right {
}
.ax-score-based {
  font-size: 0.75rem;
  color: var(--ax-text-muted);
}
.ax-star {
  fill: var(--ax-border);
}
.ax-star.ax-star-on {
  fill: var(--ax-gold);
}
.ax-star.ax-star-half {
  fill: url(#halfStar);
}
.ax-rbar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.ax-rbar-label {
  font-size: 0.75rem;
  color: var(--ax-text-muted);
  width: 60px;
  flex-shrink: 0;
  text-align: right;
}
.ax-rbar-track {
  flex: 1;
  height: 6px;
  background: var(--ax-bg3);
  border-radius: 3px;
  overflow: hidden;
}
.ax-rbar-fill {
  height: 100%;
  background: var(--ax-gold);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.ax-rbar-fill-mid {
  background: #e8a020;
}
.ax-rbar-fill-low {
  background: var(--ax-red);
}
.ax-rbar-count {
  font-size: 0.75rem;
  color: var(--ax-text-muted);
  width: 28px;
  flex-shrink: 0;
}
.ax-casino-info-block {
}
.ax-casino-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ax-border);
}
.ax-casino-info-title {
  font-weight: 700;
  color: var(--ax-text);
  font-size: 1.1rem;
}
.ax-casino-params {
  margin-bottom: 1.25rem;
}
.ax-param-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--ax-border);
}
.ax-param-row:last-child {
  border-bottom: none;
}
.ax-param-key {
  font-size: 0.8rem;
  color: var(--ax-text-muted);
  flex: 0 0 160px;
  font-weight: 600;
}
.ax-param-val {
  font-size: 0.85rem;
  color: var(--ax-text);
  font-weight: 500;
  flex: 1;
}
.ax-highlight-val {
  color: var(--ax-gold);
  font-weight: 700;
}
.ax-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.ax-badge-license {
  background: rgba(39, 174, 96, 0.15);
  color: var(--ax-green);
  border: 1px solid rgba(39, 174, 96, 0.3);
}
.ax-providers-block,
.ax-payments-block {
  margin-bottom: 1rem;
}
.ax-providers-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ax-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.ax-provider-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ax-provider-pill {
  background: var(--ax-bg3);
  border: 1px solid var(--ax-border);
  color: var(--ax-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.ax-more-info-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ax-primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.ax-more-info-btn:hover {
  color: var(--ax-primary-dark);
}
.ax-more-info-btn svg {
  transition: transform 0.2s;
}
.ax-more-info-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.ax-toc-section {
  padding: 0;
}
.ax-toc-block {
  border-radius: 0;
  border-left: none;
  border-right: none;
  padding: 1rem 1.75rem;
}
.ax-toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ax-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.ax-toc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ax-toc-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-bg3);
  color: var(--ax-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--ax-border);
  transition: all 0.2s;
}
.ax-toc-tab:hover,
.ax-toc-tab.ax-toc-active {
  background: var(--ax-surface);
  color: var(--ax-primary);
  border-color: var(--ax-primary);
}

.ax-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.ax-bonus-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ax-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.ax-bonus-featured {
  border-color: var(--ax-primary);
  background: linear-gradient(
    135deg,
    rgba(232, 160, 32, 0.08) 0%,
    var(--ax-bg2) 60%
  );
}
.ax-bonus-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--ax-primary);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ax-bonus-icon {
  color: var(--ax-primary);
  margin-bottom: 1rem;
}
.ax-bonus-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ax-text);
}
.ax-bonus-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ax-gold);
  margin-bottom: 0.6rem;
}
.ax-bonus-desc {
  font-size: 0.82rem;
  color: var(--ax-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.ax-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ax-game-category-card {
  text-align: center;
  transition: transform 0.2s;
}
.ax-game-category-card:hover {
  transform: translateY(-3px);
}
.ax-game-cat-icon {
  color: var(--ax-primary);
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.ax-game-cat-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.ax-game-cat-count {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ax-gold);
  margin-bottom: 0.5rem;
}
.ax-game-cat-desc {
  font-size: 0.8rem;
  color: var(--ax-text-muted);
  line-height: 1.55;
}

.ax-leave-review-section {
  background: var(--ax-bg2);
}
.ax-leave-review-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.ax-review-form-block {
  position: relative;
}
.ax-review-form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ax-review-form-success.ax-form-success-visible {
  display: flex;
}
.ax-success-icon {
  color: var(--ax-green);
}
.ax-review-form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
.ax-review-form-success p {
  color: var(--ax-text-muted);
}
.ax-review-form {
}
.ax-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ax-form-group {
  margin-bottom: 1.25rem;
}
.ax-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ax-text-muted);
  margin-bottom: 0.45rem;
}
.ax-required {
  color: var(--ax-red);
}
.ax-form-input,
.ax-form-textarea {
  display: block;
  width: 100%;
  background: var(--ax-bg3);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius-sm);
  color: var(--ax-text);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  resize: vertical;
}
.ax-form-input:focus,
.ax-form-textarea:focus {
  outline: none;
  border-color: var(--ax-primary);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.12);
}
.ax-form-input::placeholder,
.ax-form-textarea::placeholder {
  color: var(--ax-text-dim);
}
.ax-ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--ax-bg3);
  border-radius: var(--ax-radius-sm);
  padding: 1rem;
  border: 1px solid var(--ax-border);
}
.ax-rating-param {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ax-rating-param-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ax-text-muted);
}
.ax-star-picker {
  display: flex;
  gap: 2px;
}
.ax-sp-star {
  font-size: 1.3rem;
  color: var(--ax-border);
  transition: color 0.15s;
  line-height: 1;
}
.ax-sp-star:hover,
.ax-sp-star.ax-sp-on {
  color: var(--ax-gold);
}
.ax-btn-submit {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

.ax-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ax-review-card {
  background: var(--ax-bg2);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.ax-review-card:hover {
  border-color: var(--ax-primary);
}
.ax-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ax-review-author-block {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.ax-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ax-border);
}
.ax-review-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ax-primary);
  color: #000;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ax-review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ax-review-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ax-text);
}
.ax-review-country {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--ax-text-muted);
}
.ax-review-date {
  font-size: 0.75rem;
  color: var(--ax-text-dim);
}
.ax-review-rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.ax-rating-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ax-rating-badge {
  background: var(--ax-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.ax-stars {
  display: flex;
  gap: 2px;
}
.ax-rating-details-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ax-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0;
  transition: color 0.2s;
}
.ax-rating-details-toggle:hover {
  color: var(--ax-primary-dark);
}
.ax-rating-details-toggle svg {
  transition: transform 0.2s;
}
.ax-rating-details-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.ax-rating-details {
  display: none;
  background: var(--ax-bg3);
  border-radius: var(--ax-radius-sm);
  padding: 0.85rem;
  border: 1px solid var(--ax-border);
  min-width: 240px;
  margin-top: 0.35rem;
}
.ax-rating-details.ax-visible {
  display: block;
}
.ax-rating-detail-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}
.ax-rating-detail-row:last-child {
  margin-bottom: 0;
}
.ax-rating-detail-label {
  font-size: 0.72rem;
  color: var(--ax-text-muted);
  width: 100px;
  flex-shrink: 0;
}
.ax-rating-detail-bar {
  flex: 1;
  height: 5px;
  background: var(--ax-border);
  border-radius: 3px;
  overflow: hidden;
}
.ax-rating-detail-fill {
  height: 100%;
  background: var(--ax-gold);
  border-radius: 3px;
}
.ax-rating-detail-val {
  font-size: 0.72rem;
  color: var(--ax-text-muted);
  width: 28px;
  flex-shrink: 0;
}
.ax-review-source {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--ax-text-muted);
  margin-bottom: 0.75rem;
}
.ax-source-link {
  color: var(--ax-primary);
  font-weight: 600;
  border-bottom: 1px dashed var(--ax-primary);
  transition: color 0.2s;
}
.ax-source-link:hover {
  color: var(--ax-primary-dark);
}
.ax-review-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ax-text);
  margin-bottom: 0.65rem;
}
.ax-review-text-collapsed {
  max-height: 90px;
  overflow: hidden;
  position: relative;
}
.ax-review-text-collapsed.ax-text-expanded {
  max-height: none;
}
.ax-review-text-collapsed:not(.ax-text-expanded)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--ax-bg2));
}
.ax-review-expand-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ax-primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.ax-review-expand-btn:hover {
  color: var(--ax-primary-dark);
}
.ax-review-expand-btn svg {
  transition: transform 0.2s;
}
.ax-review-expand-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.ax-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--ax-bg3);
  border-radius: var(--ax-radius-sm);
  border: 1px solid var(--ax-border);
}
.ax-pros-label,
.ax-cons-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ax-pros-label {
  color: var(--ax-green);
}
.ax-cons-label {
  color: var(--ax-red);
}
.ax-pros-list,
.ax-cons-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ax-pro-item,
.ax-con-item {
  font-size: 0.8rem;
  color: var(--ax-text-muted);
  padding-left: 0.5rem;
  line-height: 1.5;
}
.ax-pro-item::before {
  content: "+ ";
  color: var(--ax-green);
  font-weight: 700;
}
.ax-con-item::before {
  content: "− ";
  color: var(--ax-red);
  font-weight: 700;
}
.ax-review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.75rem 0;
}
.ax-media-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--ax-border);
  transition: opacity 0.2s;
}
.ax-media-thumb:hover img {
  opacity: 0.8;
}
.ax-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ax-border);
}
.ax-vote-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ax-vote-label {
  font-size: 0.75rem;
  color: var(--ax-text-dim);
}
.ax-vote-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ax-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--ax-border);
  transition: all 0.2s;
}
.ax-vote-btn:hover,
.ax-vote-btn.ax-voted {
  background: var(--ax-bg3);
}
.ax-like-btn:hover,
.ax-like-btn.ax-voted {
  color: var(--ax-green);
  border-color: var(--ax-green);
}
.ax-dislike-btn:hover,
.ax-dislike-btn.ax-voted {
  color: var(--ax-red);
  border-color: var(--ax-red);
}
.ax-reply-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ax-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--ax-border);
  transition: all 0.2s;
}
.ax-reply-toggle-btn:hover {
  color: var(--ax-primary);
  border-color: var(--ax-primary);
  background: var(--ax-bg3);
}
.ax-reply-form {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ax-border);
}
.ax-reply-form.ax-reply-open {
  display: block;
}
.ax-reply-form-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ax-reply-textarea {
  width: 100%;
  background: var(--ax-bg3);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius-sm);
  color: var(--ax-text);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  resize: vertical;
}
.ax-reply-textarea:focus {
  outline: none;
  border-color: var(--ax-primary);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.12);
}
.ax-reply-form-actions {
  display: flex;
  gap: 0.6rem;
}

.ax-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 820px;
  margin: 0 auto;
}
.ax-faq-item {
  background: var(--ax-bg2);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.ax-faq-item:has(.ax-faq-question[aria-expanded="true"]) {
  border-color: var(--ax-primary);
}
.ax-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ax-text);
  transition: background 0.2s;
}
.ax-faq-question:hover {
  background: var(--ax-bg3);
}
.ax-faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--ax-primary);
}
.ax-faq-question[aria-expanded="true"] .ax-faq-arrow {
  transform: rotate(180deg);
}
.ax-faq-answer {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.ax-faq-answer:not([aria-hidden="true"]) {
  max-height: 400px;
  padding: 0 1.4rem 1.2rem;
}
.ax-faq-answer p {
  color: var(--ax-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.ax-comparison-wrap {
  overflow: hidden;
}
.ax-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ax-comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.ax-comparison-table th,
.ax-comparison-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--ax-border);
  text-align: left;
  vertical-align: middle;
}
.ax-comparison-table thead th {
  background: var(--ax-bg3);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ax-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ax-comparison-table tbody tr:nth-child(even) {
  background: var(--ax-bg3);
}
.ax-comparison-table tbody tr:hover {
  background: var(--ax-surface);
}
.ax-col-featured {
  background: rgba(232, 160, 32, 0.06) !important;
  border-color: rgba(232, 160, 32, 0.3) !important;
  font-weight: 600;
}
.ax-compare-logo {
  font-weight: 800;
  color: var(--ax-text);
  font-size: 0.85rem;
}
.ax-compare-rating-mini {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ax-gold);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.ax-cell-yes {
  color: var(--ax-green);
  font-weight: 700;
}
.ax-cell-no {
  color: var(--ax-text-dim);
}
.ax-cell-partial {
  color: var(--ax-primary);
}

.ax-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.ax-advantage-card {
  transition:
    transform 0.2s,
    border-color 0.2s;
  cursor: default;
}
.ax-advantage-card:hover {
  transform: translateY(-2px);
  border-color: var(--ax-primary);
}
.ax-adv-icon {
  color: var(--ax-primary);
  margin-bottom: 0.85rem;
}
.ax-advantage-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.ax-advantage-card p {
  font-size: 0.78rem;
  color: var(--ax-text-muted);
  line-height: 1.55;
}

.ax-text-review-section {
  background: var(--ax-bg2);
}
.ax-text-review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}
.ax-text-review-content {
}
.ax-review-text-body {
  color: var(--ax-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.ax-review-text-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ax-text);
  margin: 1.5rem 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--ax-border);
}
.ax-review-text-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ax-text);
  margin: 1.25rem 0 0.5rem;
}
.ax-review-text-body p {
  margin-bottom: 1rem;
}
.ax-review-text-body ul,
.ax-review-text-body ol {
  list-style: initial;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.ax-review-text-body li {
  margin-bottom: 0.3rem;
  line-height: 1.6;
}
.ax-review-text-body ol {
  list-style: decimal;
}
.ax-review-text-body strong {
  color: var(--ax-text);
  font-weight: 700;
}
.ax-review-text-body a {
  color: var(--ax-primary);
  border-bottom: 1px dashed var(--ax-primary);
}
.ax-review-text-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.82rem;
}
.ax-review-text-body th,
.ax-review-text-body td {
  border: 1px solid var(--ax-border);
  padding: 0.55rem 0.8rem;
  text-align: left;
}
.ax-review-text-body th {
  background: var(--ax-bg3);
  font-weight: 700;
  color: var(--ax-text);
}
.ax-review-text-body blockquote {
  border-left: 3px solid var(--ax-primary);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--ax-text-muted);
  font-style: italic;
}
.ax-author-sidebar {
  position: sticky;
  top: 80px;
}
.ax-author-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ax-author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ax-primary);
}
.ax-author-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ax-text);
}
.ax-author-title {
  font-size: 0.78rem;
  color: var(--ax-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ax-author-bio {
  font-size: 0.78rem;
  color: var(--ax-text-muted);
  line-height: 1.6;
}
.ax-author-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.ax-author-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ax-primary);
  transition: color 0.2s;
}
.ax-author-link:hover {
  color: var(--ax-primary-dark);
}

.ax-footer {
  background: var(--ax-bg2);
  border-top: 1px solid var(--ax-border);
  padding: 3.5rem 0 0;
}
.ax-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--ax-border);
}
.ax-footer-brand {
}
.ax-footer-brand img {
  margin-bottom: 1rem;
}
.ax-footer-desc {
  font-size: 0.8rem;
  color: var(--ax-text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.ax-footer-nav-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ax-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.ax-footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ax-footer-nav-list a {
  font-size: 0.82rem;
  color: var(--ax-text-muted);
  transition: color 0.2s;
}
.ax-footer-nav-list a:hover {
  color: var(--ax-primary);
}
.ax-trust-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.ax-trust-logos a {
  background: var(--ax-bg3);
  border: 1px solid var(--ax-border);
  border-radius: 8px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  min-height: 44px;
}
.ax-trust-logos a:hover {
  border-color: var(--ax-primary);
}
.ax-trust-logos img {
  width: 100%;
  height: 20px;
  object-fit: contain;
  filter: brightness(0.7);
  transition: filter 0.2s;
}
.ax-trust-logos a:hover img {
  filter: brightness(1);
}
.ax-footer-payments {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ax-border);
}
.ax-footer-payments-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ax-text-muted);
  flex-shrink: 0;
}
.ax-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ax-payment-badge {
  background: var(--ax-bg3);
  border: 1px solid var(--ax-border);
  color: var(--ax-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 5px;
}
.ax-footer-legal {
  padding: 1.5rem 0;
  text-align: center;
}
.ax-footer-disclaimer {
  font-size: 0.72rem;
  color: var(--ax-text-dim);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ax-footer-copyright {
  font-size: 0.75rem;
  color: var(--ax-text-dim);
  padding-bottom: 1.5rem;
}

.ax-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--ax-bg2);
  border-top: 2px solid var(--ax-primary);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}
.ax-widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ax-widget-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ax-widget-bonus {
  font-weight: 800;
  color: var(--ax-gold);
  font-size: 1rem;
}
.ax-widget-label {
  font-size: 0.75rem;
  color: var(--ax-text-muted);
}
.ax-widget-btn {
  background: var(--ax-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.75rem;
  border-radius: var(--ax-radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: none;
}
.ax-widget-btn:hover {
  background: #bf3f22;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 79, 43, 0.35);
}

.ax-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.ax-modal-overlay:not([aria-hidden="true"]) {
  display: flex;
}
.ax-modal {
  background: var(--ax-bg2);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  animation: ax-modal-in 0.25s ease;
}
@keyframes ax-modal-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ax-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--ax-text-muted);
  padding: 0.4rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.ax-modal-close:hover {
  color: var(--ax-text);
  background: var(--ax-bg3);
}
.ax-modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--ax-text);
}
.ax-modal-params {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .ax-overview-grid {
    grid-template-columns: 1fr;
  }
  .ax-rating-summary-block {
    position: static;
  }
  .ax-text-review-layout {
    grid-template-columns: 1fr;
  }
  .ax-author-sidebar {
    position: static;
  }
  .ax-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .ax-header-nav-wrap {
    display: none;
  }
  .ax-review-count {
    display: none;
  }
  .ax-burger {
    display: flex;
  }
  .ax-header-actions {
    gap: 0.4rem;
  }
  .ax-header-actions .ax-btn-outline {
    display: none;
  }
  .ax-btn {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
  .ax-form-row-2 {
    grid-template-columns: 1fr;
  }
  .ax-ratings-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ax-review-header {
    flex-direction: column;
  }
  .ax-review-rating-block {
    align-items: flex-start;
  }
  .ax-rating-details {
    min-width: unset;
    width: 100%;
  }
  .ax-review-pros-cons {
    grid-template-columns: 1fr;
  }
  .ax-games-grid {
    grid-template-columns: 1fr;
  }
  .ax-hero-slider {
    aspect-ratio: 16/9;
    min-height: 220px;
  }
  .ax-slide-title {
    font-size: 1.3rem;
  }
  .ax-slide-text {
    display: none;
  }
  .ax-footer-top {
    grid-template-columns: 1fr;
  }
  .ax-widget-text {
    display: none;
  }
  .ax-widget-inner {
    justify-content: center;
  }
  .ax-widget-btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .ax-toc-tabs {
    gap: 0.3rem;
  }
}
@media (max-width: 480px) {
  .ax-section {
    padding: 2.5rem 0;
  }
  .ax-advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ax-ratings-grid {
    grid-template-columns: 1fr;
  }
  .ax-bonuses-grid {
    grid-template-columns: 1fr;
  }
  .ax-modal {
    padding: 1.25rem;
  }
  .ax-param-key {
    flex: 0 0 130px;
  }
}

.ax-reviews-head {
  margin-bottom: 1.75rem;
}
.ax-wp-footer {
  display: none !important;
}

@keyframes ax-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ax-review-card {
  animation: ax-fade-in 0.4s ease both;
}
.ax-review-card:nth-child(2) {
  animation-delay: 0.06s;
}
.ax-review-card:nth-child(3) {
  animation-delay: 0.12s;
}
.ax-review-card:nth-child(4) {
  animation-delay: 0.18s;
}
.ax-review-card:nth-child(5) {
  animation-delay: 0.24s;
}
.ax-review-card:nth-child(6) {
  animation-delay: 0.3s;
}

.ax-card,
.ax-review-card,
.ax-advantage-card {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.ax-card.ax-in-view,
.ax-review-card.ax-in-view,
.ax-advantage-card.ax-in-view {
  opacity: 1;
  transform: translateY(0);
}
.ax7f3k2 {
  display: none;
}
.bx9m1p {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.cx4n8q {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.dx2r5l {
  opacity: 0;
  pointer-events: none;
}
.ex6s0w {
  width: 0;
  height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ax-btn-login {
    display: none;
  }
}
