/* SpinEmpire Australia 10 — Night Outback Theme */
/* Font */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&display=swap');

/* ─── Variables ─── */
:root {
  --au-bg:        #0C0E14;
  --au-bg-card:   #161924;
  --au-bg-alt:    #111318;
  --au-gold:      #F0A500;
  --au-gold-lt:   #FFD166;
  --au-amber:     #E07B00;
  --au-blue:      #2B6CB8;
  --au-text:      #DDE3ED;
  --au-muted:     #7A8BA4;
  --au-border:    rgba(255,255,255,0.07);
  --au-radius:    10px;
  --au-radius-lg: 16px;
  --au-max:       1160px;
  --au-transition: 0.22s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--au-bg);
  color: var(--au-text);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Wrap ─── */
.au-wrap { max-width: var(--au-max); margin: 0 auto; padding: 0 20px; }

/* ─── Buttons ─── */
.au-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--au-transition), box-shadow var(--au-transition), background var(--au-transition);
  white-space: nowrap;
}
.au-btn:hover { transform: translateY(-2px); }
.au-btn--gold {
  background: var(--au-gold);
  color: #0C0E14;
  box-shadow: 0 4px 20px rgba(240,165,0,0.35);
}
.au-btn--gold:hover {
  background: var(--au-gold-lt);
  box-shadow: 0 6px 28px rgba(240,165,0,0.55);
}
.au-btn--outline {
  background: transparent;
  color: var(--au-text);
  border: 1.5px solid var(--au-border);
}
.au-btn--outline:hover {
  border-color: var(--au-gold);
  color: var(--au-gold);
}
.au-btn--lg { padding: 15px 36px; font-size: 16px; }
.au-btn--sm { padding: 9px 20px; font-size: 14px; }
.au-btn--full { width: 100%; }

/* ─── Header ─── */
.au-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,14,20,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--au-border);
}
.au-header__bar {
  max-width: var(--au-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.au-head__left { display: flex; align-items: center; gap: 16px; flex: 1; }
.au-logo img { height: 36px; width: auto; }

.au-nav { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.au-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--au-muted);
  transition: color var(--au-transition), background var(--au-transition);
}
.au-nav a:hover,
.au-nav a.is-active { color: var(--au-text); background: rgba(255,255,255,0.05); }

.au-head__right { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: flex-end; }

/* Burger */
.au-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}
.au-burger span {
  display: block;
  height: 2px;
  background: var(--au-text);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.au-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.au-burger.is-open span:nth-child(2) { opacity: 0; }
.au-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.au-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--au-bg-card);
  border-top: 1px solid var(--au-border);
  padding: 16px 20px;
  gap: 4px;
}
.au-mobile-menu.is-open { display: flex; }
.au-mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--au-text);
  transition: background var(--au-transition);
}
.au-mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.au-mobile-menu .au-btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ─── Hero ─── */
.au-hero {
  position: relative;
  overflow: hidden;
  background: #0a0b10;
  min-height: 580px;
}
.au-hero__link {
  position: absolute;
  inset: 0;
  display: block;
}
.au-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}
.au-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.au-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 60px 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10,11,16,0.88) 45%, rgba(10,11,16,0.3) 80%, transparent 100%);
}
.au-hero__overlay > * { pointer-events: auto; }
.au-hero__overlay .au-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.au-hero__title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  max-width: 580px;
  margin-bottom: 12px;
}
.au-hero__title em { color: var(--au-gold); font-style: normal; }
.au-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 28px;
}
.au-hero__byline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.au-hero__byline-link {
  color: var(--au-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.au-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.au-hero__note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
}

/* ─── Section headers ─── */
.au-section { padding: 72px 0; }
.au-section--alt { background: var(--au-bg-alt); }
.au-section-head { margin-bottom: 48px; }
.au-section-head--center { text-align: center; }
.au-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--au-gold);
  margin-bottom: 10px;
}
.au-section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 12px;
}
.au-section-desc {
  font-size: 16px;
  color: var(--au-muted);
  max-width: 580px;
}
.au-section-head--center .au-section-desc { margin: 0 auto; }

/* ─── Stats bar ─── */
.au-stats {
  background: var(--au-bg-card);
  border-bottom: 1px solid var(--au-border);
  padding: 20px 0;
}
.au-stats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-around;
}
.au-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
  border-right: 1px solid var(--au-border);
}
.au-stat:last-child { border-right: none; }
.au-stat__value {
  font-size: 24px;
  font-weight: 800;
  color: var(--au-gold);
  line-height: 1;
}
.au-stat__label {
  font-size: 12px;
  color: var(--au-muted);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Bonus stages ─── */
.au-stages { display: flex; flex-direction: column; gap: 20px; }
.au-stage-card {
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  overflow: hidden;
  display: flex;
  transition: border-color var(--au-transition), box-shadow var(--au-transition);
}
.au-stage-card:hover {
  border-color: rgba(240,165,0,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.au-stage-card__num {
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 16px;
  background: linear-gradient(180deg, rgba(240,165,0,0.12) 0%, rgba(240,165,0,0.04) 100%);
  border-right: 1px solid var(--au-border);
}
.au-stage-card__num-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--au-gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 10px;
}
.au-stage-card__num-big {
  font-size: 36px;
  font-weight: 800;
  color: rgba(240,165,0,0.25);
  line-height: 1;
}
.au-stage-card__body { flex: 1; padding: 24px 28px; }
.au-stage-card__tag {
  display: inline-block;
  background: rgba(240,165,0,0.12);
  color: var(--au-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.au-stage-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.au-stage-card__desc {
  font-size: 14px;
  color: var(--au-muted);
  margin-bottom: 16px;
}
.au-stage-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.au-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--au-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
}
.au-pill svg { flex-shrink: 0; }
.au-stage-card__terms {
  font-size: 12px;
  color: var(--au-muted);
  border-top: 1px solid var(--au-border);
  padding-top: 12px;
  margin-top: 4px;
}
.au-stage-card__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  min-width: 180px;
  border-left: 1px solid var(--au-border);
  gap: 12px;
  text-align: center;
}
.au-stage-card__match {
  font-size: 42px;
  font-weight: 800;
  color: var(--au-gold);
  line-height: 1;
}
.au-stage-card__match-label {
  font-size: 12px;
  color: var(--au-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ─── Bonus stats table ─── */
.au-bonus-stats {
  list-style: none;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.au-bonus-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--au-border);
}
.au-bonus-stats li:last-child { border-bottom: none; }
.au-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,0.02); }
.au-bonus-stats li span:first-child { color: var(--au-muted); font-weight: 500; }
.au-bonus-stats li span:last-child { font-weight: 700; text-align: right; }

/* ─── Feature grid ─── */
.au-features { display: flex; flex-wrap: wrap; gap: 20px; }
.au-feature {
  flex: 1 1 260px;
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  padding: 28px 24px;
  transition: border-color var(--au-transition), transform var(--au-transition);
}
.au-feature:hover {
  border-color: rgba(240,165,0,0.25);
  transform: translateY(-3px);
}
.au-feature__icon {
  width: 48px;
  height: 48px;
  background: rgba(240,165,0,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.au-feature__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.au-feature__text { font-size: 14px; color: var(--au-muted); line-height: 1.6; }

/* ─── Info sections (two-col) ─── */
.au-info-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.au-info-grid--reverse { flex-direction: row-reverse; }
.au-info-grid__text { flex: 1; }
.au-info-grid__aside {
  flex: 0 0 340px;
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  padding: 28px;
}
.au-info-grid__aside h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--au-border);
}
.au-prose h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 36px 0 14px;
  line-height: 1.3;
}
.au-prose h2:first-child { margin-top: 0; }
.au-prose h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}
.au-prose p { margin-bottom: 16px; color: var(--au-text); font-size: 15px; }
.au-prose p:last-child { margin-bottom: 0; }
.au-prose ul { margin: 0 0 16px 20px; }
.au-prose ul li { margin-bottom: 8px; font-size: 15px; color: var(--au-text); list-style: disc; }
.au-prose strong { color: #fff; font-weight: 700; }

/* ─── Providers ─── */
.au-providers { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.au-provider {
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--au-transition), background var(--au-transition);
  height: 68px;
  min-width: 120px;
}
.au-provider:hover {
  border-color: rgba(240,165,0,0.3);
  background: rgba(255,255,255,0.04);
}
.au-provider img { height: 28px; width: auto; filter: brightness(0.7) grayscale(0.3); transition: filter var(--au-transition); }
.au-provider:hover img { filter: brightness(1) grayscale(0); }

/* ─── FAQ ─── */
.au-faq { display: flex; flex-direction: column; gap: 8px; }
.au-faq-item {
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius);
  overflow: hidden;
  transition: border-color var(--au-transition);
}
.au-faq-item.is-open { border-color: rgba(240,165,0,0.3); }
.au-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--au-transition);
}
.au-faq-q:hover { color: var(--au-gold); }
.au-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--au-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--au-transition), transform var(--au-transition);
}
.au-faq-item.is-open .au-faq-icon {
  border-color: var(--au-gold);
  transform: rotate(45deg);
}
.au-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--au-muted);
  line-height: 1.7;
}
.au-faq-item.is-open .au-faq-a { display: block; }

/* ─── Steps ─── */
.au-steps { display: flex; flex-direction: column; gap: 0; }
.au-step {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.au-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--au-border);
}
.au-step:last-child::before { display: none; }
.au-step:last-child { padding-bottom: 0; }
.au-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240,165,0,0.12);
  border: 2px solid var(--au-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--au-gold);
  position: relative;
  z-index: 1;
}
.au-step__body { padding-top: 8px; }
.au-step__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.au-step__text { font-size: 14px; color: var(--au-muted); }

/* ─── CTA banner ─── */
.au-cta-banner {
  background: linear-gradient(135deg, rgba(240,165,0,0.12) 0%, rgba(43,108,184,0.08) 100%);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: var(--au-radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.au-cta-banner__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.au-cta-banner__desc { font-size: 16px; color: var(--au-muted); margin-bottom: 28px; }
.au-cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.au-cta-banner__note { font-size: 12px; color: var(--au-muted); margin-top: 16px; }

/* ─── Footer testimonials ─── */
.au-testimonials {
  padding: 32px 0;
  border-top: 1px solid var(--au-border);
  border-bottom: 1px solid var(--au-border);
}
.au-testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.au-testimonials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  opacity: 0.55;
  transition: opacity var(--au-transition);
}
.au-testimonials__item:hover { opacity: 1; }
.au-testimonials__item img { height: 22px; width: auto; }

/* ─── Footer ─── */
.au-footer {
  background: var(--au-bg-card);
  border-top: 1px solid var(--au-border);
  padding: 48px 0 32px;
}
.au-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 36px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--au-border);
}
.au-footer__brand { flex: 0 0 240px; }
.au-footer__brand img { height: 36px; margin-bottom: 14px; }
.au-footer__tagline { font-size: 13px; color: var(--au-muted); line-height: 1.6; }
.au-footer__nav { flex: 1; display: flex; flex-wrap: wrap; gap: 32px; }
.au-footer__col { }
.au-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--au-text);
  margin-bottom: 14px;
}
.au-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.au-footer__col a {
  font-size: 14px;
  color: var(--au-muted);
  transition: color var(--au-transition);
}
.au-footer__col a:hover { color: var(--au-gold); }
.au-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.au-footer__legal { font-size: 12px; color: var(--au-muted); line-height: 1.7; max-width: 680px; }
.au-footer__copy { font-size: 12px; color: var(--au-muted); white-space: nowrap; }

/* ─── Page hero (inner pages) ─── */
.au-page-hero {
  position: relative;
  overflow: hidden;
  background: #0a0b10;
  min-height: 400px;
}
.au-page-hero__link {
  position: absolute;
  inset: 0;
  display: block;
}
.au-page-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}
.au-page-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.au-page-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 48px 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10,11,16,0.88) 50%, rgba(10,11,16,0.3) 80%, transparent 100%);
}
.au-page-hero__overlay > * { pointer-events: auto; }
.au-page-hero__overlay .au-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.au-page-hero__title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  max-width: 540px;
  margin-bottom: 12px;
}
.au-page-hero__title em { color: var(--au-gold); font-style: normal; }
.au-page-hero__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  margin-bottom: 24px;
}

/* ─── Bonus card (bonuses page) ─── */
.au-bonus-grid { display: flex; flex-direction: column; gap: 24px; }
.au-bonus-card {
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: border-color var(--au-transition), box-shadow var(--au-transition);
}
.au-bonus-card:hover {
  border-color: rgba(240,165,0,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.au-bonus-card__image {
  flex: 0 0 200px;
  background: linear-gradient(135deg, rgba(240,165,0,0.15), rgba(43,108,184,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--au-border);
}
.au-bonus-card__image svg { opacity: 0.9; }
.au-bonus-card__content { flex: 1; padding: 28px; }
.au-bonus-card__stage {
  display: inline-block;
  background: rgba(240,165,0,0.12);
  color: var(--au-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.au-bonus-card__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.au-bonus-card__desc { font-size: 14px; color: var(--au-muted); margin-bottom: 20px; }
.au-bonus-card__terms { font-size: 11px; color: var(--au-muted); margin-bottom: 16px; line-height: 1.5; }

/* ─── Mobile comparison table ─── */
.au-compare {
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  overflow: hidden;
}
.au-compare-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--au-border);
}
.au-compare-row:last-child { border-bottom: none; }
.au-compare-head {
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.au-compare-row div {
  flex: 1;
  padding: 14px 20px;
  font-size: 14px;
  border-right: 1px solid var(--au-border);
}
.au-compare-row div:last-child { border-right: none; }
.au-compare-row div:first-child { color: var(--au-muted); font-size: 13px; font-weight: 600; flex: 0 0 160px; }
.au-compare-yes { color: #4ade80; font-weight: 700; }
.au-compare-no { color: #f87171; font-weight: 700; }

/* ─── Breadcrumb ─── */
.au-breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--au-border);
  background: var(--au-bg-card);
}
.au-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--au-muted);
}
.au-breadcrumb li a { color: var(--au-muted); transition: color var(--au-transition); }
.au-breadcrumb li a:hover { color: var(--au-gold); }
.au-breadcrumb li + li::before { content: '/'; opacity: 0.4; }
.au-breadcrumb li:last-child { color: var(--au-text); }

/* ─── Games grid ─── */
.au-games-section { margin-top: 56px; }
.au-games-cat { margin-bottom: 40px; }
.au-games-cat:last-child { margin-bottom: 0; }
.au-games-cat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.au-games-cat__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.au-games-cat__count {
  font-size: 12px;
  color: var(--au-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--au-border);
  border-radius: 100px;
  padding: 2px 10px;
}
.au-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.au-game-card {
  flex: 0 0 calc(25% - 9px);
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius);
  overflow: hidden;
  transition: border-color var(--au-transition), transform var(--au-transition), box-shadow var(--au-transition);
  cursor: default;
}
.au-game-card:hover {
  border-color: rgba(240,165,0,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.au-game-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.au-game-card__info {
  padding: 10px 12px;
}
.au-game-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.au-game-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(240,165,0,0.12);
  color: var(--au-gold);
}
.au-game-card__badge--live { background: rgba(74,222,128,0.1); color: #4ade80; }
.au-game-card__badge--jackpot { background: rgba(168,85,247,0.12); color: #c084fc; }
.au-game-card__badge--crash { background: rgba(59,130,246,0.12); color: #60a5fa; }

@media (max-width: 960px) {
  .au-game-card { flex: 0 0 calc(33.33% - 8px); }
}

/* ─── Stage collapse ─── */
.au-stage-card--collapsible { flex-direction: column; }
.au-stage-card__toggle {
  cursor: pointer;
  user-select: none;
  flex-direction: row;
  align-items: center;
  min-width: unset;
  writing-mode: initial;
  padding: 18px 24px;
  border-right: none;
  border-bottom: none;
  gap: 12px;
  transition: background .2s;
}
.au-stage-card__toggle:hover { background: rgba(255,255,255,0.03); }
.au-stage-card__num-text { flex-shrink: 0; }
.au-stage-card__summary {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--au-text);
  opacity: 0.7;
}
.au-stage-card__chevron {
  color: var(--au-muted);
  transition: transform .3s;
  flex-shrink: 0;
}
.au-stage-card--collapsible:not(.au-stage-card--collapsed) .au-stage-card__chevron { transform: rotate(180deg); }
.au-stage-card__content {
  display: flex;
  flex: 1;
  border-top: 1px solid var(--au-border);
}
.au-stage-card--collapsed .au-stage-card__content { display: none; }
.au-stage-card--collapsible .au-stage-card__side {
  border-left: 1px solid var(--au-border);
  border-top: none;
}

/* ─── Game card link ─── */
a.au-game-card { display: block; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
a.au-game-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); border-color: rgba(240,165,0,0.4); }

/* ─── Payment logos ─── */
.au-pay-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.au-pay-logo { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--au-border); border-radius: 6px; padding: 6px 10px; transition: border-color .2s, background .2s; }
.au-pay-logo:hover { border-color: rgba(240,165,0,0.35); background: rgba(255,255,255,0.07); }
.au-pay-logo svg { display: block; }
@media (max-width: 600px) {
  .au-game-card { flex: 0 0 calc(50% - 6px); }
}

/* ─── Player Reviews ─── */
.au-reviews__summary {
  font-size: 15px;
  color: var(--au-muted);
  margin-bottom: 32px;
}
.au-reviews__summary strong { color: var(--au-gold); font-size: 18px; }
.au-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.au-review-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  background: var(--au-bg-card);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-lg);
  padding: 20px;
}
.au-review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.au-review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.au-review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--au-text);
  line-height: 1.3;
}
.au-review-card__date {
  font-size: 12px;
  color: var(--au-muted);
  margin-top: 2px;
}
.au-review-card__stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
}
.au-review-card__text {
  font-size: 14px;
  color: rgba(221,227,237,0.8);
  line-height: 1.6;
}

/* ─── Author page ─── */
.au-author-page { max-width: 760px; margin: 0 auto; padding: 64px 20px; }
.au-author-page__header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.au-author-page__photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid var(--au-border); flex-shrink: 0; }
.au-author-page h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #fff; margin-bottom: 6px; }
.au-author-page__role { font-size: 15px; color: var(--au-gold); font-weight: 600; margin-bottom: 0; }
.au-author-page__bio p { font-size: 16px; line-height: 1.75; color: var(--au-text); margin-bottom: 16px; }
.au-author-page__back { display: inline-block; margin-top: 32px; font-size: 14px; color: var(--au-gold); text-decoration: underline; text-underline-offset: 2px; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .au-nav { display: none; }
  .au-burger { display: flex; }
  .au-info-grid, .au-info-grid--reverse { flex-direction: column; }
  .au-info-grid__aside { flex: unset; width: 100%; }
  .au-stage-card { flex-direction: column; overflow: visible; }
  .au-stage-card__num:not(.au-stage-card__toggle) { flex-direction: row; min-width: unset; padding: 14px 20px; border-right: none; border-bottom: 1px solid var(--au-border); writing-mode: initial; }
  .au-stage-card__num-text { writing-mode: initial; transform: none; margin-top: 0; margin-left: 8px; }
  .au-stage-card__content { flex-direction: column; }
  .au-stage-card__side { border-left: none; border-top: 1px solid var(--au-border); flex-direction: row; flex-wrap: wrap; min-width: unset; width: 100%; justify-content: space-between; align-items: center; padding: 16px 20px; gap: 10px; overflow: visible; }
  .au-stage-card--collapsible .au-stage-card__side { border-top: 1px solid var(--au-border); }
  .au-stage-card__side .au-btn { flex-shrink: 0; white-space: nowrap; }
  .au-bonus-card { flex-direction: column; }
  .au-bonus-card__image { flex: unset; height: 120px; border-right: none; border-bottom: 1px solid var(--au-border); }
  .au-cta-banner { padding: 40px 24px; }
  .au-footer__brand { flex: 0 0 100%; }
  .au-compare-row div:first-child { flex: 0 0 120px; }
}

@media (max-width: 600px) {
  .au-section { padding: 48px 0; }
  .au-stats__grid { justify-content: flex-start; }
  .au-stat { padding: 8px 14px; }
  .au-stat:last-child { border-right: 1px solid var(--au-border); }
  .au-head__right .au-btn--outline { display: none; }
  .au-feature { flex: 1 1 100%; }
  .au-compare-row div:first-child { flex: 0 0 100px; font-size: 12px; padding: 10px 12px; }
  .au-compare-row div { font-size: 13px; padding: 10px 14px; }
  .au-footer__top { flex-direction: column; gap: 28px; }

  /* Hero mobile — полный тёмный градиент, высота под контент */
  .au-hero { min-height: 520px; }
  .au-hero__overlay {
    background: linear-gradient(180deg, rgba(10,11,16,0.55) 0%, rgba(10,11,16,0.92) 40%, rgba(10,11,16,0.92) 100%);
    justify-content: flex-end;
    padding-bottom: 36px;
  }
  .au-hero__title { font-size: 22px; max-width: 100%; }
  .au-hero__subtitle { font-size: 14px; max-width: 100%; margin-bottom: 20px; }
  .au-hero__actions { flex-direction: column; align-items: stretch; }
  .au-hero__actions .au-btn { text-align: center; justify-content: center; }

  .au-page-hero { min-height: 340px; }
  .au-page-hero__overlay {
    background: linear-gradient(180deg, rgba(10,11,16,0.4) 0%, rgba(10,11,16,0.9) 50%, rgba(10,11,16,0.9) 100%);
    justify-content: flex-end;
    padding-bottom: 28px;
  }
  .au-page-hero__title { font-size: 20px; max-width: 100%; }
  .au-page-hero__subtitle { font-size: 13px; max-width: 100%; }
}
