@font-face {
	src: url("/gammathor-assets/gammathor-fonts/gammathor-otomanopeeone-regular.woff2")
		format("truetype");
	font-family: "otomanopeeone-regular";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/gammathor-assets/gammathor-fonts/gammathor-roboto-regular.woff2")
		format("truetype");
	font-family: "roboto-regular";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-title: "otomanopeeone-regular", sans-serif;
	--font-text: "roboto-regular", sans-serif;

	--color--bg: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.8) 0%,
			transparent 30%
		),
		linear-gradient(183.48deg, rgba(5, 1, 106, 0) 2.87%, #000000 91.12%),
		linear-gradient(0deg, #090909, #090909);

	--color-black: #090909;
	--color-darkblue: #05016a;
	--color-white: #fff;
	--color-lightwhite: #ffffffcc;
	--color-darkgray: #747474;
	--color-lightgray: #dfdeff;
	--color-faq: #0f0b11;
	--color-btn: linear-gradient(90deg, #1ff5f6 0%, #05016a 100%);
	--transition: all ease-in-out 0.3s;
}

*,
::after,
::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,
ol,
li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
}

body {
	background: var(--color--bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	position: relative;
	z-index: 2;
}

button {
	border: none;
	outline: none;
	cursor: pointer;
	background: transparent;
}

main,
footer {
	width: 100%;
	color: rgba(3, 3, 3, 1);
}

html {
	scroll-behavior: smooth;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-position: center;
	object-position: center;
	vertical-align: top;
}

header {
	width: 100%;
}

.gammathor--container__main {
	max-width: 1340px;
	width: 100%;
	margin: 0 auto;
}

.gammathor__visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

/* Header */
.gammathor--header {
	width: 100%;
	padding: 2rem 0 0rem;
}

.gammathor--header__container {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-image: linear-gradient(0deg, rgba(9, 9, 9, 0) 0%, #090909 100%),
		url(/gammathor-assets/gammathor-img/gammathor-welcome/gammathor-dancing-people.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}
.gammathor--header__logo {
	max-width: 218px;
	width: 100%;
	height: 32px;
}

.gammathor--menu {
	padding: 1rem 6.25rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 4rem;
	align-items: center;
	background: #ffffff17;
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
	background: var(--color-darkblue);
}

.gammathor--menu__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.gammathor--menu__list-item a {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 100%;
	color: var(--color-lightgray);
}

.gammathor--menu__list-item {
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	border-bottom: 1px solid transparent;
}

.gammathor--menu__list-item:hover {
	border-bottom: 1px solid var(--color-lightgray);
}
.gammathor--welcome--box {
	padding: 0 3.125rem 3.125rem;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.gammathor--welcome-container {
	display: flex;
	align-items: center;
	gap: 3.125rem;
}

.gammathor--welcome--info {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	max-width: 677px;
	width: 100%;
}

.gammathor--welcome----title {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 4rem;
	line-height: 120%;
	color: var(--color-white);
}

.gammathor--welcome----text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 150%;
	color: var(--color-white);
}

.gammathor--welcome---image {
	background-image: url(/gammathor-assets/gammathor-img/gammathor-welcome/gammathor-ball-lighting.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 513px;
	width: 100%;
	height: 467px;
}

.gammathor--welcome---news {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.gammathor--welcome----card {
	max-width: 386px;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1rem;
	padding: 1.875rem;
	border-radius: 16px;
	background: var(--color-black);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	border: 2px solid #05016a;
}

.gammathor--welcome----card:hover {
	box-shadow: 0 0 20px var(--color-lightblue);
	transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-moz-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
}

.gammathor--welcome___title {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 120%;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-white);
}

.gammathor--90 {
	height: 90px;
}

.gammathor--news---image {
	max-width: 327px;
	width: 100%;
	height: 306px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.gammathor--news---top {
	background-image: url(/gammathor-assets/gammathor-img/gammathor-welcome/gammathor-gamepad.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.gammathor--news---community {
	background-image: url(/gammathor-assets/gammathor-img/gammathor-welcome/gammathor-platform.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.gammathor--news---merch {
	background-image: url(/gammathor-assets/gammathor-img/gammathor-welcome/gammathor-boxing.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.gammathor--news__btn {
	max-width: 260px;
	width: 100%;
	height: 40px;
	background: var(--color-btn);
	box-shadow: 0px 5px 8.5px 0px #05016a inset;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 1rem;
	line-height: 150%;
	text-transform: uppercase;
	color: var(--color-white);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.gammathor--news__btn:hover {
	transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-moz-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
}

/* Game */
.gammathor--game {
	padding: 3.125rem 0;
}

.gammathor--game-container {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.gammathor--game-top {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.gammathor--game--title {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 50px;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-white);
}
.gammathor--center {
	text-align: center;
}

.gammathor--game--card {
	max-width: 600px;
	width: 100%;
	padding: 1.25rem;
	background: #09090947;
	box-shadow: 0px 0px 10px 0px #7006cccc;
	border-radius: 14px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
	gap: 1.25rem;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.gammathor--game--card:hover {
	box-shadow: 0px 0px 30px 0px #7006cccc;
}

.gammathor--game---image {
	max-width: 560px;
	width: 100%;
	height: 560px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.gammathor--game--info {
	display: flex;
	gap: 0.675rem;
	align-items: flex-start;
	justify-content: space-between;
}

.gammathor--game---name {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
}

.gammathor--game----subtitle {
	font-family: var(--font-text);
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 100%;
	color: var(--color-white);
}

.gammathor--game----text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 1rem;
	line-height: 150%;
	color: var(--color-white);
}

.gammathor--game---rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	max-width: 60px;
	width: 100%;
}

.gammathor--game----star {
	max-width: 22px;
	width: 100%;
	height: 22px;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-playfree/gammathor-icon-star.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.gammathor--auto {
	margin-inline: auto;
}

.gammathor--darkgray {
	color: var(--color-darkgray);
}

/* Gear */
.gammathor--gear--container {
	padding: 3.125rem;
	background-image: linear-gradient(rgba(9, 9, 9, 0.7)),
		url(/gammathor-assets/gammathor-img/gammathor-disclaimer/gammathor-lighting.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	gap: 3.125rem;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.gammathor--gear---image {
	max-width: 327px;
	width: 100%;
	height: 306px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.gammathor--news---tshirt {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-gear/gammathor-t-shirt.webp);
}

.gammathor--news---cup {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-gear/gammathor-cup.webp);
}

.gammathor--news---man {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-gear/gammathor-man.webp);
}

/* Guide */
.gammathor--guide--lists {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.gammathor--guide---item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: center;
	max-width: 420px;
	width: 100%;
}

.gammathor--guide----top {
	display: flex;
	gap: 1.25rem;
	align-items: flex-end;
}

/* Reviews */
.gammathor--reviews {
	background: var(--color-darkblue);
}

.gammathor--reviews--cards {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.gammathor--reviews---card {
	max-width: 420px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1.875rem;
	padding: 1.875rem 1.25rem;
	background: var(--color-white);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
	box-shadow: 60px 42px 120px 0px #00000014;
}

.gammathor--reviews----ava {
	max-width: 112px;
	width: 100%;
	height: 130px;
}

.gammathor--reviews----sarah {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-reviews/gammathor-avatar-sarah.webp);
}

.gammathor--reviews----alex {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-reviews/gammathoravatar-alex.webp);
}

.gammathor--reviews----emily {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-reviews/gammathor-avatar-emily.webp);
}

.gammathor--reviews----info {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
}

.gammathor--blue {
	color: var(--color-darkblue);
}

.gammathor--bold {
	font-weight: 700;
}

.gammathor--reviews----rating {
	display: flex;
	align-items: center;
	gap: 0.125rem;
}
.gammathorreviews__star {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-reviews/gammathor-icon-star-dark.svg);
	max-width: 24px;
	width: 100%;
	height: 24px;
}

.gammathor--lightgray {
	color: #6a6a6a;
}

/* FAQ */
.gammathor--faq--accordion {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 1240px;
	width: 100%;
	margin-inline: auto;
}

.gammathor--faq---items {
	cursor: pointer;
	border-radius: 15px;
	background: var(--color-black);
	display: flex;
	flex-direction: column;
	border: none;
	transition: all 0.5s ease-in;
	border: var(--border);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	border: 2px solid transparent;
}

.gammathor--faq---items:hover {
	box-shadow: 0 0px 20px var(--color-btn);
	transform: translateY(-2px);
}

.gammathor--faq----top {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	justify-content: space-between;
	padding: 1.875rem 1.5rem 1.25rem;
}

.gammathor--faq----top_icon {
	max-width: 24px;
	width: 100%;
	height: 24px;
}

.gammathor--faq--btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.accordion-icon {
	cursor: pointer;
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
	display: inline-block;
}
.accordion-icon.plus {
	background-image: url(/gammathor-assets/gammathor-img/gammathor-faq/gammathor-icon-arrow.svg);
	transition: all 0.3s ease;
	transform: rotate(0deg);
	background-repeat: no-repeat;
}

.accordion-icon.minus {
	background-image: url(/gammathor-assets/gammathor-img/gammathor-faq/gammathor-icon-arrow.svg);
	transition: all 0.3s ease;
	transform: rotate(180deg);
	background-repeat: no-repeat;
}

.gammathor--faq----content {
	max-width: 1150px;
	width: 100%;
}

.gammathor--faq----content p {
	padding: 1rem;
}

/* Disclaimer */
.gammathor--black {
	color: var(--color-black);
}

.gammathor--disclaimer--container {
	padding: 3.125rem;
	background-image: url(/gammathor-assets/gammathor-img/gammathor-disclaimer/gammathor-lighting.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.gammathor--disclaimer---lists {
	max-width: 814px;
	width: 100%;
	margin-inline: auto;
}

/* Contact */
.gammathor--pad {
	padding: 3.125rem 0;
}

.gammathor__contact--form {
	display: flex;
	max-width: 840px;
	width: 100%;
	gap: 1.25rem;
	margin-inline: auto;
	flex-direction: column !important;
}

.gammathor_contact__input {
	outline: none;
	height: 52px;
	width: 100%;
	background: var(--color-white);
	border: 1px solid #e6e6e6;
	font-size: 1rem;
	color: var(--color-black);
	font-family: var(--font-text);
	font-weight: 400;
	line-height: 22px;
	padding: 0.875rem 1rem;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.gammathor_contact__input::placeholder {
	font-size: 1rem;
	color: #6a6a6a;
	font-family: var(--font-text);
	font-weight: 400;
	line-height: 22px;
}

.gammathor_contact--textarea {
	height: 100px;
	resize: none;
	border-radius: 10px !important;
	-webkit-border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	-ms-border-radius: 10px !important;
	-o-border-radius: 10px !important;
}

.gammathor_contact__btn {
	background: var(--color-btn) !important;
	overflow: hidden;
	position: relative;
}

.active__block {
	display: flex;
}

.form-message-container {
	margin-top: 0px;
}

.form-message {
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 14px;
	animation: fadeIn 0.3s ease-in-out;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--font-title);
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--font-title);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Footer */
.gammathor--footer {
	position: relative;
	background: var(--color-black);
	padding: 3.125rem 0;
}

.gammathor--footer-container {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.gammathor--footer__navmenu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.875rem;
}

.gammathor--gray {
	color: var(--color-lightwhite);
}

.gammathor--title {
	font-family: var(--font-title) !important;
	font-weight: 400;
}

.gammathor--footer--info {
	display: flex;
	gap: 2.5rem;
}

.gammathor--footer---item {
	max-width: 650px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.gammathor--footer--parthers {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	justify-content: space-between;
}

.gammathor--footer---age {
	background-image: url(/gammathor-assets/gammathor-img/gammathor-footer/gammathor-icon-age.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 78px;
	width: 100%;
	height: 40px;
}

.gammathor--footer--copybox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.gammathor--footer--policy {
	display: flex;
	align-items: center;
	max-width: 255px;
	width: 100%;
	gap: 1.25rem;
	justify-content: space-between;
}

.gammathor--footer---link a {
	font-family: var(--font-text);
	font-weight: 600;
	font-size: 1rem;
	line-height: 100%;
	text-decoration: underline;
	color: var(--color-lightwhite);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.gammathor--footer---link a:hover {
	color: var(--color-white);
}

/* Burger */
#gammathorMenuToggle {
	display: none;
	position: absolute;
	top: 0;
	left: 0rem;
	z-index: 999 !important;
	-webkit-user-select: none;
	user-select: none;
	width: 100%;
	height: 58px;
}

#gammathorMenuToggle a {
	text-decoration: none;
	color: var(--color-white);
	transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
}

#gammathorMenuToggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin-bottom: 5px;
	right: 0rem;
	top: 0.2rem;
	position: relative;
	background: var(--color-white);
	border-radius: 3px;
	z-index: 1001 !important;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.no-scroll {
	overflow: hidden !important; /* Отключаем прокрутку с приоритетом */
}

#gammathorMenuToggle span:first-child {
	transform-origin: 0% 0%;
}

#gammathorMenuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#gammathorMenu {
	position: absolute;
	max-width: 100vw;
	width: 100%;
	z-index: 1000;
	padding-top: 5.25rem;
	margin: 0 0 0 0px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	background: var(--color-darkblue);

	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(-100%, 0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
	height: 130vh;
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-ms-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
}

#gammathorMenuToggle input:checked ~ ul {
	transform: none;
}

.burger-button {
	display: block;
	width: 42px;
	height: 32px;
	position: absolute;
	top: 2rem;
	right: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	opacity: 1;
	z-index: 1002 !important;
	-webkit-touch-callout: none;
	background: transparent;
	border: none;
	padding: 0;
}

/* Добавляем класс для открытого состояния */
.burger-button.active span:first-child {
	transform: rotate(45deg) translate(4px, 0px);
	background: #f9f9f9;
	-webkit-transform: rotate(45deg) translate(4px, 0px);
	-moz-transform: rotate(45deg) translate(4px, 0px);
	-ms-transform: rotate(45deg) translate(4px, 0px);
	-o-transform: rotate(45deg) translate(4px, 0px);
}

.burger-button.active span:nth-child(2) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

.burger-button.active span:last-child {
	transform: rotate(-45deg) translate(-1px, 2px);
	-webkit-transform: rotate(-45deg) translate(-1px, 2px);
	-moz-transform: rotate(-45deg) translate(-1px, 2px);
	-ms-transform: rotate(-45deg) translate(-1px, 2px);
	-o-transform: rotate(-45deg) translate(-1px, 2px);
}

/* Обновляем селектор для checked состояния */
#gammathorMenuToggle .active ~ #gammathorMenu {
	transform: none;
}

/* Others Styles */
.gammathor--privacy-lists {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.gammathor--privacy--items {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Mobile */
@media screen and (max-width: 1390px) {
	.gammathor--container__main {
		padding: 0 1rem;
	}

	.gammathor--header {
		padding: 1.25rem 1rem 0;
	}

	.gammathor--menu {
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		-ms-border-radius: 0;
		-o-border-radius: 0;
		padding: 0.75rem 1rem;
	}

	.gammathor--welcome--box {
		padding: 0 1rem;
	}
}

@media screen and (max-width: 1160px) {
	.gammathor--welcome-container {
		flex-direction: column;
		padding: 1.25rem 0 0;
		gap: 1.25rem;
	}

	.gammathor--welcome--info {
		max-width: 100%;
		width: 100%;
		gap: 1.25rem;
	}

	.gammathor--welcome---image {
		max-width: 413px;
		width: 100%;
		height: 367px;
	}

	.gammathor--welcome--box,
	.gammathor--game-container,
	.gammathor--welcome---news,
	.gammathor--reviews--cards {
		gap: 1.25rem;
	}

	.gammathor--welcome----title {
		font-size: 3rem;
		word-break: break-all;
	}

	.gammathor--welcome----text {
		font-size: 1.25rem;
	}

	.gammathor--game--title {
		font-size: 2rem;
	}

	.gammathor--game--card {
		max-width: 450px;
		width: 100%;
	}
	.gammathor--game---image {
		max-width: 450px;
		width: 100%;
		height: 400px;
	}

	.gammathor--news__btn,
	.gammathor--footer---item {
		max-width: 100%;
		width: 100%;
	}

	.gammathor--game {
		padding: 1.875rem 0;
	}

	.gammathor--gear--container {
		padding: 1.875rem 1rem;
		gap: 1.25rem;
	}

	.gammathor--disclaimer--container {
		padding: 2.5rem 1rem;
	}

	.gammathor--pad {
		padding: 1.875rem 1rem;
	}

	.gammathor_contact__btn {
		max-width: 525px;
		width: 100%;
	}

	.gammathor--footer--info {
		flex-direction: column;
	}

	.gammathor--footer__navmenu {
		flex-wrap: wrap;
	}

	.gammathor--welcome----card {
		padding: 1rem;
		max-width: 296px;
		width: 100%;
	}

	.gammathor--gear--container
		.gammathor--welcome---news
		.gammathor--welcome----card {
		padding: 1.875rem;
	}

	.gammathor--90 {
		height: 65px;
	}

	.gammathor--news---image {
		max-width: 264px;
		width: 100%;
		height: 264px;
	}

	.gammathor--gear---image {
		max-width: 240px;
		width: 100%;
		height: 240px;
	}
	.gammathor--welcome___title {
		font-size: 1rem;
	}

	.gammathor--guide--lists {
		gap: 1.25rem;
	}
}
@media screen and (max-width: 900px) {
	.gammathor--menu__list {
		display: none;
	}
	#gammathorMenuToggle {
		display: block;
	}

	.gammathor--welcome---image {
		max-width: 300px;
		width: 100%;
		height: 300px;
	}

	.gammathor--game--card {
		max-width: 380px;
		width: 100%;
	}

	.gammathor--game---image {
		max-width: 380px;
		width: 100%;
		height: 300px;
	}
}
@media screen and (max-width: 700px) {
	.gammathor--welcome----title {
		font-size: 2rem;
	}

	.gammathor--welcome----text,
	.gammathor--game----subtitle,
	.gammathor--disclaimer---lists li p {
		font-size: 1rem;
	}

	.gammathor--header__logo {
		max-width: 140px;
		width: 100%;
	}

	.gammathor--90 {
		height: auto;
	}

	.gammathor--game--title {
		font-size: 1.5rem;
		line-height: 110%;
	}

	.gammathor--game----text {
		font-size: 0.875rem;
	}

	.gammathor--guide----top h3 {
		font-size: 2.5rem;
	}

	.gammathor--guide---item {
		gap: 0.675rem;
	}

	.gammathor--reviews---card {
		padding: 1.25rem;
	}

	.gammathor--reviews----ava {
		max-width: 60px;
		width: 100%;
		height: 70px;
	}

	.gammathor--footer--copybox {
		flex-direction: column;
	}

	.gammathor--footer--parthers {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1.25rem 2.5rem;
	}

	.gammathor--disclaimer--container {
		background-size: auto;
	}
}

@media screen and (max-width: 400px) {
	.gammathor--news---image {
		max-width: 264px;
		width: 100%;
		height: 220px;
	}
}
