:root {
  --bg: #04070e;
  --bg-soft: #060e18;
  --bg-deep: #010509;
  --surface: #0a1322;
  --surface-2: #0d1a2c;
  --primary: #ff7a1a;
  --primary-soft: rgba(255, 122, 26, 0.14);
  --primary-line: rgba(255, 122, 26, 0.32);
  --secondary: #7c3bff;
  --secondary-soft: rgba(124, 59, 255, 0.14);
  --secondary-line: rgba(124, 59, 255, 0.3);
  --accent: #ffc247;
  --ink: #e9f1ff;
  --ink-dim: #5f7d9e;
  --line: rgba(255, 122, 26, 0.12);
  --line-2: rgba(124, 59, 255, 0.12);
  --radius: 10px;
  --radius-sm: 4px;
  --wrap: 1300px;
  --wrap-pad: 18px;
  --header-h: 60px;
  --fixbar-h: 56px;
  --speed: 0.18s ease;
  --font-head: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  padding-bottom: var(--fixbar-h);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.aua-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

.aua-main {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(1100px 520px at 50% -10%, rgba(255, 122, 26, 0.09), transparent 70%), radial-gradient(760px 420px at 90% 12%, rgba(124, 59, 255, 0.08), transparent 72%);
}

.aua-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 34px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--speed), color var(--speed), border-color var(--speed);
}

.aua-btn--solid {
  background: linear-gradient(135deg, var(--primary), #ff4d00);
  color: #12060a;
  border: 1px solid transparent;
}

.aua-btn--solid:hover {
  background: linear-gradient(135deg, #ff8f3d, var(--primary));
}

.aua-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--primary-line);
}

.aua-btn--ghost:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.aua-fixbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  gap: 8px;
  height: var(--fixbar-h);
  padding: 8px 14px;
  background: rgba(2, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--primary-line);
}

.aua-fixbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 calc(50% - 4px);
  max-width: 280px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background var(--speed), color var(--speed);
}

.aua-fixbar__btn--solid {
  background: linear-gradient(135deg, var(--primary), #ff4d00);
  color: #12060a;
}

.aua-fixbar__btn--solid:hover {
  background: linear-gradient(135deg, #ff8f3d, var(--primary));
}

.aua-fixbar__btn--ghost {
  background: rgba(124, 59, 255, 0.12);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--secondary-line);
}

.aua-fixbar__btn--ghost:hover {
  color: #c6a8ff;
}

.aua-hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(3, 8, 16, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.aua-hdr__in {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}

.aua-hdr__logo img {
  width: 132px;
  height: auto;
}

.aua-hdr__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: auto;
}

.aua-hdr__link {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color var(--speed);
}

.aua-hdr__link:hover {
  color: var(--primary);
}

.aua-hdr__actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.aua-lang {
  position: relative;
}

.aua-lang__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  list-style: none;
  cursor: pointer;
  transition: border-color var(--speed), color var(--speed);
}

.aua-lang__btn::-webkit-details-marker {
  display: none;
}

.aua-lang__btn:hover {
  border-color: var(--primary-line);
  color: var(--primary);
}

.aua-lang__flag {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
}

.aua-lang__chev {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: var(--ink-dim);
}

.aua-lang[open] .aua-lang__chev {
  transform: rotate(180deg);
}

.aua-lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 10;
  min-width: 180px;
  list-style: none;
  padding: 6px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.aua-lang__link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--ink-dim);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--speed), color var(--speed);
}

.aua-lang__link:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.aua-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.aua-burger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  transition: transform var(--speed), opacity var(--speed);
}

.aua-burger.is-open .aua-burger__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.aua-burger.is-open .aua-burger__bar:nth-child(2) {
  opacity: 0;
}

.aua-burger.is-open .aua-burger__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.aua-drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  z-index: 250;
  width: min(320px, 86vw);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 20px calc(var(--fixbar-h) + 22px);
  background: var(--bg-deep);
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform 0.24s ease;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.aua-drawer::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.aua-drawer.is-open {
  transform: translateX(0);
}

.aua-drawer__nav {
  display: flex;
  flex-direction: column;
}

.aua-drawer__link {
  padding: 12px 0;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.aua-drawer__link:hover {
  color: var(--primary);
}

.aua-drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.aua-drawer__cta .aua-btn {
  height: 40px;
}

.aua-hero {
  padding: 14px 0 20px;
}

.aua-hero__box {
  position: relative;
  min-height: min(400px, 30vw);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

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

.aua-hero__box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(4, 7, 14, 0.94) 35%, rgba(4, 7, 14, 0.25) 100%);
}

.aua-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 122, 26, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 122, 26, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
}

.aua-hero__deco {
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
}

.aua-hero__deco--tl {
  top: 12px;
  left: 12px;
  border-top: 1.5px solid var(--primary);
  border-left: 1.5px solid var(--primary);
}

.aua-hero__deco--tr {
  top: 12px;
  right: 12px;
  border-top: 1.5px solid var(--primary);
  border-right: 1.5px solid var(--primary);
}

.aua-hero__deco--bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 1.5px solid var(--primary);
  border-left: 1.5px solid var(--primary);
}

.aua-hero__deco--br {
  bottom: 12px;
  right: 12px;
  border-bottom: 1.5px solid var(--primary);
  border-right: 1.5px solid var(--primary);
}

.aua-hero__body {
  position: relative;
  z-index: 4;
  max-width: 580px;
  padding: 44px 52px;
}

.aua-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.aua-hero__eyebrow::before,
.aua-hero__eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.aua-hero__title {
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: clamp(22px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #fff;
}

.aua-hero__grad {
  display: block;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aua-gradmove 4s linear infinite;
}

@keyframes aua-gradmove {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.aua-hero__desc {
  margin-bottom: 32px;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(233, 241, 255, 0.65);
}

.aua-hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  padding: 15px 38px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1.5px solid var(--primary);
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.aua-hero__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 26, 0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.aua-hero__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: aua-lineflow 2s linear infinite;
}

@keyframes aua-lineflow {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

.aua-hero__cta:hover {
  color: var(--primary);
  background: rgba(255, 122, 26, 0.1);
  box-shadow: 0 0 30px rgba(255, 122, 26, 0.28), inset 0 0 20px rgba(255, 122, 26, 0.05);
}

.aua-hero__cta:hover::before {
  transform: translateX(100%);
}

.aua-hero__ico {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 8px;
  border: 1px solid currentColor;
  transition: transform 0.2s ease;
}

.aua-hero__cta:hover .aua-hero__ico {
  transform: rotate(90deg);
}

.aua-brands {
  padding: 18px 0;
  overflow: hidden;
  background: rgba(3, 10, 19, 0.6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aua-brands__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.aua-brands__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.aua-brands__label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--primary);
}

.aua-brands__wrap {
  overflow: hidden;
}

.aua-brands__track {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.aua-brands__track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.aua-brands__track:active {
  cursor: grabbing;
}

.aua-brands__item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 88px;
  height: 44px;
  padding: 6px 4px;
}

.aua-brands__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 122, 26, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--speed);
}

.aua-brands__item img {
  position: relative;
  z-index: 1;
  max-width: 80px;
  max-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.62) saturate(0);
  transition: filter 0.25s ease;
}

.aua-brands__item:hover::after,
.aua-brands__item:focus-visible::after {
  opacity: 1;
}

.aua-brands__item:hover img,
.aua-brands__item:focus-visible img {
  filter: brightness(1.1) saturate(1);
}

.aua-games {
  padding: 24px 0 10px;
}

.aua-games__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.aua-games__title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aua-games__title::before {
  content: "";
  display: block;
  flex: none;
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.28);
}

.aua-games__more {
  display: flex;
  flex: none;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  font-family: var(--font-head);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid rgba(95, 125, 158, 0.2);
  border-radius: 3px;
  transition: color var(--speed), border-color var(--speed);
}

.aua-games__more:hover {
  color: var(--primary);
  border-color: var(--primary-line);
}

.aua-games__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.aua-card {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(255, 122, 26, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.aua-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 230, 180, 0.12) 50%, rgba(255, 255, 255, 0.18) 55%, transparent 70%, transparent 100%);
  transform: translateX(-100%);
}

.aua-card:hover {
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 4px 22px rgba(255, 122, 26, 0.15);
}

.aua-card:hover::before {
  animation: aua-shine 0.55s ease forwards;
}

@keyframes aua-shine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.aua-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.aua-card:hover .aua-card__img {
  transform: scale(1.05);
}

.aua-card__tag {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 5;
  padding: 2px 7px;
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.aua-card__tag--hot {
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-line);
}

.aua-card__tag--new {
  color: #c09fff;
  background: var(--secondary-soft);
  border: 1px solid var(--secondary-line);
}

.aua-card__tag--top {
  color: var(--accent);
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.32);
}

.aua-card__hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 10px 10px 44px;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 8, 15, 0.92) 100%);
  opacity: 0;
  transition: opacity var(--speed);
}

.aua-card:hover .aua-card__hover,
.aua-card:focus-within .aua-card__hover {
  opacity: 1;
}

.aua-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.aua-card__btn--play {
  width: 100%;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(90deg, var(--primary), #e05500);
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: filter var(--speed);
}

.aua-card__btn--play:hover {
  filter: brightness(1.1);
}

.aua-card__btn--demo {
  padding: 2px 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(233, 241, 255, 0.5);
  transition: color var(--speed);
}

.aua-card__btn--demo:hover {
  color: rgba(233, 241, 255, 0.9);
}

.aua-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 9px 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(2, 8, 15, 0), rgba(2, 8, 15, 0.95) 45%);
}

.aua-seo {
  padding: 24px 0 34px;
}

.aua-seo__box {
  padding: 30px 30px 26px;
  background: linear-gradient(180deg, #030c18, #020910);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.aua-seo__box h1 {
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.aua-seo__box h2 {
  margin: 26px 0 10px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.aua-seo__box h3 {
  margin: 18px 0 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.aua-seo__box p {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 300;
  color: #b9cbe2;
}

.aua-seo__box strong {
  font-weight: 600;
  color: var(--ink);
}

.aua-seo__box ul,
.aua-seo__box ol {
  margin: 0 0 14px 18px;
  font-size: 15px;
  font-weight: 300;
  color: #b9cbe2;
}

.aua-seo__box li {
  margin-bottom: 6px;
}

.aua-seo__box li::marker {
  color: var(--primary);
}

.aua-seo__box table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.aua-seo__box table::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.aua-seo__box thead,
.aua-seo__box tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 600px;
}

.aua-seo__box tr {
  display: flex;
  width: 100%;
}

.aua-seo__box th,
.aua-seo__box td {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 110px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  color: #b9cbe2;
  border-bottom: 1px solid var(--line);
  word-break: break-word;
}

.aua-seo__box th:first-child,
.aua-seo__box td:first-child {
  justify-content: flex-start;
  text-align: left;
}

.aua-seo__box thead th {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface-2);
  border-bottom: 2px solid var(--primary-line);
}

.aua-seo__box tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.aua-seo__box tbody tr:last-child td {
  border-bottom: none;
}

.aua-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 18px;
}

.aua-faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.aua-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
}

.aua-faq__icon {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform var(--speed);
}

.aua-faq__q[aria-expanded="true"] .aua-faq__icon {
  transform: rotate(180deg);
}

.aua-faq__a {
  padding: 0 16px 16px;
  font-size: 15px;
  font-weight: 300;
  color: #b9cbe2;
}

.aua-reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0 18px;
}

.aua-reviews__card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.aua-reviews__avatar {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
}

.aua-reviews__name {
  margin-bottom: 4px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.aua-reviews__text {
  font-size: 15px;
  font-weight: 300;
  color: #b9cbe2;
}

.aua-ftr {
  position: relative;
  z-index: 1;
  padding: 32px 0 90px;
  background: linear-gradient(180deg, #030c18, #010710);
  border-top: 1px solid var(--line);
}

.aua-ftr__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 24px;
  padding-bottom: 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 122, 26, 0.07);
}

.aua-ftr__cols--more {
  grid-template-columns: 1fr 2.6fr;
}

.aua-ftr__col {
  min-width: 0;
}

.aua-ftr__logo img {
  width: 132px;
  height: auto;
  margin-bottom: 12px;
}

.aua-ftr__about {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-dim);
}

.aua-ftr__title {
  margin-bottom: 13px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.aua-ftr__list {
  list-style: none;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-dim);
}

.aua-ftr__list li + li {
  margin-top: 7px;
}

.aua-ftr__list a {
  transition: color var(--speed);
}

.aua-ftr__list a::before {
  content: "\203A";
  margin-right: 6px;
  color: rgba(255, 122, 26, 0.35);
}

.aua-ftr__list a:hover {
  color: var(--primary);
}

.aua-ftr__list--split {
  columns: 2;
  column-gap: 24px;
}

.aua-ftr__list--split li {
  margin-bottom: 7px;
  break-inside: avoid;
}

.aua-ftr__list--split li + li {
  margin-top: 0;
}

.aua-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.aua-pay__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 30px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 3px;
}

.aua-pay__item img {
  max-width: 34px;
  max-height: 16px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.6);
}

.aua-safe {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 122, 26, 0.07);
}

.aua-safe__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 3px;
}

.aua-safe__item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0.5);
}

.aua-ftr__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.aua-ftr__rights {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-dim);
}

.aua-ftr__age {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aua-ftr__age-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 9px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50%;
}

.aua-ftr__age-text {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-dim);
}

@media (hover: none) {
  .aua-card__hover {
    opacity: 1;
    background: linear-gradient(180deg, transparent 55%, rgba(2, 8, 15, 0.9) 100%);
  }
}

@media (min-width: 961px) {
  .aua-drawer {
    display: none;
  }
}

@media (max-width: 960px) {
  .aua-hdr__nav,
  .aua-hdr__actions .aua-btn {
    display: none;
  }

  .aua-hdr__in {
    gap: 10px;
  }

  .aua-burger {
    display: flex;
  }
}

@media (max-width: 900px) {
  .aua-games__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .aua-games__grid::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .aua-games__grid:active {
    cursor: grabbing;
  }

  .aua-card {
    flex: 0 0 calc(42vw - 10px);
    max-width: 180px;
  }

  .aua-ftr__cols {
    grid-template-columns: 1fr 1fr;
  }

  .aua-ftr__cols--more {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .aua-hero__box {
    min-height: auto;
    padding: 28px 0 80px;
  }

  .aua-hero__eyebrow {
    letter-spacing: 0.16em;
  }

  .aua-hero__eyebrow::before,
  .aua-hero__eyebrow::after {
    width: 14px;
  }

  .aua-hero__body {
    max-width: 100%;
    padding: 20px 18px;
  }

  .aua-seo__box h1 {
    font-size: 19px;
  }

  .aua-seo__box h2 {
    font-size: 15px;
  }

  .aua-seo__box p,
  .aua-seo__box ul,
  .aua-seo__box ol {
    font-size: 14px;
  }

  .aua-ftr__list--split {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .aua-seo__box {
    padding: 16px 13px 18px;
  }

  .aua-seo__box h1 {
    font-size: 17px;
  }
}

@media (max-width: 500px) {
  .aua-card {
    flex: 0 0 44vw;
    max-width: 175px;
  }
}

@media (max-width: 460px) {
  .aua-ftr__cols {
    gap: 14px;
  }

  .aua-ftr__col--brand {
    grid-column: span 2;
    text-align: center;
  }

  .aua-ftr__col--brand .aua-ftr__logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .aua-ftr__base {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .aua-fixbar {
    padding: 8px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aua-hero__grad,
  .aua-hero__cta::after,
  .aua-card:hover::before {
    animation: none;
  }
}

.aua-lead {
  padding: 18px 0 2px;
}

.aua-lead__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.aua-lead__crumb {
  transition: color var(--speed);
}

.aua-lead__crumb:hover {
  color: var(--primary);
}

.aua-lead__sep {
  color: rgba(95, 125, 158, 0.45);
}

.aua-lead__cur {
  color: var(--ink);
}

.aua-lead__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--primary);
}

.aua-lead__desc {
  max-width: 760px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 300;
  color: #b9cbe2;
}

@media (max-width: 700px) {
  .aua-lead__title {
    font-size: 20px;
  }

  .aua-lead__desc {
    font-size: 14px;
  }
}
