@font-face {
	src: url("/habbitgame-assets/habbitgame-fonts/habbitgame-orbitron-black.woff2")
		format("truetype");
	font-family: "orbitron-black";
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/habbitgame-assets/habbitgame-fonts/habbitgame-orbitron-bold.woff2")
		format("truetype");
	font-family: "orbitron-bold";
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/habbitgame-assets/habbitgame-fonts/habbitgame-librebaskerville-regular.woff2")
		format("truetype");
	font-family: "librebaskerville-regular";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-title: "orbitron-bold", sans-serif;
	--font-text: "librebaskerville-regular", sans-serif;
	--font-btn: "orbitron-black", sans-serif;

	--color-bg: #13120f;
	--color-btn: #deac65;
	--color-white: #fff;
	--color-text-gray: #ededed;
	--color-card: linear-gradient(180deg, #13120f 0%, #28261f 100%);
	--color-border: linear-gradient(
		180deg,
		#d46f64 0%,
		#d99164 50.96%,
		#deac65 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-color: var(--color-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	position: relative;
}

button {
	border: none;
	outline: none;
	cursor: pointer;
}

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%;
}

.habbitgame--container__main {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

.habbitgame__visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

/* Header */
.habbitgame--header {
	width: 100%;
	background: var(--color-card);
}

.habbitgame--header__container {
	width: 100%;
	display: flex;
	padding: 0.675rem 0;
	flex-direction: column;
	align-items: center;
}

.habbitgame--menu {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.habbitgame--header__logo {
	max-width: 95px;
	width: 100%;
	height: 60px;
}

.habbitgame--menu__list {
	gap: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.habbitgame--menu__list-item a {
	font-size: 1rem;
	line-height: 100%;
	font-family: var(--font-text);
	font-weight: 400;
	border-bottom: 2px solid transparent;
	padding-block: 0.125rem;
	color: var(--color-btn);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.habbitgame--menu__list-item a:hover {
	color: var(--color-white);
}

/* Welcom Section */
.habbitgame--welcome-box {
	width: 100%;
	padding: 1.5rem 0 4.375rem;
	position: relative;
}

.habbitgame--welcome--container {
	padding: 5.625rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background-image: url(/habbitgame-assets/habbitgame-img/habbitgame-welcome/habbitgame-woman-game.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 25px;
	position: relative;
	isolation: isolate;
}

.habbitgame--welcome--container::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 2px;
	border-radius: 25px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}

.habbitgame--welcome--w {
	max-width: 600px;
	width: 100%;
}

.habbitgame--welcome---title {
	font-family: var(--font-title);
	color: var(--color-white);
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 49px;
}

.habbitgame--welcome---text {
	font-family: var(--font-text);
	color: var(--color-white);
	font-weight: 400;
	font-size: 1rem;
	line-height: 22px;
}

.habbitgame--welcome---btn {
	width: 100%;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-btn);
	font-weight: 900;
	font-size: 1.25rem;
	color: #1f1f1f;
	line-height: 28px;
	text-align: center;
	background: var(--color-btn);
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.habbitgame--welcome---btn:hover {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

/* Games */
.habbitgame--games-box {
	background-image: linear-gradient(
			180deg,
			#13120f 0%,
			rgba(19, 18, 15, 0.73) 28.98%,
			rgba(19, 18, 15, 0) 51.44%,
			rgba(19, 18, 15, 0.73) 70.61%,
			#13120f 100%
		),
		url(/habbitgame-assets/habbitgame-img/habbitgame-games/habbitgame-bg-games.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.habbitgame--games---cards {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
	justify-content: center;
}

.habbitgame--games----card {
	max-width: 400px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.habbitgame--games----card:hover {
	transform: translateY(-1rem);
	-webkit-transform: translateY(-1rem);
	-moz-transform: translateY(-1rem);
	-ms-transform: translateY(-1rem);
	-o-transform: translateY(-1rem);
}

.habbitgame--cards_image {
	max-width: 400px;
	width: 100%;
	height: 334px;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
}

.habbitgame--border-image {
	position: relative;
	isolation: isolate;
	min-height: 200px;
	width: 100%;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
}

.habbitgame--border-image:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
	background: linear-gradient(180deg, #d46f64 0%, #d99164 50.96%, #deac65 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 0;
}

.habbitgame--cards_description {
	padding: 1rem;

	display: flex;
	gap: 1.5rem;
	flex-direction: column;
	background: var(--color-card);
	position: relative;
	isolation: isolate;
	border-bottom-right-radius: 25px;
	border-bottom-left-radius: 25px;
}

.habbitgame--cards_description:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-bottom-right-radius: 25px;
	border-bottom-left-radius: 25px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}

.habbitgame--cards__name {
	font-family: var(--font-btn);
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 25px;
	color: var(--color-white);
	text-align: center;
}

.habbitgame--cards__btn {
	max-width: 100%;
	width: 100%;
}

/* About */
.habbitgame--about-box {
	padding: 4.375rem 0;
}

.habbitgame--about--container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.habbitgame--about---title {
	font-family: var(--font-title);
	font-weight: 700;
	color: var(--color-white);
	font-size: 1.75rem;
	line-height: 31px;
	text-align: center;
}

.habbitgame--about---info {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.habbitgame--about----image {
	background-image: url(/habbitgame-assets/habbitgame-img/habbitgame-about/habbitgame-egypt-woman.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 606px;
	width: 100%;
	height: 468px;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	position: relative;
	isolation: isolate;
}

.habbitgame--about----image:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 25px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}

.habbitgame--about---desc {
	max-width: 610px;
	width: 100%;
	display: flex;
	gap: 1.5rem;
	flex-direction: column;
}

.habbitgame--about----lists {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.habbitgame--nocenter {
	text-align: left !important;
}

.habbitgame--about---icon {
	background-image: url(/habbitgame-assets/habbitgame-img/habbitgame-about/habbitgame-icon-diamond.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 50px;
	width: 100%;
	height: 34px;
	display: inline-block;
}

.habbitgame--about----lists li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
/* FAQ */
.habbitgame--faq--container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.habbitgame--faq--accordion {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.habbitgame--faq---items {
	cursor: pointer;
	padding: 1rem;
	border-radius: 25px;
	background: var(--color-card);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border: none;
	transition: all 0.5s ease-in;
	position: relative;
	isolation: isolate;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
}

.habbitgame--faq---items:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 25px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}

.habbitgame--faq---items:hover {
	box-shadow: 0 0px 20px var(--color-btn);
	transform: translateY(-2px);
}

.habbitgame--faq----top {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	justify-content: space-between;
}

.habbitgame--faq----top_title {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 28px;
	color: var(--color-white);
}

.habbitgame--faq----top_icon {
	max-width: 24px;
	width: 100%;
	height: 24px;
}

.habbitgame--faq----text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 1rem;
	line-height: 22px;
	color: var(--color-text-gray);
}

.habbitgame--faq--btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.accordion-icon {
	cursor: pointer;
	width: 41px;
	height: 41px;
	transition: transform 0.3s ease;
	display: inline-block;
}
.accordion-icon.plus {
	background-image: url(/habbitgame-assets/habbitgame-img/habbitgame-faq/habbitgame-faq-arrow.svg);
	transition: all 0.3s ease;
	transform: rotate(180deg);
}

.accordion-icon.minus {
	background-image: url(/habbitgame-assets/habbitgame-img/habbitgame-faq/habbitgame-faq-arrow.svg);

	transition: all 0.3s ease;
	transform: rotate(0deg);
}

/* Disclaimer */
.habbitgame--center {
	text-align: center;
}

.habbitgame--disclaimer--container {
	padding: 1.5rem;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	position: relative;
	isolation: isolate;
}

.habbitgame--disclaimer--container:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 25px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}

.habbitgame--disclaimer---info {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
}

.habbitgame--disclaimer----title {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 28px;
	text-align: center;
	color: var(--color-white);
}

.habbitgame--gray {
	color: var(--color-text-gray);
}

.habbitgame--age-icon {
	background-image: url(/habbitgame-assets/habbitgame-img/habbitgame-footer/habbitgame-icon-age.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 61px;
	width: 100%;
	height: 32px;
	margin-inline: auto;
}

/* Contact */
.habbitgame--contact--container {
	padding: 4.375rem 0;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.habbitgame--text-white {
	color: var(--color-white) !important;
}

.habbitgame__contact--form {
	display: flex;
	max-width: 940px;
	margin: 0 auto;
	width: 100%;
	gap: 1rem;
	flex-direction: column !important;
}

.habbitgame_contact__input {
	outline: none;
	height: 55px;
	width: 100%;
	background: #ededed;
	border: none;
	font-size: 1rem;
	color: #000;
	font-family: var(--font-text);
	font-weight: 400;
	padding: 1rem 1.5rem;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.habbitgame_contact__input::placeholder {
	font-size: 1rem;
	color: #1f1f1f;
	font-family: var(--font-text);
	font-weight: 400;
	line-height: 22px;
}

.habbitgame_contact--textarea {
	height: 93px;
	resize: none;
}

.habbitgame_contact__btn {
	margin: 0.5rem 0 0;
	text-transform: uppercase;
}

.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: 500;
	font-family: var(--font-text);
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-text);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Footer */
.habbitgame--footer {
	position: relative;
	padding: 2.5rem 0;
	background: linear-gradient(180deg, #13120f 0%, #28261f 100%);
}

.habbitgame--footer-container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.habbitgame--footer--info {
	display: flex;
	gap: 4.75rem;
}

.habbitgame--footer---item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 582px;
	width: 100%;
}

.habbitgame--footer--menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.habbitgame--footer---navmenu {
	display: flex;
	align-items: center;
	gap: 3.125rem;
}

.habbitgame--footer----navlink a {
	font-size: 1rem;
	line-height: 100%;
	font-family: var(--font-text);
	font-weight: 400;
	border-bottom: 2px solid transparent;
	padding-block: 0.125rem;
	color: var(--color-btn);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.habbitgame--footer----navlink a:hover {
	color: var(--color-white);
}

.habbitgame--end {
	margin: 0;
}

/* Burger */
#habbitgameMenuToggle {
	display: none;
	position: absolute;
	top: 0;
	left: 0rem;
	z-index: 999 !important;
	-webkit-user-select: none;
	user-select: none;
	width: 100%;
	height: 58px;
}

#habbitgameMenuToggle a {
	text-decoration: none;
	color: var(--color-btn);
	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;
}

#habbitgameMenuToggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin-bottom: 5px;
	right: 0rem;
	top: 0.2rem;
	position: relative;
	background: var(--color-btn);
	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; /* Отключаем прокрутку с приоритетом */
}

#habbitgameMenuToggle span:first-child {
	transform-origin: 0% 0%;
}

#habbitgameMenuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#habbitgameMenu {
	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-card);

	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);
}

#habbitgameMenuToggle input:checked ~ ul {
	transform: none;
}

.burger-button {
	display: block;
	width: 42px;
	height: 32px;
	position: absolute;
	top: 1rem;
	right: 1.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 состояния */
#habbitgameMenuToggle .active ~ #habbitgameMenu {
	transform: none;
}

.habbitgame--menu__list--text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 130%;
	color: #ffffff80;
	text-align: center;
	max-width: 320px;
	width: 100%;
}

/* Others Styles */
.habbitgame--pt {
	padding-top: 4.375rem;
}
.habbitgame--small-pt {
	padding: 0.675rem 0 !important;
}

.habbitgame--game-box {
	padding: 2.5rem 0;
}

.habbitgame--pad {
	padding: 4.375rem 0 !important;
}

.habbitgame--privacy--container,
.habbitgame--privacy--sublist {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.habbitgame--privacy--box,
.habbitgame--terms--lists {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.habbitgame--terms--lists li,
.habbitgame--privacy--list li {
	list-style-type: disc;
	margin-left: 1.575rem;
}

.habbitgame-slider-container {
	display: none;
}

.habbitgame--p70 {
	padding: 4.375rem 0;
}

.habbitgame-nocenter {
	text-align: left;
}

.habbitgame-gap-small {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* Media */
@media screen and (max-width: 1260px) {
	.habbitgame--container__main {
		padding: 0 1.5rem;
	}
}
@media screen and (max-width: 1080px) {
	.habbitgame--about---info {
		flex-direction: column;
	}

	.habbitgame--about---desc {
		max-width: 100%;
		width: 100%;
	}
}
@media screen and (max-width: 991px) {
	.habbitgame--footer--menu {
		flex-direction: column;
		gap: 1.5rem;
	}

	.habbitgame--footer---navmenu {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.habbitgame--footer--info {
		flex-direction: column;
		gap: 1rem;
	}

	.habbitgame--footer---item {
		max-width: 100%;
		width: 100%;
	}

	.habbitgame--footer-container {
		gap: 1.5rem;
	}

	.habbitgame--footer {
		padding: 1.25rem 0;
	}

	.habbitgame--welcome--container {
		background-position: left;
	}
}

@media screen and (max-width: 867px) {
	.habbitgame--games--hide {
		display: none;
	}

	.habbitgame-slider-container {
		overflow: hidden;
		position: relative;
		display: block;
	}

	.habbitgame-slider {
		overflow: visible;
	}

	.habbitgame-slider-track {
		display: flex;
		gap: 1.25rem;
		transition: transform 0.5s ease;
		will-change: transform;
		padding: 10px 0;
	}

	.habbitgame-slide {
		flex: 0 0 400px;
		scroll-snap-align: start;
		transition: transform 0.3s ease;
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}

	.habbitgame-slider-track.grabbing {
		cursor: grabbing;
		transition: none;
	}

	.habbitgame-slider-track.grabbing .habbitgame-slide {
		transform: scale(0.98);
	}
}

@media screen and (max-width: 700px) {
	.habbitgame--menu__list {
		display: none;
	}

	#habbitgameMenuToggle {
		display: block;
	}

	.habbitgame--header__container {
		padding: 0.1rem;
	}

	.habbitgame--welcome-box {
		padding: 1rem 0 4.375rem;
	}

	.habbitgame--welcome--container {
		padding: 1.5rem;
	}

	.habbitgame--welcome---title {
		font-size: 1.5rem;
		line-height: 28px;
	}

	.habbitgame--about----image {
		height: 225px;
	}
}

@media screen and (max-width: 480px) {
	.habbitgame-slide {
		flex: 0 0 260px;
	}

	.habbitgame--cards_image {
		height: 280px;
	}
}
