:root {
  --awru-bg: #020712;
  --awru-bg-soft: #050d1e;
  --awru-blue: #008BFF;
  --awru-cyan: #11C5FF;
  --awru-green: #11d35c;
  --awru-text: #ffffff;
  --awru-muted: #8e9bb8;
}

/* BODY */

.awru-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0 0, rgba(0,139,255,0.24), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(17,197,255,0.2), transparent 55%),
    linear-gradient(180deg, #020712 0%, #020712 45%, #050d1e 100%);
  color: var(--awru-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.awru-body.awru-menu-open {
  overflow: hidden;
}

/* HEADER */

.awru-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(2,7,18,0.96), rgba(5,13,30,0.96));
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.awru-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}

/* LOGO */

.awru-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.awru-logo__img {
  display: block;
  height: 46px;
  width: auto;
}

/* NAV DESKTOP */

.awru-nav {
  justify-self: center;
}

.awru-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
}

.awru-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--awru-muted);
  transition: color 0.16s ease;
}

.awru-nav__link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--awru-blue), var(--awru-cyan));
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.awru-nav__link:hover {
  color: #ffffff;
}

.awru-nav__link:hover::before {
  width: 80%;
}

.awru-nav__link--active {
  color: #ffffff;
}

.awru-nav__link--active::before {
  width: 90%;
}

/* AUTH DESKTOP */

.awru-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.awru-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.awru-btn--outline {
  background: transparent;
  color: var(--awru-text);
  border: 1px solid rgba(255,255,255,0.25);
}

.awru-btn--outline:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 14px rgba(0,0,0,0.7);
}

.awru-btn--primary {
  background: linear-gradient(135deg, var(--awru-blue), var(--awru-green));
  color: #020712;
  box-shadow: 0 0 16px rgba(0,220,130,0.65);
}

.awru-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0,220,130,0.9);
}

/* BURGER */

.awru-burger {
  display: none;
  width: 40px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(2,7,18,0.9);
  padding: 6px 8px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.awru-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--awru-blue), var(--awru-cyan));
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.awru-burger__line + .awru-burger__line {
  margin-top: 5px;
}

.awru-burger:hover {
  box-shadow: 0 0 12px rgba(0,139,255,0.6);
  transform: translateY(-1px);
}

/* Анимация бургера */

.awru-body.awru-menu-open .awru-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.awru-body.awru-menu-open .awru-burger__line:nth-child(2) {
  opacity: 0;
}

.awru-body.awru-menu-open .awru-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU FULLSCREEN */

.awru-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.awru-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(0,139,255,0.35), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(17,197,255,0.28), transparent 60%),
    rgba(2,7,18,0.97);
}

.awru-mobile-menu__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 18px 24px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.awru-body.awru-menu-open .awru-mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

/* Кнопка закрытия */

.awru-mobile-menu__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(2,7,18,0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.awru-mobile-menu__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.awru-mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.awru-mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.awru-mobile-menu__close:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 14px rgba(0,0,0,0.7);
}

/* Лого в меню */

.awru-logo--mobile {
  margin-top: 10vh;
  margin-bottom: 32px;
}

.awru-logo--mobile .awru-logo__img {
  height: 84px;
}

/* Навигация в меню */

.awru-mobile-menu__nav {
  flex: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.awru-mobile-menu__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.awru-mobile-menu__link {
  display: block;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #e6edff;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(90deg, rgba(0,139,255,0.18), rgba(17,197,255,0.08));
  border: 1px solid rgba(0,139,255,0.4);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.awru-mobile-menu__link--active {
  background: linear-gradient(135deg, var(--awru-blue), var(--awru-cyan));
  color: #020712;
}

.awru-mobile-menu__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.85);
}

/* Кнопки в меню */

.awru-mobile-menu__auth {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* SCROLLED HEADER */

.awru-header--scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

/* MAIN + HERO */

.awru-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 24px 60px;
  box-sizing: border-box;
}

.awru-hero {
  position: relative;
  border-radius: 24px;
  padding: 28px 28px 30px;
  background:
    radial-gradient(circle at 0 0, rgba(0,139,255,0.45), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(17,197,255,0.35), transparent 60%),
    linear-gradient(135deg, #030b1c, #020712 65%, #031226);
  overflow: hidden;
}

.awru-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0, rgba(255,255,255,0.04), transparent 55%);
  pointer-events: none;
}

.awru-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
  z-index: 1;
}

/* Текстовая часть hero */

.awru-hero__label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(2,7,18,0.8);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--awru-muted);
  margin: 0 0 10px;
}

.awru-hero__title {
  font-size: 32px;
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 800;
}

.awru-hero__text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--awru-muted);
}

.awru-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.awru-hero__btn-main {
  font-size: 14px;
  padding-inline: 24px;
}

.awru-hero__btn-alt {
  font-size: 14px;
}

/* Фичи под кнопками */

.awru-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--awru-muted);
}

.awru-hero__features li {
  position: relative;
  padding-left: 14px;
}

.awru-hero__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--awru-cyan), var(--awru-blue));
}

/* Правая часть hero */

.awru-hero__visual {
  display: flex;
  justify-content: flex-end;
}

.awru-hero__card {
  width: 100%;
  max-width: 360px;
  border-radius: 22px;
  padding: 14px 16px 16px;
  background: radial-gradient(circle at 0 0, rgba(0,139,255,0.45), transparent 60%),
              linear-gradient(145deg, #041025, #020816);
  box-shadow: 0 18px 45px rgba(0,0,0,0.85);
  border: 1px solid rgba(17,197,255,0.45);
  box-sizing: border-box;
}

/* Верх карточки */

.awru-hero__card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}

.awru-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
}

.awru-hero__pill--green {
  background: linear-gradient(135deg, #0feb72, #11d35c);
  color: #020712;
}

.awru-hero__pill--blue {
  background: linear-gradient(135deg, var(--awru-blue), var(--awru-cyan));
  color: #020712;
}

/* Центр карточки с картинкой */

.awru-hero__card-center {
  position: relative;
  height: 160px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(0,139,255,0.45), transparent 65%),
    linear-gradient(145deg, #020712, #031835);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awru-hero__img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

/* Низ карточки */

.awru-hero__card-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.awru-hero__amount {
  font-size: 20px;
  font-weight: 800;
}

.awru-hero__hint {
  font-size: 11px;
  color: var(--awru-muted);
}

/* ADAPTIVE */

@media (max-width: 1024px) {
  .awru-nav {
    display: none;
  }

  .awru-auth {
    display: none;
  }

  .awru-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .awru-burger {
    display: block;
    justify-self: end;
  }

  .awru-main {
    padding-inline: 16px;
  }

  .awru-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .awru-hero__visual {
    justify-content: flex-start;
  }

  .awru-hero__card {
    max-width: 100%;
  }

  .awru-hero__title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .awru-hero {
    padding: 20px 18px 24px;
  }

  .awru-hero__title {
    font-size: 22px;
  }

  .awru-hero__card-center {
    height: 140px;
  }
}



.aw-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* секция без собственного тёмного фона */
.aw-games {
  padding: 32px 0 44px;
  background: transparent;
}

/* заголовок блока */

.aw-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.aw-section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.04em;
}

.aw-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
  text-decoration: none;
  cursor: pointer;
}

.aw-section-link__icon {
  font-size: 16px;
  transform: translateY(-1px);
}

.aw-section-link:hover {
  color: #ffffff;
}

/* сетка игр */

.aw-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* карточка игры — другая форма, фон и тени */

.aw-game-card {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(15, 118, 255, 0.25), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.25), transparent 60%),
              rgba(8, 15, 35, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.8);
}

.aw-game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.95);
  border-color: rgba(59, 130, 246, 0.9);
}

.aw-game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* бейджи — другой цвет */

.aw-game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #22c55e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.aw-game-card__badge--hot {
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

/* избранное */

.aw-game-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 2;
}

.aw-game-card__fav::before {
  content: "♡";
  color: #e5e7eb;
}

/* затемнение + кнопки */

.aw-game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.12) 35%,
    rgba(15, 23, 42, 0.96) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 18px 10px 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.aw-game-card:hover .aw-game-card__overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* кнопки */

.aw-game-card__btn {
  width: 100%;
  max-width: 140px;
  border-radius: 999px;
  border: none;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.aw-game-card__btn--play {
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #020617;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}

.aw-game-card__btn--play:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.85);
}

.aw-game-card__btn--demo {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.aw-game-card__btn--demo:hover {
  border-color: #ffffff;
}

/* адаптив */

@media (max-width: 1024px) {
  .aw-games-grid {
    grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
  }
}

@media (max-width: 768px) {
  .aw-games {
    padding: 26px 0 32px;
  }

  .aw-section-head {
    margin-bottom: 14px;
  }

  .aw-section-title {
    font-size: 19px;
  }

  .aw-games-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .aw-games-grid::-webkit-scrollbar {
    height: 5px;
  }

  .aw-games-grid::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.9);
  }

  .aw-games-grid::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 999px;
  }

  .aw-game-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }

  .aw-game-card__img-wrap {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .aw-section-title {
    font-size: 18px;
  }

  .aw-section-link {
    font-size: 10px;
  }
}

.aw-footer {
  background: radial-gradient(circle at top, #050816 0, #020511 55%, #010309 100%);
  border-top: 1px solid #0b1120;
  color: #e5e7eb;
  padding: 32px 0 18px;
  font-size: 13px;
}

.aw-footer__top {
  padding-bottom: 16px;
}

.aw-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 2fr 2fr;
  gap: 26px;
  align-items: flex-start;
}

.aw-footer__col {
  min-width: 0;
}

.aw-footer__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f9fafb;
}

.aw-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw-footer__list li + li {
  margin-top: 4px;
}

.aw-footer__list a {
  font-size: 13px;
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.16s ease;
}

.aw-footer__list a:hover {
  color: #ffffff;
}

/* Платежи */

.aw-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aw-footer-payment {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: radial-gradient(circle at top, #020617 0, #02040b 65%);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
}

/* Контакты */

.aw-footer-contact__item {
  margin: 0 0 4px;
}

.aw-footer-contact__item--accent {
  margin-top: 6px;
  font-weight: 600;
  color: #22c55e;
}

.aw-footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.aw-footer-contact a:hover {
  color: #ffffff;
}

.aw-footer-contact-icons {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.aw-footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #020617;
  border: 1px solid #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #e5e7eb;
  text-decoration: none;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}

.aw-footer-contact-icon:hover {
  background: #0b1120;
  border-color: #38bdf8;
  transform: translateY(-1px);
}

/* Легальные тексты */

.aw-footer__legal {
  margin-top: 24px;
  font-size: 11px;
  line-height: 1.6;
  color: #9ca3af;
}

.aw-footer__legal-text {
  margin: 0 0 6px;
}

.aw-footer__legal-text--small {
  font-size: 10px;
  opacity: 0.9;
}

/* Нижняя полоса */

.aw-footer__bottom {
  border-top: 1px solid #0b1120;
  padding-top: 10px;
}

.aw-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: #9ca3af;
}

.aw-footer__bottom-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

.aw-footer__time {
  opacity: 0.85;
}

.aw-footer__bottom-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aw-footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #ef4444;
  color: #ef4444;
  font-weight: 700;
  font-size: 12px;
}

.aw-footer-aware {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Адаптив */

@media (max-width: 1024px) {
  .aw-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 20px;
  }

  .aw-footer__col--payments {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .aw-footer {
    padding-top: 40px;
  }

  .aw-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw-footer__col--payments,
  .aw-footer__col--contacts {
    grid-column: span 2;
  }

  .aw-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .aw-footer__grid {
    grid-template-columns: 1fr;
  }

  .aw-footer__bottom-inner {
    align-items: center;
    text-align: center;
  }
}
.aw-article {
  padding: 32px 0 40px;
  background: transparent; /* секция подхватывает общий фон страницы */
}

.aw-article__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(15, 23, 42, 0.85) 0, #020617 55%, #010409 100%);
  border: 1px solid #111827;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Заголовки */

.aw-article h1,
.aw-article h2,
.aw-article h3 {
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.aw-article h1 {
  font-size: 26px;
  margin-top: 4px;
}

.aw-article h2 {
  font-size: 20px;
  margin-top: 26px;
}

.aw-article h3 {
  font-size: 16px;
  margin-top: 22px;
}

/* Параграфы и текст */

.aw-article p {
  margin: 0 0 14px;
  font-size: 14px;
  color: #cbd5f5;
}

.aw-article strong {
  font-weight: 700;
  color: #ffffff;
}

.aw-article em {
  font-style: italic;
}

/* Списки */

.aw-article ul,
.aw-article ol {
  margin: 0 0 14px 20px;
  padding: 0;
}

.aw-article li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* Таблицы */

.aw-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  font-size: 13px;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.aw-article thead {
  background: rgba(15, 23, 42, 0.9);
}

.aw-article th,
.aw-article td {
  padding: 10px 12px;
  border: 1px solid #1f2937;
  text-align: left;
}

.aw-article th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: #e5e7eb;
}

.aw-article tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.6);
}

/* Картинки */

.aw-article img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 16px auto 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
}

/* Адаптив */

@media (max-width: 768px) {
  .aw-article__inner {
    padding: 18px 16px 22px;
  }

  .aw-article h1 {
    font-size: 22px;
  }

  .aw-article h2 {
    font-size: 18px;
  }
}
