* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: #0A111D;
    color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}

.aw-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #050815; /* тёмный фон хедера */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aw-header__inner {
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1500px;
}

.aw-burger {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.aw-burger span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background-color: #FFFFFF;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.aw-burger span:nth-child(1),
.aw-burger span:nth-child(3) {
    width: 18px;
}

.aw-burger span:nth-child(2) {
    width: 24px;
}

.aw-burger.aw-burger--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 24px;
}

.aw-burger.aw-burger--active span:nth-child(2) {
    opacity: 0;
}

.aw-burger.aw-burger--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 24px;
}


.aw-logo img {
    display: block;
    height: 30px;
}


.aw-nav--desktop {
    margin-left: 10px;
}

.aw-nav--desktop ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.aw-nav--desktop li {
	position: relative;
}

.aw-nav--desktop a {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	color: #E0E7FF;
	padding: 5px 11px 5px 10px;
	border-radius: 6px;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.aw-nav--desktop a:hover {
    background-color: #192852;
}

.aw-nav--desktop a.is-active {
    background-color: #2F9CDA; /* активный пункт */
    color: #FFFFFF;
}

.aw-nav__badge {
	position: absolute;
	top: -7px;
	right: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	border-radius: 999px;
	padding: 1px 6px;
}

.aw-nav__badge--hot {
	background-color: #2F9CDA;
	color: #FFFFFF;
}

.aw-nav__badge--new {
	background-color: #00C8E6;
	color: #04131F;
}


.aw-header__spacer {
    flex: 1 1 auto;
}

.aw-header__bell-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: transparent;
    margin-right: 4px;
    transition: background-color 0.15s ease;
}

.aw-header__bell-link:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.aw-header__bell {
    width: 24px;
    height: 24px;
    fill: #FFFFFF;
}

/* Кнопки */

.aw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    padding: 7px 16px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.aw-btn--login {
    background-color: rgba(255, 255, 255, 0.06);
    
    color: #FFFFFF;
}

.aw-btn--login:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.aw-btn--register {
    background-color: #00C8E6; /* близко к кнопке ДЕПОЗИТ */
    color: #04131F;
    font-weight: 700;
}

.aw-btn--register:hover {
    background-color: #2F9CDA;
    color: #FFFFFF;
}

.aw-btn--full {
    width: 100%;
    margin-top: 10px;
}

/* Сайдбар и оверлей */

.aw-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 90;
}

.aw-overlay.aw-overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

.aw-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background-color: #050815;
    box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 95;
    display: flex;
    flex-direction: column;
}

.aw-sidebar.aw-sidebar--open {
    transform: translateX(0);
}

.aw-sidebar__header {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aw-sidebar__title {
    font-size: 16px;
    font-weight: 600;
}

.aw-sidebar__close {
    border: none;
    background: transparent;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.aw-nav--sidebar {
    padding: 12px 18px 18px;
    flex: 1 1 auto;
    overflow-y: auto;
}

.aw-nav--sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.aw-nav--sidebar a {
    font-size: 15px;
    color: #E0E7FF;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.aw-nav--sidebar a:hover {
    background-color: #192852;
}

.aw-nav--sidebar a.is-active {
    background-color: #2F9CDA;
    color: #FFFFFF;
}

.aw-sidebar__footer {
    padding: 12px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .aw-sidebar__footer {
        display: none;
    }

/* Респонсив */

@media (max-width: 1024px) {
    .aw-burger {
        display: inline-flex;
    }

    .aw-nav--desktop {
        display: none;
    }

    .aw-header__inner {
        gap: 12px;
        padding-inline: 12px;
    }

    .aw-logo img {
        height: 26px;
    }

    .aw-btn {
        padding: 6px 10px;
        font-size: 13px;
    }   
}

@media (max-width: 640px) {
    .aw-header__bell-link {
        display: none;
    }

    .aw-btn .aw-btn--register {
        display: none;
    }

}

.aw-hero-slider {
	position: relative;
	max-width: 1500px;
	margin: 0px auto 0;
}

.aw-hero-slider__viewport {
	position: relative;
	overflow: hidden;
	border-radius: px;
	background-color: #050815;
}

.aw-hero-slider__track {
	display: flex;
	width: 100%;
	touch-action: pan-y;
	user-select: none;
	transition: transform 0.35s ease;
}

.aw-hero-slide {
	position: relative;
	min-width: 100%;
	height: 360px;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	overflow: hidden;
}

.aw-hero-slide__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
}

.aw-hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 8, 21, 0.92) 0%, rgba(5, 8, 21, 0.7) 35%, rgba(5, 8, 21, 0.55) 60%, rgba(5, 8, 21, 0) 100%);
}   

.aw-hero-slide__content {
	position: relative;
	z-index: 2;
	padding: 40px 40px 40px 40px;
	max-width: 460px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	color: #FFFFFF;
}

.aw-hero-slide__title {
	display: inline-block;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.aw-hero-slide__text {
	font-size: 15px;
	line-height: 1.6;
	color: #E0E7FF;
	max-width: 420px;
}

.aw-hero-slide__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	background-color: #00C8E6;
	color: #04131F;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.aw-hero-slide__btn:hover {
	background-color: #2F9CDA;
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0, 200, 230, 0.35);
}

.aw-hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background-color: rgba(5, 8, 21, 0.85);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.aw-hero-slider__arrow::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
}

.aw-hero-slider__arrow--prev {
	left: 32px;
}

.aw-hero-slider__arrow--prev::before {
	transform: rotate(-135deg);
}

.aw-hero-slider__arrow--next {
	right: 32px;
}

.aw-hero-slider__arrow--next::before {
	transform: rotate(45deg);
}

.aw-hero-slider__arrow:hover {
	background-color: #2F9CDA;
	border-color: transparent;
	transform: translateY(-50%) scale(1.04);
}

.aw-hero-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	display: flex;
	justify-content: center;
	gap: 8px;
	pointer-events: none;
}

.aw-hero-slider__dots button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: none;
	background-color: rgba(255, 255, 255, 0.35);
	padding: 0;
	pointer-events: auto;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease, width 0.15s ease;
}

.aw-hero-slider__dots button.is-active {
	width: 18px;
	background-color: #00C8E6;
	transform: translateY(-1px);
}

@media (max-width: 960px) {
	.aw-hero-slide {
		height: 320px;
	}

	.aw-hero-slide__content {
		padding: 28px 22px;
		max-width: 360px;
	}

	.aw-hero-slide__title {
		font-size: 24px;
	}

    .aw-hero-slider {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 640px) {

	.aw-hero-slide {
		height: 280px;
	}

	.aw-hero-slide__content {
		padding: 24px 18px;
		max-width: 75%;
		gap: 12px;
	}

	.aw-hero-slide__title {
		font-size: 20px;
	}

	.aw-hero-slide__text {
		font-size: 13px;
		line-height: 1.55;
	}

	.aw-hero-slide__btn {
		padding: 8px 18px;
		font-size: 13px;
	}

	.aw-hero-slider__arrow {
		display: none;
	}
}

.aw-games-bar {
	position: sticky;
    max-width: 1500px;
	top: 48px;
	z-index: 80;
	padding: 10px 0 0;
    margin: 0 auto;
	background-color: #050815;
}

.aw-games-bar__inner {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 20px 12px;
}

.aw-games-nav {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #050815;
	border-radius: 18px;
	padding: 6px 10px;
}

.aw-games-nav__scroll {
	flex: 1 1 auto;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding-right: 36px;
}

.aw-games-nav__scroll::-webkit-scrollbar {
	display: none;
}

.aw-games-nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	min-width: 100%;
    padding: 2px;
}

.aw-games-nav__item {
	flex: 0 0 auto;
}

.aw-games-nav__link {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 12px;
	background-color: #0A111D;
	color: #E0E7FF;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.aw-games-nav__link:hover {
	background-color: #192852;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(2, 8, 23, 0.7);
}

.aw-games-nav__link.is-active {
	background-color: #2F9CDA;
	color: #FFFFFF;
}

.aw-games-nav__icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.aw-games-nav__icon img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.aw-games-nav__icon--img {
	border-radius: 999px;
	background-color: transparent;
}

.aw-games-nav__label {
	line-height: 1;
}

.aw-games-nav__prev,
.aw-games-nav__more {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 30px;
	border-radius: 1px;
	border: none;
	background-color: #050815;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.aw-games-nav__prev::before,
.aw-games-nav__more::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
}

.aw-games-nav__prev {
	left: -15px;
}

.aw-games-nav__prev::before {
	transform: rotate(-135deg);
}

.aw-games-nav__more {
	right: -15px;
}

.aw-games-nav__more::before {
	transform: rotate(45deg);
}

.aw-games-nav__prev:hover,
.aw-games-nav__more:hover {
	background-color: #2F9CDA;
	box-shadow: 0 4px 12px rgba(47, 156, 218, 0.5);
	transform: translateY(-50%) scale(1.04);
}

.aw-games-nav__more.aw-games-nav__more--end {
	opacity: 0.4;
	pointer-events: none;
}

.aw-games-nav__prev--hidden {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.aw-games-bar__inner {
		padding-inline: 1px;
	}

	.aw-games-nav__link {
		font-size: 12px;
		padding-inline: 10px;
	}
}

@media (max-width: 640px) {
    .aw-games-nav__scroll {
        padding-left: 0px;
        padding-right: 0px ;
    }

    .aw-games-nav__more {
        display: none;
    }

    .aw-games-nav__prev {
        display: none;
    }

	.aw-games-bar {
		top: 48px;
	}

	.aw-games-nav__icon {
		width: 20px;
		height: 20px;
	}
}

.aw-top-games {
	margin-top: 15px;
	padding: 0 0 24px;
}

.aw-top-games__inner {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 20px;
}

.aw-top-games__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.aw-top-games__title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
	letter-spacing: 0.08em;
}

.aw-top-games__link {
	font-size: 13px;
	font-weight: 500;
	color: #2F9CDA;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease;
}

.aw-top-games__link:hover {
	color: #00C8E6;
}

.aw-top-games__scroller {
	max-width: 1500px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding-bottom: 6px;
}

/* видимый горизонтальный скролл */
.aw-top-games__scroller::-webkit-scrollbar {
	height: 6px;
}

.aw-top-games__scroller::-webkit-scrollbar-track {
	background-color: #050815;
}

.aw-top-games__scroller::-webkit-scrollbar-thumb {
	background-color: #2F9CDA;
	border-radius: 4px;
}

.aw-top-games__grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 150px;
	grid-template-rows: repeat(2, 150px);
	gap: 12px;
	width: max-content;
	min-height: calc(150px * 2 + 12px);
}

.aw-game-card {
	width: 150px;
	height: 150px;
}

.aw-game-card__thumb {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	background-color: #050815;
}

.aw-game-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.aw-game-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 8, 21, 0.1) 0%, rgba(5, 8, 21, 0.9) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.aw-game-card:hover .aw-game-card__overlay {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.aw-game-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.aw-game-card__btn--primary {
	background-color: #00C8E6;
	color: #04131F;
}

.aw-game-card__btn--primary:hover {
	background-color: #2F9CDA;
	color: #FFFFFF;
	box-shadow: 0 4px 14px rgba(47, 156, 218, 0.6);
	transform: translateY(-1px);
}

.aw-game-card__btn--ghost {
	background-color: transparent;
	color: #FFFFFF;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.aw-game-card__btn--ghost:hover {
	background-color: rgba(0, 200, 230, 0.12);
	color: #FFFFFF;
	box-shadow: 0 0 0 1px #00C8E6;
	transform: translateY(-1px);
}


@media (max-width: 1024px) {
	.aw-top-games__inner {
		padding-inline: 12px;
	}

	.aw-top-games__title {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.aw-top-games__head {
		margin-bottom: 12px;
	}

	.aw-top-games__title {
		font-size: 15px;
	}

	.aw-top-games__link {
		font-size: 12px;
	}
}

.aw-main {
	max-width: 1500px;
	margin: 0px auto 20px;
	padding: 28px 24px 32px;
	background-color: #050815;
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
	color: #E0E7FF;
	line-height: 1.6;
}

.aw-main h1,
.aw-main h2,
.aw-main h3 {
	color: #FFFFFF;
	font-weight: 700;
	line-height: 1.3;
}

.aw-main h1 {
	font-size: 28px;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.aw-main h2 {
	font-size: 22px;
	margin-top: 28px;
	margin-bottom: 14px;
}

.aw-main h3 {
	font-size: 18px;
	margin-top: 24px;
	margin-bottom: 12px;
}

.aw-main p {
	font-size: 15px;
	margin-bottom: 14px;
	color: #D1D7F0;
}

.aw-main img {
	display: block;
	max-width: 100%;
    
	height: auto;
	border-radius: 16px;
	margin: 18px auto 20px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

/* div-обёртка для таблиц (горизонтальный скролл при необходимости) */
.aw-main div {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	margin: 18px 0 18px;
}

/* таблица внутри main */
.aw-main table {
	width: 100%;
	border-collapse: collapse;
	min-width: 520px;
	background-color: #0A111D;
	border-radius: 14px;
	overflow: hidden;
}

.aw-main thead {
	background-color: #192852;
}

.aw-main thead th {
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	padding: 10px 14px;
	color: #FFFFFF;
	white-space: nowrap;
}

.aw-main tbody td {
	font-size: 14px;
	padding: 10px 14px;
	color: #E0E7FF;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aw-main tbody tr:nth-child(even) {
	background-color: #060B18;
}

.aw-main tbody tr:hover {
	background-color: #151E36;
}

/* списки внутри main */

.aw-main ul,
.aw-main ol {
	margin: 10px 0 14px 20px;
	padding-left: 12px;
}

.aw-main ul li,
.aw-main ol li {
	font-size: 15px;
	color: #D1D7F0;
	margin-bottom: 6px;
}

.aw-main ul li::marker {
	color: #2F9CDA;
}

.aw-main ol li::marker {
	color: #00C8E6;
	font-weight: 600;
}

/* адаптация отступов на небольших экранах */

@media (max-width: 1024px) {
	.aw-main {
		margin: 24px auto 32px;
		padding: 22px 18px 26px;
	}
}

@media (max-width: 640px) {
	.aw-main {
		margin: 18px 12px 26px;
		padding: 18px 14px 22px;
	}

	.aw-main h1 {
		font-size: 22px;
	}

	.aw-main h2 {
		font-size: 18px;
	}

	.aw-main h3 {
		font-size: 16px;
	}

	.aw-main p {
		font-size: 14px;
	}
}

.aw-footer {
	margin-top: 40px;
	background-color: #050815;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: #D1D7F0;
	font-size: 13px;
}

.aw-footer__inner {
	max-width: 1500px;
	margin: 0 auto;
	padding: 20px 20px 16px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
}

.aw-footer__col {
	flex: 1 1 0;
}

.aw-footer__col--brand {
	max-width: 420px;
}

.aw-footer__logo img {
	display: block;
	height: 28px;
	margin-bottom: 10px;
}

.aw-footer__text {
	margin: 0;
	line-height: 1.6;
	color: #B5BEDB;
}

.aw-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	justify-content: flex-end;
}

.aw-footer__nav a {
	color: #E0E7FF;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease;
}

.aw-footer__nav a:hover {
	color: #2F9CDA;
}

.aw-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.aw-footer__copy {
	display: block;
	max-width: 1500px;
	margin: 0 auto;
	padding: 10px 20px 14px;
	color: #7E88A8;
	font-size: 12px;
}

@media (max-width: 960px) {
	.aw-footer__inner {
		padding-inline: 16px;
		flex-direction: column;
		gap: 18px;
	}

	.aw-footer__col--brand {
		max-width: none;
	}

	.aw-footer__nav {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.aw-footer__inner {
		padding-inline: 12px;
	}

	.aw-footer__copy {
		padding-inline: 12px;
		text-align: left;
	}
}

html {
	scrollbar-width: thin;
	scrollbar-color: #2F9CDA #050815;
}

body::-webkit-scrollbar {
	width: 8px;
}

body::-webkit-scrollbar-track {
	background-color: #050815;
}

body::-webkit-scrollbar-thumb {
	background: linear-gradient(#2F9CDA, #00C8E6);
	border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
	background: #00C8E6;
}