:root {
	--bg-1: #09090c;
	--bg-2: #14141c;
	--bg-3: #1a1a23;
	--bg-4: #2c2c3a;
	--border: #2a2a35;
	--accent: #ff6e00;
	--accent-h: #ff8521;
	--accent-d: #d75c00;
	--red: #dc3835;
	--green: #05c489;
	--text: #ffffff;
	--text-2: #c8c8d3;
	--text-3: #9c9cab;
	--text-4: #656772;
	--radius: 6px;
	--radius-l: 10px;
	--font: 'Roboto Condensed', Roboto, Arial, Helvetica, sans-serif;
	--font-body: 'Roboto', Arial, sans-serif;
	--shadow: 0 6px 18px rgba(0,0,0,.4);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.aw-body {
	background: var(--bg-1);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }
button { font-family: inherit; cursor: pointer; }

.aw-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Header */
.aw-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--bg-3);
	border-bottom: 1px solid var(--border);
}
.aw-header__row {
	display: flex; align-items: center; gap: 24px;
	height: 64px;
}
.aw-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.aw-logo img { height: 28px; width: auto; }

.aw-nav {
	display: flex; gap: 6px; flex: 1; min-width: 0; overflow-x: auto;
	scrollbar-width: none;
}
.aw-nav::-webkit-scrollbar { display: none; }
.aw-nav__item {
	font-family: var(--font); font-weight: 500; font-size: 14px;
	text-transform: uppercase; color: var(--text-2);
	padding: 8px 12px; border-radius: var(--radius);
	white-space: nowrap; transition: background .15s, color .15s;
	display: inline-flex; align-items: center; gap: 6px;
}
.aw-nav__item:hover { background: var(--bg-4); color: var(--text); }
.aw-nav__item.is-active { background: var(--accent); color: var(--bg-1); }
.aw-nav__badge {
	background: var(--green); color: var(--bg-1);
	font-size: 10px; font-weight: 700; line-height: 1;
	padding: 3px 6px; border-radius: 4px; text-transform: uppercase;
}

.aw-header__actions { display: flex; align-items: center; gap: 8px; }

/* Buttons */
.aw-btn {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--font); font-weight: 700; font-size: 14px;
	text-transform: uppercase; letter-spacing: .03em;
	padding: 10px 20px; border-radius: var(--radius); border: 0;
	transition: background .15s, transform .1s, box-shadow .15s;
	cursor: pointer; white-space: nowrap;
}
.aw-btn--primary { background: var(--accent); color: #000; }
.aw-btn--primary:hover { background: var(--accent-h); color: #000; }
.aw-btn--primary:active { transform: translateY(1px); }
.aw-btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.aw-btn--ghost:hover { background: var(--bg-4); color: var(--text); }
.aw-btn--login {
	background: var(--bg-4); color: var(--text);
	border-radius: 2px; padding: 9px 18px;
}
.aw-btn--login:hover { background: #383848; color: var(--text); }
.aw-btn--register {
	background: var(--green); color: var(--bg-1);
	border-radius: 2px; padding: 9px 18px;
}
.aw-btn--register:hover { background: #04b07b; color: var(--bg-1); }

/* Burger */
.aw-burger {
	display: none; width: 36px; height: 36px; border: 0; background: transparent;
	flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.aw-burger span { width: 22px; height: 2px; background: var(--text); transition: transform .2s, opacity .2s; }
.aw-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.aw-burger.is-open span:nth-child(2) { opacity: 0; }
.aw-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero slider — ribbon with 3 visible slides */
.aw-hero { padding: 20px 0 0; }
.aw-hero__slider { position: relative; }
.aw-hero__viewport { overflow: hidden; }
.aw-hero__track {
	display: flex; gap: 12px;
	transition: transform .45s ease;
}
.aw-hero__slide {
	flex: 0 0 calc((100% - 24px) / 3);
	position: relative; aspect-ratio: 16 / 9;
	overflow: hidden; display: block;
	background: var(--bg-3); border-radius: var(--radius-l);
}
.aw-hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.aw-hero__slide::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(9,9,12,.85) 0%, rgba(9,9,12,.55) 38%, transparent 70%);
	pointer-events: none; z-index: 1;
}
.aw-hero__caption {
	position: absolute; left: 14px; right: 14px; top: 14px; bottom: 14px;
	display: flex; flex-direction: column; gap: 6px;
	z-index: 2;
}
.aw-hero__brand {
	font-family: var(--font); font-weight: 700; font-size: 11px;
	letter-spacing: .15em; color: var(--text); text-transform: uppercase;
	background: rgba(0,0,0,.5); padding: 3px 8px; border-radius: 2px;
	align-self: flex-start;
}
.aw-hero__title {
	margin: 4px 0 0; font-family: var(--font); font-weight: 700;
	font-size: clamp(15px, 1.4vw, 20px); line-height: 1.15; color: var(--text);
	text-shadow: 0 2px 6px rgba(0,0,0,.7);
	max-width: 65%;
}
.aw-hero__amount {
	font-family: var(--font); font-weight: 700;
	font-size: clamp(15px, 1.5vw, 22px); color: var(--accent);
	text-shadow: 0 2px 6px rgba(0,0,0,.7);
	max-width: 65%;
}
.aw-hero__cta {
	align-self: flex-start; margin-top: auto; padding: 7px 14px; font-size: 12px;
	background: var(--green); color: var(--bg-1); border-radius: 2px;
}
.aw-hero__cta:hover { background: #04b07b; color: var(--bg-1); }
.aw-hero__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: rgba(0,0,0,.65); color: var(--text); border: 0;
	width: 36px; height: 56px; border-radius: 4px; font-size: 22px; line-height: 1;
	transition: background .15s; z-index: 3;
}
.aw-hero__nav:hover { background: rgba(0,0,0,.9); }
.aw-hero__nav--prev { left: -8px; }
.aw-hero__nav--next { right: -8px; }
.aw-hero__dots {
	display: flex; gap: 6px; justify-content: center; margin-top: 10px;
}
.aw-hero__dot {
	width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4);
	border: 0; padding: 0; transition: background .15s, width .2s;
}
.aw-hero__dot.is-active { background: var(--accent); width: 22px; border-radius: 4px; }

/* Filter chips */
.aw-filters { padding: 16px 0; }
.aw-chips {
	display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
	scrollbar-width: none;
}
.aw-chips::-webkit-scrollbar { display: none; }
.aw-chip {
	font-family: var(--font); font-weight: 500; font-size: 13px;
	text-transform: uppercase; color: var(--text-2);
	background: var(--bg-3); border: 1px solid var(--border);
	padding: 8px 14px; border-radius: 999px; white-space: nowrap;
	transition: background .15s, color .15s, border-color .15s;
}
.aw-chip:hover { background: var(--bg-4); color: var(--text); }
.aw-chip.is-active { background: var(--accent); color: var(--bg-1); border-color: var(--accent); }

/* Game grid */
.aw-games { padding: 12px 0 24px; }
.aw-games__head {
	display: flex; align-items: center; justify-content: space-between;
	margin: 8px 0 14px;
}
.aw-games__title {
	margin: 0; font-family: var(--font); font-weight: 700;
	font-size: 18px; text-transform: uppercase; letter-spacing: .05em;
	color: var(--text);
}
.aw-games__more {
	font-family: var(--font); font-weight: 500; font-size: 13px;
	color: var(--text-3); text-transform: uppercase;
}
.aw-games__more:hover { color: var(--accent); }

.aw-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 12px;
}
.aw-tile {
	position: relative; background: var(--bg-3); border-radius: var(--radius);
	overflow: hidden; aspect-ratio: 1; display: block;
	transition: transform .15s, box-shadow .15s;
}
.aw-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.aw-tile__img {
	width: 100%; height: 100%; object-fit: cover;
	background: var(--bg-3);
}
.aw-tile__name {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 6px 8px; font-size: 11px; font-weight: 500;
	color: var(--text-2); background: linear-gradient(transparent, rgba(0,0,0,.85));
	text-align: left; line-height: 1.2;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
	overflow: hidden;
}
.aw-tile__badge {
	position: absolute; left: 6px; top: 6px; z-index: 2;
	font-family: var(--font); font-weight: 700; font-size: 10px;
	padding: 3px 6px; border-radius: 3px; text-transform: uppercase;
	color: var(--bg-1);
}
.aw-tile__badge--hot { background: var(--red); color: var(--text); }
.aw-tile__badge--new { background: var(--green); }
.aw-tile__heart {
	position: absolute; right: 6px; top: 6px; z-index: 2;
	width: 24px; height: 24px; border-radius: 50%;
	display: grid; place-items: center;
	color: var(--text); background: rgba(0,0,0,.4);
	font-size: 14px;
	transition: background .15s, color .15s;
}
.aw-tile:hover .aw-tile__heart { background: rgba(0,0,0,.7); }
.aw-tile__heart:hover { color: var(--accent); }
.aw-tile__hover {
	position: absolute; inset: 0; display: flex; flex-direction: column;
	gap: 8px; align-items: center; justify-content: center;
	background: rgba(0,0,0,.65); opacity: 0; transition: opacity .15s;
}
.aw-tile:hover .aw-tile__hover { opacity: 1; }
.aw-tile__demo {
	font-family: var(--font); font-weight: 500; font-size: 13px;
	color: var(--text-2); text-transform: uppercase;
	border: 1px solid var(--text-3); padding: 6px 14px; border-radius: var(--radius);
}
.aw-tile__demo:hover { color: var(--text); border-color: var(--text); }

/* Collections */
.aw-collections { padding: 8px 0 28px; }
.aw-coll {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 10px; margin-top: 14px;
}
.aw-coll__tag {
	display: flex; align-items: center; gap: 10px;
	background: var(--bg-3); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 10px 14px;
	color: var(--text); font-family: var(--font); font-weight: 500;
	font-size: 14px; text-transform: uppercase;
	transition: background .15s, border-color .15s;
}
.aw-coll__tag:hover { background: var(--bg-4); border-color: var(--accent); color: var(--text); }
.aw-coll__tag img { width: 24px; height: 24px; }
.aw-coll__tag span {
	margin-left: auto; background: var(--bg-1); color: var(--text-3);
	font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 700;
}

/* Content area */
.aw-content { padding: 28px 0 40px; background: var(--bg-1); }
.aw-content__wrap { max-width: 1280px; }
.aw-content__wrap--review {
	display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start;
}
.aw-article {
	background: var(--bg-3); border: 1px solid var(--border);
	border-radius: var(--radius-l); padding: 32px;
}
.aw-article--centered { text-align: center; }
.aw-article__title {
	margin: 0 0 18px; font-family: var(--font); font-weight: 700;
	font-size: 32px; line-height: 1.2; color: var(--text);
}
.aw-article__body { color: var(--text-2); }
.aw-article__body h2,
.aw-article__body h3,
.aw-article__body h4 {
	font-family: var(--font); color: var(--text); margin: 28px 0 12px;
}
.aw-article__body h2 { font-size: 24px; }
.aw-article__body h3 { font-size: 19px; }
.aw-article__body h4 { font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.aw-article__body p { margin: 0 0 14px; }
.aw-article__body ul,
.aw-article__body ol { padding-left: 22px; margin: 0 0 14px; }
.aw-article__body li { margin: 6px 0; }
.aw-article__body a { color: var(--accent); }
.aw-article__body a:hover { color: var(--accent-h); text-decoration: underline; }
.aw-article__body blockquote {
	border-left: 3px solid var(--accent); padding: 8px 0 8px 16px;
	margin: 14px 0; color: var(--text); font-style: italic;
}
.aw-article__body table {
	width: 100%; border-collapse: collapse; margin: 14px 0;
	background: var(--bg-2); border-radius: var(--radius); overflow: hidden;
}
.aw-article__body th,
.aw-article__body td {
	padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border);
}
.aw-article__body th { background: var(--bg-4); color: var(--text); font-family: var(--font); }
.aw-article__body code {
	background: var(--bg-1); padding: 2px 6px; border-radius: 3px;
	font-size: 13px; color: var(--accent-h);
}

/* Toplist */
.aw-toplist { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 28px; }
.aw-toprow {
	display: grid; grid-template-columns: 50px 1.4fr .8fr 1.5fr auto;
	gap: 16px; align-items: center;
	background: var(--bg-2); border: 1px solid var(--border);
	border-radius: var(--radius-l); padding: 14px 18px;
	transition: border-color .15s;
}
.aw-toprow:hover { border-color: var(--accent); }
.aw-toprow__rank {
	font-family: var(--font); font-weight: 700; font-size: 22px; color: var(--accent);
	text-align: center;
}
.aw-toprow__brand { display: flex; flex-direction: column; gap: 4px; }
.aw-toprow__name { font-family: var(--font); font-weight: 700; font-size: 18px; color: var(--text); }
.aw-toprow__pill {
	align-self: flex-start; font-size: 11px; font-weight: 500;
	color: var(--green); background: rgba(5,196,137,.1);
	padding: 2px 8px; border-radius: 4px; text-transform: uppercase;
}
.aw-toprow__rating {
	display: flex; align-items: baseline; gap: 4px;
	font-family: var(--font);
}
.aw-toprow__rating-num {
	font-size: 28px; font-weight: 700; color: var(--text);
}
.aw-toprow__rating-label { color: var(--text-3); font-size: 14px; }
.aw-toprow__bonus { color: var(--text-2); font-size: 14px; }
.aw-toprow__cta { padding: 12px 24px; }

/* Review info card */
.aw-info { position: sticky; top: 80px; }
.aw-info__card {
	background: var(--bg-2); border: 1px solid var(--border);
	border-radius: var(--radius-l); padding: 22px;
}
.aw-info__rating {
	font-family: var(--font); display: flex; align-items: baseline; gap: 4px;
	margin-bottom: 16px;
}
.aw-info__rating-num { font-size: 44px; font-weight: 700; color: var(--accent); }
.aw-info__rating span { color: var(--text-3); font-size: 16px; }
.aw-info__list {
	margin: 0 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px;
	font-size: 13px;
}
.aw-info__list dt { color: var(--text-3); }
.aw-info__list dd { margin: 0; color: var(--text); font-weight: 500; }
.aw-info__cta { width: 100%; padding: 12px 16px; }

/* Landing */
.aw-landing { padding: 40px 0; background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-1) 100%); }
.aw-landing__hero {
	display: flex; align-items: center; min-height: 280px;
}
.aw-landing__copy { max-width: 720px; margin: 0 auto; text-align: center; }
.aw-landing__h1 {
	margin: 0 0 14px; font-family: var(--font); font-weight: 700;
	font-size: clamp(28px, 4vw, 44px); line-height: 1.15; color: var(--text);
}
.aw-landing__lead { color: var(--text-2); font-size: 17px; margin: 0 0 22px; }
.aw-landing__cta { padding: 14px 32px; font-size: 16px; }
.aw-landing__cta-bottom { margin-top: 20px; padding: 14px 32px; font-size: 16px; }

/* Footer */
.aw-footer {
	background: var(--bg-3); border-top: 1px solid var(--border);
	padding: 32px 0 18px; margin-top: 32px; color: var(--text-3);
}
.aw-footer__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.aw-footer__col { display: flex; flex-direction: column; gap: 6px; }
.aw-footer__col a { color: var(--text-3); font-size: 14px; }
.aw-footer__col a:hover { color: var(--accent); }
.aw-footer__h {
	margin: 0 0 8px; font-family: var(--font); font-weight: 700;
	font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
	color: var(--text);
}
.aw-footer__h--m { margin-top: 16px; }
.aw-footer__pays { display: flex; flex-wrap: wrap; gap: 6px; }
.aw-pay {
	background: var(--bg-1); border: 1px solid var(--border);
	font-family: var(--font); font-weight: 500; font-size: 11px;
	padding: 4px 8px; border-radius: 3px; color: var(--text-2);
}
.aw-footer__contact { display: block; margin-top: 8px; }
.aw-footer__socials { display: flex; gap: 8px; margin-top: 10px; }
.aw-soc {
	width: 32px; height: 32px; border-radius: 50%; background: var(--bg-1);
	display: grid; place-items: center; transition: background .15s;
}
.aw-soc:hover { background: var(--bg-4); }
.aw-soc img { width: 16px; height: 16px; }

.aw-footer__licenses {
	display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
	padding: 18px 0; border-bottom: 1px solid var(--border);
}
.aw-footer__licenses img { height: 28px; width: auto; opacity: .8; }
.aw-footer__ga { height: 36px !important; }
.aw-footer__age {
	border: 2px solid var(--text-3); border-radius: 50%;
	width: 36px; height: 36px; display: grid; place-items: center;
	color: var(--text-3); font-weight: 700; font-size: 14px;
	margin-left: auto;
}
.aw-footer__bottom {
	padding-top: 18px; display: flex; justify-content: space-between;
	flex-wrap: wrap; gap: 14px; font-size: 12px;
}
.aw-footer__warn { color: var(--text-4); font-size: 11px; }

/* To-top button */
.aw-totop {
	position: fixed; right: 20px; bottom: 20px; z-index: 40;
	width: 44px; height: 44px; border-radius: 50%; border: 0;
	background: var(--accent); color: var(--bg-1);
	font-size: 20px; font-weight: 700;
	opacity: 0; transform: translateY(8px); pointer-events: none;
	transition: opacity .2s, transform .2s, background .15s;
	box-shadow: var(--shadow);
}
.aw-totop:hover { background: var(--accent-h); }
.aw-totop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Responsive */
@media (max-width: 1100px) {
	.aw-grid { grid-template-columns: repeat(5, 1fr); }
	.aw-content__wrap--review { grid-template-columns: 1fr; }
	.aw-info { position: static; }
}
@media (max-width: 1024px) {
	.aw-burger { display: flex; }
	.aw-nav {
		position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
		background: var(--bg-3); flex-direction: column; gap: 0;
		padding: 16px; overflow-y: auto;
		transform: translateX(100%); transition: transform .25s;
		z-index: 49;
	}
	.aw-nav.is-open { transform: translateX(0); }
	.aw-nav__item { padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; }
	.aw-toprow { grid-template-columns: 50px 1fr auto; gap: 10px 16px; }
	.aw-toprow__rating { grid-column: 3; grid-row: 1; }
	.aw-toprow__bonus { grid-column: 1 / -1; grid-row: 2; }
	.aw-toprow__cta { grid-column: 1 / -1; grid-row: 3; justify-self: stretch; }
}
@media (max-width: 900px) {
	.aw-hero__slide { flex: 0 0 calc((100% - 12px) / 2); }
}
@media (max-width: 768px) {
	.aw-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
	.aw-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.aw-article { padding: 22px; }
	.aw-article__title { font-size: 24px; }
	.aw-hero__title { font-size: 14px; }
	.aw-hero__amount { font-size: 14px; }
	.aw-hero__cta { padding: 6px 10px; font-size: 11px; }
}
@media (max-width: 560px) {
	.aw-hero__slide { flex: 0 0 100%; }
}
@media (max-width: 480px) {
	.aw-grid { grid-template-columns: repeat(3, 1fr); }
	.aw-footer__grid { grid-template-columns: 1fr; }
	.aw-coll { grid-template-columns: 1fr 1fr; }
	.aw-header__row { gap: 12px; }
	.aw-btn { padding: 8px 14px; font-size: 12px; }
	.aw-header__actions .aw-btn--ghost { display: none; }
}
