@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@500;600;700&display=swap");

:root {
  --aw-bg-header: #020818;
  --aw-bg-page: #01040c;
  --aw-accent: #00f0ff;
  --aw-text-main: #ffffff;
  --aw-text-muted: #9ca3af;
  --aw-btn-primary: #27e269;
  --aw-btn-primary-hover: #36ff7d;
  --aw-btn-outline-border: #384152;
  --aw-radius-pill: 999px;
  --aw-transition-fast: 0.2s ease;
  --aw-header-height: 64px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--aw-bg-page);
  color: var(--aw-text-main);
}

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

.aw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: radial-gradient(circle at top, #071736 0, #020818 55%, #020617 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.aw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--aw-header-height);
}

.aw-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.aw-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.aw-nav {
  margin-left: 40px;
  flex: 1 1 auto;
}

.aw-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.aw-nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--aw-text-main);
  padding: 6px 14px;
  border-radius: 999px;
  transition:
    background var(--aw-transition-fast),
    color var(--aw-transition-fast),
    transform var(--aw-transition-fast);
}

.aw-nav__link:hover,
.aw-nav__link:focus {
  color: var(--aw-text-main);
  background: rgba(31, 176, 255, 0.18);
}

.aw-nav__link--active {
  color: var(--aw-text-main);
  background: #1fb0ff;
}

.aw-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.aw-header__actions a{
  text-decoration: none;
}

.aw-btn {
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--aw-radius-pill);
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--aw-transition-fast),
    border-color var(--aw-transition-fast),
    transform var(--aw-transition-fast),
    box-shadow var(--aw-transition-fast);
}

.aw-btn--primary {
  background: var(--aw-btn-primary);
  color: #03120a;
  box-shadow: 0 0 18px rgba(39, 226, 105, 0.4);
}

.aw-btn--primary:hover {
  background: var(--aw-btn-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(54, 255, 125, 0.6);
}

.aw-btn--outline {
  background: transparent;
  color: var(--aw-text-main);
  border: 1px solid var(--aw-btn-outline-border);
}

.aw-btn--outline:hover {
  border-color: var(--aw-accent);
}

.aw-btn--full {
  width: 100%;
}

.aw-burger {
  display: none;
  position: relative;
  width: 32px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  padding: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition:
    border-color var(--aw-transition-fast),
    background var(--aw-transition-fast),
    transform var(--aw-transition-fast);
}

.aw-burger span {
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform var(--aw-transition-fast),
    opacity var(--aw-transition-fast),
    top var(--aw-transition-fast),
    bottom var(--aw-transition-fast);
}

.aw-burger span:nth-child(1) {
  top: 10px;
}

.aw-burger span:nth-child(2) {
  top: 15px;
}

.aw-burger span:nth-child(3) {
  bottom: 10px;
}

.aw-burger--active span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

.aw-burger--active span:nth-child(2) {
  opacity: 0;
}

.aw-burger--active span:nth-child(3) {
  bottom: 14px;
  transform: rotate(-45deg);
}

.aw-mobile-menu {
  position: fixed;
  inset: var(--aw-header-height) 0 0 0;
  background: radial-gradient(circle at top, #071736 0, #020818 60%, #020617 100%);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 16px 24px 230px;
}

.aw-mobile-menu--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.aw-mobile-menu__nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.aw-mobile-menu__nav li + li {
  margin-top: 8px;
}

.aw-mobile-menu__nav a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: var(--aw-text-main);
  text-decoration: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.aw-mobile-menu__nav a:hover {
  color: var(--aw-accent);
}

.aw-mobile-menu__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aw-mobile-menu__actions a{
text-decoration: none;
}

.aw-no-scroll {
  overflow: hidden;
}

.aw-hero {
  padding: 12px 0 32px;
  background: #02040b;
}

.aw-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #020818;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.aw-slider__track {
  position: relative;
  width: 100%;
  height: min(340px, 32vw);
  background: #020818;
}

.aw-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.aw-slide--active {
  opacity: 1;
  pointer-events: auto;
}

.aw-slide__link {
  display: block;
  width: 100%;
  height: 100%;
}

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

.aw-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  z-index: 5;
}

.aw-slider__arrow span {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.aw-slider__arrow--prev {
  left: 18px;
}

.aw-slider__arrow--next {
  right: 18px;
}

.aw-slider__arrow:hover {
  border-color: #ffffff;
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-50%) scale(1.05);
}

.aw-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.aw-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  padding: 0;
  outline: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.aw-slider__dot--active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.15);
}

.aw-filters {
  background: #050b18;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.aw-filters__header {
  display: none;
  padding: 8px 0 0;
}

.aw-filters__toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 14px;
  border: 1px solid #1e293b;
  background: linear-gradient(90deg, #0b1220 0%, #020617 100%);
  color: var(--aw-text-main);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.7);
}

.aw-filters__toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aw-filters__toggle-label::before {
  content: "⚙";
  font-size: 14px;
}

.aw-filters__toggle-icon {
  width: 16px;
  height: 16px;
  position: relative;
}

.aw-filters__toggle-icon::before,
.aw-filters__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.aw-filters__toggle-icon::before {
  top: 4px;
}

.aw-filters__toggle-icon::after {
  bottom: 4px;
}

.aw-filters--open .aw-filters__toggle-icon::before {
  top: 7px;
  transform: rotate(45deg);
}

.aw-filters--open .aw-filters__toggle-icon::after {
  bottom: 7px;
  transform: rotate(-45deg);
}

.aw-filters__scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.aw-filters__scroll::-webkit-scrollbar {
  height: 6px;
}

.aw-filters__scroll::-webkit-scrollbar-track {
  background: #020617;
}

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

.aw-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #151a26;
  background: #050b18;
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--aw-transition-fast),
    border-color var(--aw-transition-fast),
    transform var(--aw-transition-fast),
    box-shadow var(--aw-transition-fast),
    color var(--aw-transition-fast);
  text-decoration: none;
}

.aw-filter__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.aw-filter__icon::before {
  content: "";
}

.aw-filter--search .aw-filter__icon::before {
  content: "🔍";
}

.aw-filter--collections .aw-filter__icon::before {
  content: "◆";
}

.aw-filter--providers .aw-filter__icon::before {
  content: "≡";
}

.aw-filter--all-games .aw-filter__icon::before {
  content: "🎮";
}

.aw-filter--favourites .aw-filter__icon::before {
  content: "❤";
}

.aw-filter--recommended .aw-filter__icon::before {
  content: "👍";
}

.aw-filter--top .aw-filter__icon::before {
  content: "★";
}

.aw-filter--new .aw-filter__icon::before {
  content: "NEW";
  font-size: 8px;
  font-weight: 700;
}

.aw-filter--slots .aw-filter__icon::before {
  content: "7";
}

.aw-filter--wager .aw-filter__icon::before {
  content: "%";
}

.aw-filter--bonus-buy .aw-filter__icon::before {
  content: "🎁";
}

.aw-filter--drops .aw-filter__icon::before {
  content: "☘";
}

.aw-filter--jackpots .aw-filter__icon::before {
  content: "💰";
}

.aw-filter--instant .aw-filter__icon::before {
  content: "⚡";
}

.aw-filter:hover {
  background: #0b1020;
  border-color: #1f2a3a;
  transform: translateY(-1px);
}

.aw-filter--active {
  background: #1f82ff;
  border-color: #1f82ff;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(31, 130, 255, 0.6);
}

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

  .aw-header__actions {
    display: none;
  }

  .aw-burger {
    display: inline-flex;
  }

  .aw-logo img {
    height: 35px;
  }

  .aw-header__inner {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .aw-header__inner {
    height: 56px;
  }

  .aw-filters__header {
    display: flex;
  }

  .aw-filters__scroll {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .aw-filters--open .aw-filters__scroll {
    max-height: 260px;
    overflow-y: auto;
    padding: 20px;
  }

  .aw-filter {
    flex: 0 0 calc(50% - 4px);
    justify-content: flex-start;
  }
}

.aw-games {
  padding: 24px 0 40px;
  background: #02040b;
}

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

.aw-section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aw-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  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(176px, 1fr));
  gap: 12px;
}

.aw-game-card {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  background: #020818;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.aw-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 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: 8px;
  left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #1f82ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.aw-game-card__badge--hot {
  background: linear-gradient(90deg, #1f82ff, #5af2ff);
}

.aw-game-card__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  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: 12px;
  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.94) 55%
  );
  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(8px);
  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: 136px;
  border-radius: 999px;
  border: none;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  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;
}

.aw-game-card__btn--play {
  background: #1fb0ff;
  color: #020617;
  box-shadow: 0 0 16px rgba(31, 176, 255, 0.6);
}

.aw-game-card__btn--play:hover {
  background: #3fd0ff;
  transform: translateY(-1px);
}

.aw-game-card__btn--demo {
  background: transparent;
  color: #ffffff;
  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(160px, 1fr));
  }
}

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

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

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

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

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

  .aw-games-grid::-webkit-scrollbar-track {
    background: #020617;
  }

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

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

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

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

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

.aw-highlights {
  padding: 20px 0 40px;
  background: #02040b;
}

.aw-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.aw-highlight {
  position: relative;
  border-radius: 16px;
  padding: 16px 16px 18px;
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #02040b 100%);
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.aw-highlight::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at top right,
    rgba(56, 189, 248, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.aw-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
}

.aw-highlight:hover::before {
  opacity: 1;
}

.aw-highlight__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
  box-shadow: 0 0 16px rgba(15, 23, 42, 0.9);
}

.aw-highlight__icon--bonus {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.aw-highlight__icon--tournament {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.aw-highlight__icon--cashback {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.aw-highlight__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aw-highlight__text {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5f5;
}

.aw-highlight__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.aw-highlight__link::after {
  content: "›";
  font-size: 14px;
  transform: translateY(-1px);
}

.aw-highlight__link:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .aw-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .aw-highlights {
    padding: 16px 0 28px;
  }

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

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

  .aw-highlights__grid::-webkit-scrollbar-track {
    background: #020617;
  }

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

  .aw-highlight {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .aw-highlight {
    flex: 0 0 240px;
  }
}

.aw-footer {
  background: #050815;
  border-top: 1px solid #0b1120;
  padding: 32px 0 18px;
  color: #e5e7eb;
  position: relative;
}

.aw-footer__to-top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #1e293b;
  background: radial-gradient(circle at top, #111827 0, #020617 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  z-index: 2;
}

.aw-footer__to-top-icon {
  color: #ffffff;
  font-size: 18px;
  transform: translateY(-1px);
}

.aw-footer__to-top:hover {
  transform: translateX(-50%) translateY(-2px);
  border-color: #38bdf8;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 1);
}

.aw-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 2fr 2fr;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 20px;
}

.aw-footer__title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.aw-footer__list a {
  font-size: 13px;
  color: #e5e7eb;
  text-decoration: none;
}

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

.aw-footer-payments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.aw-footer-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #020617;
  border: 1px solid #111827;
}

.aw-footer-contact__item {
  font-size: 13px;
  margin-bottom: 4px;
}

.aw-footer-contact__item--accent {
  margin-top: 4px;
  font-weight: 600;
  color: #facc15;
}

.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: 8px;
}

.aw-footer-contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #020617;
  border: 1px solid #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.aw-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #0b1120;
  padding-top: 10px;
  font-size: 11px;
  color: #9ca3af;
}

.aw-footer__time::before {
  content: "© ";
}

.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;
  margin-right: 8px;
}

.aw-footer-aware {
  font-size: 11px;
  letter-spacing: 0.12em;
  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 {
    grid-column: span 2;
  }

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

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

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

  .aw-footer__bottom {
    align-items: center;
    text-align: center;
  }

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

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

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

.article-content h1 {
  font-size: 26px;
  margin-top: 8px;
}

.article-content h2 {
  font-size: 20px;
  margin-top: 28px;
}

.article-content h3 {
  font-size: 16px;
  margin-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

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