/*!
Theme Name: ATHENA SPINS
*/

:root {
	--font-family: "Figtree", sans-serif;
	--second-family: "DM Sans", sans-serif;

	--as-container: 1450px;
	--as-bg: #0c1019;
	--as-white: #fff;
	--as-para: #c2c2c2;

	--as-topbar-bg: #171f2c;
	--as-btn-primary: #1004bc;

	--as-border: rgba(255, 255, 255, 0.08);
	--as-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
	--as-radius-xl: 26px;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

.as-body {
	margin: 0;
	background: var(--as-bg);
	color: var(--as-white);
	font-family: var(--font-family);
}

.as-container {
	width: 100%;
	max-width: var(--as-container);
	margin: 0 auto;
	padding: 0 20px;
}

a {
	text-decoration: none;
	color: inherit;
}

p {
	margin: 0;
	color: var(--as-para);
}

.as-lock {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}


.as-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	user-select: none;
	white-space: nowrap;

	font-family: var(--font-family);
	font-weight: 900;
	font-size: 15px;
	text-align: center;

	transition: transform .15s ease, opacity .15s ease;
}

.as-btn:hover {
	opacity: .92;
}

.as-btn:active {
	transform: translateY(1px);
}

.as-btn--primary {
	background: var(--as-btn-primary);
	color: #fff;
}

.as-btn--light {
	background: #fff;
	color: #0c1831;
}

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

.as-topbar {
	background: var(--as-topbar-bg);
	padding: 10px 0;
}

.as-topbar__text {
	margin: 0;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 14px;
	text-align: center;
	color: #fff;
}

.as-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(12, 16, 25, 0.6);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--as-border);
}

.as-header__row {
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.as-brand__img {
	height: 40px;
	width: auto;
}

.as-nav {
	display: flex;
	align-items: center;
	gap: 44px;
}

.as-nav__link {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 15px;
	text-align: center;
	color: #fff;
	opacity: .95;
}

.as-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.as-burger {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 1px solid var(--as-border);
	background: rgba(255, 255, 255, 0.04);
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
}

.as-burger__line {
	width: 18px;
	height: 2px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
}

.as-sidebar,
.as-overlay {
	display: none;
}

.as-sidebar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.as-brand--sm .as-brand__img {
	height: 34px;
}

.as-sidebar__close {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid var(--as-border);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	cursor: pointer;
}

.as-sidebar__nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.as-sidebar__link {
	padding: 12px;
	border-radius: 12px;
	border: 1px solid var(--as-border);
	background: rgba(255, 255, 255, 0.03);
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 15px;
	color: #fff;
}

.as-hero {
	padding: 30px 0 50px;
}

.as-hero__card {
	position: relative;
	min-height: 520px;
	border-radius: var(--as-radius-xl);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: var(--as-shadow);

	background-repeat: no-repeat;
	background-position: right center;
}

.as-hero__card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;

	background: linear-gradient(90deg,
			rgba(8, 12, 20, 0.96) 0%,
			rgba(8, 12, 20, 0.88) 35%,
			rgba(8, 12, 20, 0.35) 60%,
			rgba(8, 12, 20, 0.08) 100%);
}

.as-hero__content {
	position: relative;
	z-index: 2;
	max-width: 640px;
	padding: 90px 0 70px 70px;
}

.as-hero__title {
	margin: 0 0 16px;
	font-weight: 900;
	font-size: 66px;
	color: #f9faf4;
	letter-spacing: -0.02em;
}

.as-hero__desc {
	max-width: 440px;
	margin-bottom: 26px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.45;
	color: #c2c2c2;
}

.as-hero__cta {
	width: 150px;
	margin-bottom: 44px;
}

.as-hero__stats {
	display: flex;
	gap: 46px;
	flex-wrap: wrap;
}

.as-stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.as-stat__num {
	font-weight: 900;
	font-size: 37px;
	letter-spacing: -0.01em;
	color: #fff;
}

.as-stat__label {
	font-weight: 500;
	font-size: 13px;
	color: #c2c2c2;
}

@media (max-width:1100px) {
	.as-hero__content {
		padding: 70px 40px;
	}

	.as-hero__title {
		font-size: 56px;
	}
}

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

	.as-header__cta {
		display: none;
	}

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

	.as-sidebar {
		display: block;
	}

	.as-overlay:not([hidden]) {
		display: block;
	}

	.as-sidebar {
		position: fixed;
		top: 0;
		right: -340px;
		width: 340px;
		height: 100vh;
		background: #0b1220;
		border-left: 1px solid var(--as-border);
		z-index: 70;
		padding: 18px;
		transition: right .22s ease;
	}

	.as-sidebar--open {
		right: 0;
	}

	.as-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.55);
		z-index: 60;
	}

	.as-hero__card {
		min-height: auto;
		background-position: center;
	}

	.as-hero__content {
		padding: 50px 24px 40px;
		max-width: 100%;
	}
}

@media (max-width:680px) {
	.as-topbar__text {
		font-size: 12px;
	}

	.as-hero {
		padding: 18px 0 30px;
	}

	.as-hero__title {
		font-size: 44px;
	}

	.as-hero__desc {
		font-size: 15px;
	}

	.as-hero__stats {
		gap: 22px;
	}

	.as-stat__num {
		font-size: 28px;
	}
}


.as-feat__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

/* Card */
.as-feat__card {
	border-radius: 15px;
	background: #121622;
	padding: 22px;
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 16px;
	align-items: center;
}

.as-feat__icon {
	border-radius: 15px;
	background: #171f2c;
	display: flex;
	align-items: center;
	justify-content: center;
}


.as-feat__title {
	margin: 0 0 6px;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 18px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #858c9f;
}

.as-feat__text {
	margin: 0;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 131%;
	color: #7a7d8c;
}


@media (max-width: 1100px) {
	.as-feat__grid {
		grid-template-columns: 1fr;
	}

	.as-feat__card {
		grid-template-columns: 72px 1fr;
	}
}

@media (max-width: 560px) {
	.as-feat {
		padding: 18px 0 40px;
	}

	.as-feat__card {
		padding: 18px;
		grid-template-columns: 64px 1fr;
		gap: 14px;
	}

	.as-feat__icon {
		width: 64px;
		height: 64px;
	}

	.as-feat__title {
		font-size: 16px;
	}

	.as-feat__text {
		font-size: 15px;
	}
}

.as-slots {
	padding: 60px 0 60px;
}

.as-slots__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	border-top: 1px solid #35384c;
	border-bottom: 1px solid #35384c;
}

.as-slots__title {
	margin: 0;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 24px;
	line-height: 137%;
	padding: 5px 0px;
	color: #fff;
}

.as-slots__more {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 137%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #7b72ff;
}


.as-slots__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.as-slot {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	background: #121622;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform .15s ease, opacity .15s ease;
}

.as-slot:hover {
	opacity: .95;
	transform: translateY(-1px);
}

.as-slot__thumb {
	background: #121622;
	overflow: hidden;
}

.as-slot__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.as-slot__info {
	background: #171f2c;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.as-slot__name {
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 16px;
	line-height: 137%;
	color: #858c9f;
}

.as-slot__tag {
	padding: 2px 10px;
	height: 22px;
	border-radius: 999px;

	border: 1px solid rgba(123, 114, 255, 0.35);
	background: rgba(123, 114, 255, 0.08);

	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-family: var(--font-family);
	font-weight: 500;
	font-size: 12px;
	line-height: 137%;
	color: #7b72ff;
}

@media (max-width: 1200px) {
	.as-slots__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 780px) {
	.as-slots__grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 480px) {
	.as-slots__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.as-slots__grid {
		grid-template-columns: 1fr;
	}
}

.as-np {
	padding: 28px 0 70px;
}

.as-np__card {
	border-radius: 26px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
	background-repeat: no-repeat;
	background-position: center right;
	display: flex;
	align-items: center;
	background-size: contain;
}

.as-np__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
			rgba(8, 12, 20, 0.95) 0%,
			rgba(8, 12, 20, 0.82) 45%,
			rgba(8, 12, 20, 0.20) 75%,
			rgba(8, 12, 20, 0.00) 100%);
}

.as-np__card {
	position: relative;
}

.as-np__content {
	position: relative;
	z-index: 2;
	max-width: 650px;
	padding: 55px 60px;
}

.as-np__title {
	margin: 0 0 14px;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 60px;
	line-height: 1.05;
	color: #f9faf4;
}

.as-np__desc {
	margin: 0 0 22px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 131%;
	color: #868686;
	max-width: 520px;
}

.as-np__btn {
	width: 150px;
}

@media (max-width: 992px) {
	.as-np__content {
		padding: 44px 34px;
	}

	.as-np__title {
		font-size: 46px;
	}

	.as-np__desc {
		font-size: 18px;
	}

	.as-np__card {
		background-position: center;
	}
}

@media (max-width: 560px) {
	.as-np {
		padding: 18px 0 45px;
	}

	.as-np__content {
		padding: 34px 18px;
	}

	.as-np__title {
		font-size: 36px;
	}

	.as-np__desc {
		font-size: 16px;
	}

	.as-np__card::before {
		background: linear-gradient(180deg,
				rgba(8, 12, 20, 0.92) 0%,
				rgba(8, 12, 20, 0.72) 55%,
				rgba(8, 12, 20, 0.25) 100%);
	}
}


.as-faq {
	padding: 70px 0 90px;
	background: #0c1019;
}

.as-faq__title {
	margin: 0 0 16px;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 54px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}

.as-faq__intro {
	margin: 0 auto 42px;
	max-width: 720px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 190%;
	text-align: center;
	color: #fff;
	opacity: 0.9;
}

.as-faq__list {
	max-width: 760px;
	margin: 0 auto;
}

.as-faq__item {
	padding: 18px 0;
	border-bottom: 3px solid #fff;
}

.as-faq__q {
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.as-faq__qtext {
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 24px;
	color: #fff;
	text-align: left;
}

.as-faq__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.as-faq__icon--open {
	display: none;
}

.as-faq__icon--closed {
	display: inline-flex;
}

.as-faq__a {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.25s ease;
}

.as-faq__desc {
	margin: 10px 0 0;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #858c9f;
}

.as-faq__item--open .as-faq__a {
	max-height: 260px;
}

.as-faq__item--open .as-faq__icon--open {
	display: inline-flex;
}

.as-faq__item--open .as-faq__icon--closed {
	display: none;
}


@media (max-width: 768px) {
	.as-faq {
		padding: 52px 0 70px;
	}

	.as-faq__title {
		font-size: 38px;
	}

	.as-faq__qtext {
		font-size: 18px;
	}

	.as-faq__desc {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.as-faq__title {
		font-size: 30px;
	}

	.as-faq__intro {
		margin-bottom: 28px;
	}

	.as-faq__icon {
		width: 34px;
		height: 34px;
	}

	.as-faq__icon svg {
		width: 34px;
		height: 34px;
	}
}

.as-how {
	padding: 80px 0 90px;
}

.as-how__title {
	margin: 0 0 14px;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 44px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}

.as-how__intro {
	margin: 0 auto 44px;
	max-width: 720px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 13px;
	line-height: 190%;
	text-align: center;
	color: #fff;
	opacity: 0.9;
}

.as-how__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 44px;
	align-items: start;
	max-width: 1130px;
	margin: 0 auto;
}

.as-how__item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.as-how__num {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: #1004bc;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
	flex: 0 0 auto;
}

.as-how__h {
	margin: 0 0 6px;
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 24px;
	color: #858c9f;
}

.as-how__p {
	margin: 0;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 131%;
	color: #c9c9c9;
	max-width: 260px;
}

@media (max-width: 900px) {
	.as-how {
		padding: 60px 0 70px;
	}

	.as-how__grid {
		grid-template-columns: 1fr;
		gap: 22px;
		max-width: 560px;
	}

	.as-how__p {
		max-width: 100%;
	}
}

@media (max-width: 520px) {
	.as-how__title {
		font-size: 32px;
	}

	.as-how__intro {
		font-size: 12px;
	}
}


.as-devices {
	padding: 60px 0 80px;
	background: #0c1019;
}

.as-devices__card {
	background: #171f2c;
	border-radius: 20px;
	padding: 50px 40px 44px;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.as-devices__title {
	margin: 0 0 14px;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 44px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}

.as-devices__grid {
	display: grid;
	margin-top: 60px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px;
	align-items: center;
}

.as-device {
	text-align: center;
}

.as-device__icon {
	margin-bottom: 14px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.as-device__icon img {
	max-height: 100%;
	width: auto;
	opacity: 0.9;
}

.as-device__title {
	margin: 0 0 6px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	text-align: center;
	color: #fff;
}

.as-device__text {
	margin: 0;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 137%;
	text-align: center;
	color: #c9c9c9;
}

@media (max-width: 900px) {
	.as-devices__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.as-devices__card {
		padding: 36px 26px 34px;
	}
}

@media (max-width: 480px) {
	.as-devices {
		padding: 40px 0 60px;
	}

	.as-devices__title {
		font-size: 18px;
		margin-bottom: 28px;
	}

	.as-device__text {
		font-size: 15px;
	}
}

.as-footer {
	background: #121622;
	padding: 56px 0 40px;
}

.as-footer .as-container {
	max-width: 1030px !important;
}

.as-footer__top {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 60px;
	align-items: start;
}

.as-footer__brand {
	display: inline-flex;
	align-items: center;
}

.as-footer__logo {
	height: 54px;
	width: auto;
}

.as-footer__disc {
	max-width: 680px;
}

.as-footer__disc-title {
	margin: 0 0 10px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 12px;
	line-height: 200%;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.as-footer__disc-text {
	margin: 0 0 16px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 179%;
	color: #fff;
	opacity: 0.9;
}

.as-footer__badges {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.as-footer__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.95;
	transition: opacity .15s ease, transform .15s ease;
}

.as-footer__badge:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.as-footer__badge img {
	width: auto;
	display: block;
}

.as-footer__line {
	margin: 34px 0 18px;
	height: 1px;
	background: rgba(255, 255, 255, 0.18);
}

.as-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.as-footer__nav {
	display: flex;
	align-items: center;
	gap: 34px;
	flex-wrap: wrap;
}

.as-footer__link {
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 15px;
	text-align: center;
	color: #fff;
	opacity: 0.92;
	transition: opacity .15s ease;
}

.as-footer__link:hover {
	opacity: 1;
}

.as-footer__copy {
	margin: 0;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
	.as-footer {
		padding: 44px 0 34px;
	}

	.as-footer__top {
		grid-template-columns: 1fr;
		gap: 26px;
		text-align: center;
	}

	.as-footer__top img {
		margin: 0 auto;
	}

	.as-footer__badges {
		justify-content: center;
	}

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

	.as-footer__nav {
		gap: 18px 22px;
	}
}

@media (max-width: 480px) {
	.as-footer__logo {
		height: 46px;
	}

	.as-footer__badge img {
		height: 24px;
	}
}

.as-contact {
	padding: 70px 0 90px;
	background: #0c1019;
}

.as-contact__card {
	max-width: 820px;
	margin: 0 auto;
	background: #171f2c;
	border-radius: 20px;
	padding: 42px 40px 46px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.as-contact__success {
	display: block;
	margin-bottom: 18px;
	padding: 12px 16px;
	border-radius: 10px;
	background: rgba(16, 4, 188, 0.15);
	border: 1px solid #1004bc;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.as-contact__title {
	margin: 0 0 28px;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 32px;
	color: #fff;
	text-align: center;
}

.as-contact__form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.as-contact__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.as-contact__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.as-contact__label {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	color: #c9c9c9;
}

.as-contact__input,
.as-contact__textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	background: #121622;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;

	font-family: var(--font-family);
	font-weight: 400;
	font-size: 15px;
}

.as-contact__input::placeholder,
.as-contact__textarea::placeholder {
	color: #7a7d8c;
}

.as-contact__input:focus,
.as-contact__textarea:focus {
	outline: none;
	border-color: #1004bc;
}

.as-contact__textarea {
	min-height: 120px;
	resize: vertical;
}

.as-contact__btn {
	margin-top: 10px;
	height: 46px;
	border-radius: 12px;
	border: none;
	cursor: pointer;

	background: #1004bc;
	color: #fff;

	font-family: var(--font-family);
	font-weight: 900;
	font-size: 15px;
	transition: opacity .15s ease, transform .15s ease;
}

.as-contact__btn:hover {
	opacity: 0.95;
}

.as-contact__btn:active {
	transform: translateY(1px);
}


@media (max-width: 768px) {
	.as-contact {
		padding: 50px 0 70px;
	}

	.as-contact__card {
		padding: 34px 24px 38px;
	}

	.as-contact__row {
		grid-template-columns: 1fr;
	}

	.as-contact__title {
		font-size: 26px;
	}
}

.asContent__wrapper {
	width: 100%;
	padding-top: 50px;
	line-height: 200%;
	font-weight: 400;
	font-size: 16px;
}

.asContent__wrapper p {
	margin-bottom: 20px;
	color: #fff;
	line-height: 200%;
}

.asContent__wrapper h1,
.asContent__wrapper h2,
.asContent__wrapper h3,
.asContent__wrapper h4,
.asContent__wrapper h5,
.asContent__wrapper h6 {
	font-family: var(--second-family);
	margin: 30px 0 15px;
	line-height: 120%;
}

.asContent__wrapper h1 {
	font-size: 64px;
}

.asContent__wrapper h2 {
	font-size: 48px;
}

.asContent__wrapper h3 {
	font-size: 36px;
}

.asContent__wrapper h4 {
	font-size: 28px;
}

.asContent__wrapper h5 {
	font-size: 22px;
}

.asContent__wrapper h6 {
	font-size: 18px;
}

.asContent__wrapper ul,
.asContent__wrapper ol {
	margin: 20px 0 20px 40px;
}

.asContent__wrapper li {
	margin-bottom: 10px;
}

.asContent__wrapper a {
	color: #6004fe;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.asContent__wrapper a:hover {
	color: #7a33ff;
}

.asContent__wrapper img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 25px 0;
	display: block;
}

.asContent__wrapper blockquote {
	background: rgba(255, 255, 255, 0.05);
	border-left: 4px solid #6004fe;
	padding: 20px 25px;
	margin: 30px 0;
	font-style: italic;
	border-radius: 6px;
}



@media (max-width: 768px) {
	.asContent__wrapper {
		padding: 60px 20px;
		font-size: 15px;
	}

	.asContent__wrapper h1 {
		font-size: 48px;
	}

	.azcContent__wrapper h2 {
		font-size: 36px;
	}

	.azcContent__wrapper h3 {
		font-size: 28px;
	}
}


.asGame__wrapper {
	width: 100%;
	color: #ffffff;
	text-align: center;
}

.asGame__titleBox {
	margin-bottom: 50px;
}

.asGame__title {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 50px;
	line-height: 100%;
	color: #ffffff;
	text-transform: uppercase;
}

.asGame__content {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 60px;
}

.asGame__iframeBox {
	width: 100%;
	max-width: 1200px;
	height: 700px;
	border-radius: 16px;
	overflow: hidden;
	background: #1b1d2c;
	box-shadow: 0 0 20px rgba(96, 4, 254, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.05);
}

.asGame__iframeBox iframe {
	width: 100%;
	height: 100%;
	border: none;
}


@media (max-width: 1200px) {
	.asGame__iframeBox {
		height: 600px;
	}

	.asGame__title {
		font-size: 60px;
	}
}

@media (max-width: 768px) {
	.asGame__iframeBox {
		height: 420px;
	}

	.asGame__title {
		font-size: 48px;
	}
}

@media (max-width: 480px) {
	.asGame__iframeBox {
		height: 320px;
	}

	.asGame__title {
		font-size: 36px;
	}
}