:root {
  --gen-primary: #421019;
  --gen-primary-hov: #611a27;
  --gen-primary-soft: #f4e6e9;
  --gen-accent: #31e384;
  --gen-accent-soft: #e3f8ec;
  --gen-hero-from: #52141f;
  --gen-hero-to: #2a090f;
  --gen-hero-mid: #3624a8;
  --gen-bg: #f6f4f4;
  --gen-surface: #ffffff;
  --gen-border: #e0d2d4;
  --gen-text: #241417;
  --gen-text-soft: #806066;
  --gen-gold: #f1b622;
  --gen-signal: #eb811e;
  --gen-pale: #f9f6f6;
}

/* Reset */

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Lexend", system-ui, sans-serif;
  background: var(--gen-bg);
  color: var(--gen-text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

/* Layout */

.gen-frame {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.gen-main {
  padding: 36px 0 48px;
}

.gen-section {
  margin-bottom: 40px;
}

/* Header */

.gen-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-bottom: 3px solid var(--gen-primary);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.gen-nav__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.gen-brand {
  font-weight: 900;
  font-size: 16px;
  color: var(--gen-primary);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.gen-brand span {
  color: var(--gen-accent);
}

.gen-navlinks {
  display: flex;
  gap: 6px;
  list-style: none;
  min-width: 0;
}

.gen-navlinks a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gen-text-soft);
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}

.gen-navlinks a:hover {
  color: var(--gen-primary);
  background: var(--gen-primary-soft);
}

/* Hero */

.gen-hero {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(160deg, var(--gen-hero-from), var(--gen-hero-to));
  padding: 54px 0 58px;
  text-align: center;
  overflow: hidden;
}

.gen-hero__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gen-accent);
  margin-bottom: 14px;
}

.gen-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin: 0 auto 14px;
  line-height: 1.1;
  max-width: 700px;
}

.gen-hero__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 22px;
  line-height: 1.7;
}

.gen-hero__stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.gen-stat {
  text-align: center;
  color: #fff;
}

.gen-stat__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gen-accent);
  line-height: 1;
}

.gen-stat__lbl {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.75;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Section heading */

.gen-section-head {
  margin-bottom: 18px;
}

.gen-section-head h2 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.35;
}

.gen-section-head p {
  font-size: 13px;
  color: var(--gen-text-soft);
}

.gen-updated {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gen-accent);
  background: var(--gen-accent-soft);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 8px;
}

/* Casino ranking */

.gen-ranking {
  width: 100%;
  border: 1px solid var(--gen-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--gen-surface);
}

.gen-card {
  width: 100%;
  background: var(--gen-surface);
  border-bottom: 1px solid var(--gen-border);
  border-radius: 0 !important;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(180px, auto) 82px;
  align-items: center;
  gap: 14px;
  transition: background 0.12s;
}

.gen-card:last-child {
  border-bottom: none;
}

.gen-card:hover {
  background: var(--gen-pale);
}

.gen-card--first {
  background: var(--gen-primary-soft);
}

.gen-card__logo {
  width: 72px !important;
  max-width: 72px;
  min-width: 0;
  flex-shrink: 0;
}

.gen-card__logo img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

.gen-card__info {
  min-width: 0;
}

.gen-card__name {
  font-size: 14px;
  font-weight: 700;
  display: block;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.gen-card__bonus {
  font-size: 12px;
  color: var(--gen-text-soft);
  display: block;
  margin-top: 2px;
  line-height: 1.35;
}

.gen-card__deposit {
  font-size: 11px;
  color: var(--gen-text-soft);
  background: var(--gen-bg);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.gen-card__score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  flex-shrink: 0;
}

.gen-card__score-val {
  font-size: 18px;
  font-weight: 900;
  color: var(--gen-primary);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
}

.gen-card__score-lbl {
  font-size: 9px;
  font-weight: 700;
  color: var(--gen-text-soft);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gen-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gen-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 18px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.gen-card__btn:hover {
  background: var(--gen-primary-hov);
}

/* Article content */

.gen-copy {
  min-width: 0;
}

.gen-copy h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 26px 0 10px;
  line-height: 1.35;
}

.gen-copy h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 18px 0 8px;
  line-height: 1.35;
}

.gen-copy p {
  line-height: 1.75;
  margin-bottom: 14px;
}

.gen-copy ul,
.gen-copy ol {
  padding-left: 20px;
  margin: 10px 0;
}

.gen-copy li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.gen-copy blockquote {
  border-left: 3px solid var(--gen-accent);
  padding: 10px 14px;
  margin: 12px 0;
  opacity: 0.85;
}

.gen-copy code {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

.gen-highlight {
  background: var(--gen-primary-soft);
  border-left: 3px solid var(--gen-primary);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 14px;
}

/* Images */

.gen-casino-img {
  margin: 10px 0 14px;
}

.gen-casino-img img {
  display: block;
  max-width: 180px;
  height: auto;
}

/* Tables */

.gen-copy table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 13px;
  background: #fff;
}

.gen-copy th {
  background: var(--gen-primary);
  color: #fff;
  padding: 8px 12px;
  text-align: left;
  font-weight: 700;
  vertical-align: top;
}

.gen-copy td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--gen-border);
  vertical-align: top;
}

.gen-copy tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.03);
}

/* FAQ */

.gen-faq h2 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 14px;
}

.gen-faq-item {
  background: var(--gen-surface);
  border: 1px solid var(--gen-border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.gen-faq-q {
  padding: 13px 16px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.gen-faq-q::after {
  content: "+";
  font-size: 18px;
  color: var(--gen-primary);
  font-weight: 400;
  flex-shrink: 0;
}

.gen-faq-a {
  padding: 0 16px 13px;
  font-size: 13px;
  color: var(--gen-text-soft);
  line-height: 1.7;
}

/* Footer */

.gen-footer {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, var(--gen-hero-from), var(--gen-hero-to));
  padding: 28px 0;
  overflow: hidden;
}

.gen-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gen-footer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.gen-footer-links {
  display: flex;
  gap: 16px;
  list-style: none;
  flex-wrap: wrap;
}

.gen-footer-links a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.gen-footer-links a:hover {
  color: #fff;
}

/* Mobile */

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .gen-frame {
    max-width: 100%;
    padding: 0 30px;
  }

  .gen-main {
    padding: 34px 0 44px;
  }

  .gen-nav {
    position: relative;
  }

  .gen-nav__inner {
    min-height: 58px;
  }

  .gen-brand {
    font-size: 18px;
    white-space: nowrap;
  }

  .gen-nav nav {
    width: 100%;
  }

  .gen-navlinks {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .gen-navlinks a {
    display: block;
    font-size: 14px;
    padding: 6px 10px;
    background: var(--gen-primary-soft);
  }

  .gen-hero {
    padding: 44px 0 50px;
  }

  .gen-hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.12;
  }

  .gen-hero__sub {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.7;
  }

  .gen-section-head h2 {
    font-size: 31px;
    line-height: 1.35;
  }

  .gen-ranking {
    border-radius: 16px;
  }

  .gen-card {
    grid-template-columns: 94px minmax(0, 1fr);
    grid-template-areas:
      "logo info"
      "logo score"
      "button button";
    gap: 8px 12px;
    padding: 20px 14px;
  }

  .gen-card__logo {
    grid-area: logo;
    width: 78px !important;
    max-width: 78px;
    align-self: center;
  }

  .gen-card__info {
    grid-area: info;
  }

  .gen-card__name {
    font-size: 21px;
    line-height: 1.12;
  }

  .gen-card__score {
    grid-area: score;
    align-items: flex-start;
  }

  .gen-card__score-val {
    font-size: 20px;
    line-height: 1.18;
    max-width: 100%;
  }

  .gen-card__btn {
    grid-area: button;
    width: 100%;
    justify-self: center;
    min-height: 48px;
    font-size: 16px;
    padding: 11px 12px;
    border-radius: 24px;
  }

  .gen-card__deposit {
    display: none;
  }

  .gen-copy h2 {
    font-size: 29px;
    line-height: 1.35;
  }

  .gen-copy h3 {
    font-size: 21px;
  }

  .gen-copy p,
  .gen-copy li {
    font-size: 19px;
    line-height: 1.75;
  }

  .gen-copy ul,
  .gen-copy ol {
    padding-left: 22px;
  }

  .gen-copy table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--gen-border);
    border-radius: 10px;
    background: #fff;
  }

  .gen-copy thead,
  .gen-copy tbody,
  .gen-copy tr {
    width: 100%;
  }

  .gen-copy th,
  .gen-copy td {
    min-width: 145px;
    padding: 13px 14px;
    white-space: normal;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.45;
  }

  .gen-copy th {
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
  }

  .gen-faq h2 {
    font-size: 28px;
  }

  .gen-faq-item {
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .gen-faq-q {
    padding: 17px 18px;
    font-size: 17px;
    line-height: 1.35;
  }

  .gen-faq-a {
    padding: 0 18px 17px;
    font-size: 16px;
    line-height: 1.65;
  }

  .gen-footer {
    padding: 30px 0;
  }

  .gen-footer__row {
    display: block;
  }

  .gen-footer p {
    font-size: 14px;
  }
}

/* Small mobile */

@media (max-width: 520px) {
  .gen-frame {
    padding: 0 30px;
  }

  .gen-brand {
    font-size: 17px;
  }

  .gen-hero h1 {
    font-size: 30px;
  }

  .gen-section-head h2 {
    font-size: 29px;
  }

  .gen-card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 19px 12px;
    gap: 8px 10px;
  }

  .gen-card__logo {
    width: 72px !important;
    max-width: 72px;
  }

  .gen-card__name {
    font-size: 20px;
  }

  .gen-card__score-val {
    font-size: 19px;
  }

  .gen-card__btn {
    min-height: 46px;
    font-size: 15px;
    padding: 10px 11px;
  }

  .gen-copy h2 {
    font-size: 27px;
  }

  .gen-copy p,
  .gen-copy li {
    font-size: 18px;
  }

  .gen-copy th,
  .gen-copy td {
    min-width: 140px;
    font-size: 14px;
    padding: 12px 13px;
  }
}

/* Very small mobile */

@media (max-width: 380px) {
  .gen-frame {
    padding: 0 16px;
  }

  .gen-brand {
    font-size: 16px;
  }

  .gen-hero h1 {
    font-size: 27px;
  }

  .gen-section-head h2 {
    font-size: 25px;
  }

  .gen-card {
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-areas:
      "logo info"
      "logo score"
      "button button";
  }

  .gen-card__logo {
    width: 64px !important;
    max-width: 64px;
  }

  .gen-card__name {
    font-size: 18px;
  }

  .gen-card__score-val {
    font-size: 18px;
  }

  .gen-card__btn {
    width: 100%;
    justify-self: center;
  }

  .gen-copy th,
  .gen-copy td {
    min-width: 132px;
    font-size: 13px;
  }

  .gen-copy p,
  .gen-copy li {
    font-size: 16px;
  }
}


/* === aulive shared upgrades === */
.au-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.au-header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--gen-text-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.au-header-nav a:hover,
.au-header-nav a[aria-current="page"] {
  color: var(--gen-primary);
  background: var(--gen-primary-soft);
}

.au-author-avatar {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gen-primary);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(66, 16, 25, 0.18);
  flex-shrink: 0;
}

.au-meta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 12px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--gen-border);
  border-left: 4px solid var(--gen-accent);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(66,16,25,.06);
  color: var(--gen-text-soft);
  font-size: 13px;
}

.au-meta-card strong {
  color: var(--gen-primary);
}

.au-author-box {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px;
  border: 1px solid var(--gen-border);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, var(--gen-pale));
}

.au-author-name {
  display: block;
  color: var(--gen-primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.au-author-role {
  display: block;
  margin-top: 2px;
  color: var(--gen-text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.au-ranking-section {
  margin-top: 26px;
  margin-bottom: 42px;
}

.au-ranking-title {
  margin: 0 0 6px;
  color: var(--gen-primary);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.au-ranking-note {
  margin: 0 0 14px;
  color: var(--gen-text-soft);
  font-size: 13px;
}

.au-casino-list {
  display: grid;
  gap: 14px;
}

.au-casino-card {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr) 82px 118px;
  gap: 18px;
  align-items: center;
  padding: 18px 18px;
  border: 1px solid var(--gen-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(66,16,25,.06);
}

.au-casino-card:first-child {
  border-color: rgba(49,227,132,.4);
  background: linear-gradient(135deg, #fff, #f6fff9);
}

.au-casino-logo-wrap {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 12px;
  background: var(--gen-pale);
  border: 1px solid rgba(224,210,212,.72);
}

.au-casino-logo-wrap img {
  width: 86px;
  max-height: 54px;
  object-fit: contain;
}

.au-casino-name {
  display: block;
  margin-bottom: 8px;
  color: var(--gen-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.au-casino-bonus {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px dashed var(--gen-signal);
  border-radius: 8px;
  background: #fffaf3;
  color: var(--gen-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.au-casino-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.au-casino-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gen-primary-soft);
  color: var(--gen-primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.au-casino-tags span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gen-accent);
}

.au-rating-badge {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--gen-accent-soft);
  color: var(--gen-primary);
  font-size: 12px;
  font-weight: 900;
}

.au-rating-badge::before {
  content: "★";
  color: var(--gen-signal);
}

.au-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 17px;
  border-radius: 13px;
  background: var(--gen-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: transform .15s ease, background .15s ease;
}

.au-play-btn:hover {
  background: var(--gen-primary-hov);
  transform: translateY(-1px);
}

.au-article-figure {
  margin: 18px 0 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gen-border);
  background: #fff;
  box-shadow: 0 12px 28px rgba(66,16,25,.06);
}

.au-article-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.au-article-figure figcaption {
  padding: 9px 12px;
  color: var(--gen-text-soft);
  font-size: 12px;
  line-height: 1.4;
  background: #fff;
}

.au-brand-figure {
  margin: 8px 0 14px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--gen-border);
  background: #fff;
}

.au-brand-figure img {
  max-width: 170px;
  max-height: 58px;
  object-fit: contain;
}

.au-simulators {
  margin: 44px 0;
}

.au-sim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.au-game-widget {
  border: 1px solid var(--gen-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(66,16,25,.08);
  overflow: hidden;
}

.au-game-head {
  padding: 18px 18px 8px;
}

.au-game-head h2 {
  margin: 0 0 6px;
  color: var(--gen-primary);
  font-size: 21px;
  line-height: 1.2;
}

.au-game-head p {
  margin: 0;
  color: var(--gen-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.au-game-screen {
  margin: 14px 18px;
  padding: 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top right, rgba(49,227,132,.22), transparent 44%), linear-gradient(160deg, var(--gen-hero-from), var(--gen-hero-to));
  color: #fff;
}

.au-game-balance {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.au-wheel-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 18px auto 10px;
}

.au-wheel-pointer {
  position: absolute;
  top: -11px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  color: var(--gen-accent);
  font-size: 24px;
}

.au-wheel {
  width: 100%;
  height: 100%;
  border: 8px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: conic-gradient(#0f0 0 10deg,#111 10deg 20deg,#c82030 20deg 30deg,#111 30deg 40deg,#c82030 40deg 50deg,#111 50deg 60deg,#c82030 60deg 70deg,#111 70deg 80deg,#c82030 80deg 90deg,#111 90deg 100deg,#c82030 100deg 110deg,#111 110deg 120deg,#c82030 120deg 130deg,#111 130deg 140deg,#c82030 140deg 150deg,#111 150deg 160deg,#c82030 160deg 170deg,#111 170deg 180deg,#c82030 180deg 190deg,#111 190deg 200deg,#c82030 200deg 210deg,#111 210deg 220deg,#c82030 220deg 230deg,#111 230deg 240deg,#c82030 240deg 250deg,#111 250deg 260deg,#c82030 260deg 270deg,#111 270deg 280deg,#c82030 280deg 290deg,#111 290deg 300deg,#c82030 300deg 310deg,#111 310deg 320deg,#c82030 320deg 330deg,#111 330deg 340deg,#c82030 340deg 350deg,#111 350deg 360deg);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,.08), 0 10px 20px rgba(0,0,0,.24);
  transition: transform 3s cubic-bezier(.17,.67,.14,1);
}

.au-wheel-result {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--gen-primary);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 6px 15px rgba(0,0,0,.28);
}

.au-game-label {
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
}

.au-controls {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.au-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.au-control {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--gen-border);
  border-radius: 12px;
  background: #fff;
  color: var(--gen-text);
  font: inherit;
  font-weight: 700;
}

.au-game-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--gen-primary);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.au-game-btn:hover { background: var(--gen-primary-hov); }

.au-message {
  min-height: 22px;
  padding: 0 18px 18px;
  color: var(--gen-primary);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.au-bj-table {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(49,227,132,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.au-bj-area + .au-bj-area {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.au-bj-label {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.au-bj-cards {
  min-height: 72px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.au-card {
  width: 50px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--gen-text);
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 6px 12px rgba(0,0,0,.25);
}

.au-card.red { color: #c82030; }
.au-card.hidden { color: transparent; background: repeating-linear-gradient(45deg, var(--gen-primary), var(--gen-primary) 7px, var(--gen-primary-hov) 7px, var(--gen-primary-hov) 14px); border: 2px solid rgba(255,255,255,.7); }

.au-bj-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.au-bj-actions.is-active { display: grid; }

@media (max-width: 760px) {
  .gen-nav__inner, .gak__inner, .muk-vo__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .au-header-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .au-header-nav a {
    background: var(--gen-primary-soft);
    font-size: 13px;
  }

  .au-casino-card {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas:
      "logo content"
      "logo rating"
      "button button";
    gap: 11px 13px;
    padding: 16px;
  }

  .au-casino-logo-wrap { grid-area: logo; min-height: 86px; }
  .au-casino-main { grid-area: content; }
  .au-rating-badge { grid-area: rating; justify-self: start; }
  .au-play-btn { grid-area: button; width: 100%; }

  .au-casino-name { font-size: 18px; }
  .au-casino-bonus { font-size: 12px; }

  .au-sim-grid { grid-template-columns: 1fr; }
  .au-field-row { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .au-casino-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "content"
      "rating"
      "button";
  }

  .au-casino-logo-wrap { min-height: 76px; }
  .au-wheel-wrap { width: 165px; height: 165px; }
  .au-card { width: 44px; height: 62px; font-size: 17px; }
}
/* Horizontal scrolling ToC styles */
.au-toc-scroll {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 4px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.au-toc-scroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.au-toc-list {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.au-toc-item a {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--gen-border);
  border-radius: 999px;
  color: var(--gen-primary);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(66,16,25,.04);
  transition: all 0.15s ease;
}
.au-toc-item a:hover {
  background: var(--gen-primary-soft);
  border-color: var(--gen-primary);
}

@media (max-width: 760px) {
  .gen-nav__inner, .gak__inner, .muk-vo__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .au-header-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .au-header-nav a {
    background: var(--gen-primary-soft);
    font-size: 13px;
}