@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/InterVariable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

html {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		'Helvetica Neue',
		Arial,
		sans-serif;
}

html {
  scroll-behavior: smooth;
  background: #090909;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@view-transition {
  navigation: auto;
}
::view-transition,
::view-transition-group(*),
::view-transition-image-pair(*),
::view-transition-old(*),
::view-transition-new(*) {
  pointer-events: none;
}
::view-transition-old(root) {
  animation: vt-fade-out 0.2s ease both;
}
::view-transition-new(root) {
  animation: vt-fade-in 0.24s ease both;
}
@keyframes vt-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes vt-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}
main {
	flex: 1;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #d9d9d9 rgba(217, 217, 217, 0.05);
}

*::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

*::-webkit-scrollbar-track {
	background-color: rgba(217, 217, 217, 0.05);
	border-radius: 55px;
}

*::-webkit-scrollbar-thumb {
	background-color: #d9d9d9;
	border-radius: 55px;

	border: 1px solid transparent;
	background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: #d9d9d9;
}

*::-webkit-scrollbar-button {
	display: none;
	width: 0;
	height: 0;
}

*::-webkit-scrollbar-corner {
	background-color: transparent;
}
*::-webkit-scrollbar-thumb {
	background-color: #d9d9d9;
	border-radius: 55px;
	box-shadow:
		inset 0 5px 0 rgba(0, 0, 0, 0),
		inset 0 -5px 0 rgba(0, 0, 0, 0);

}

[data-simplebar] {
	--simplebar-scrollbar-thickness: 5px;
	--simplebar-scrollbar-radius: 55px;
}

.simplebar-track.simplebar-vertical {
	width: 5px !important;
	background-color: rgba(217, 217, 217, 0.05) !important;
	border-radius: 55px !important;
	right: 0 !important;
	top: 5px !important;
	bottom: 5px !important;
}

.simplebar-track.simplebar-horizontal {
	height: 5px !important;
	background-color: rgba(217, 217, 217, 0.05) !important;
	border-radius: 55px !important;
	bottom: 0 !important;
	left: 5px !important;
	right: 5px !important;
}

.simplebar-scrollbar::before {
	background-color: #d9d9d9 !important;
	border-radius: 55px !important;
	opacity: 1 !important;
	left: 0 !important;
	right: 0 !important;
	top: 0;
	bottom: 0;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
	top: 5px;
	bottom: 5px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
	left: 5px;
	right: 5px;
}

.simplebar-scrollbar.simplebar-visible::before {
	opacity: 1 !important;
}

body {

	background: linear-gradient(180deg, #090909 63%, #090909 72%, #111111 100%), linear-gradient(#FFFFFF, #FFFFFF);
	color: white;
	position: relative;
}

.container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	padding-bottom: 24px;
}
.header__logo-online {
	display: flex;
	align-items: center;
	gap: 16px;
}
.header__logo {
	font-weight: 900;
	color: white;
	font-size: 24px;
	display: block;
}
.header__online {
	padding: 5px 9px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #323232;
	border-radius: 8px;
	gap: 4px;
}
.header__online-text {
	font-weight: bold;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}
.header__online-text-number {
	color: white;
}
.header__online-icon {
	opacity: 0.5;
}

.header__tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.header__tabs-tab {
	padding: 14px 20px;
	border-radius: 16px;
	font-weight: bold;
	cursor: pointer;
	border: 2px solid rgba(0, 0, 0, 0);
	color: white;

	transition: all 0.2s;
}
.header__tabs-tab:hover {
	background: rgba(50, 50, 50, 0.7);
	border: 2px solid rgba(62, 62, 62, 0.7);
}
.header__tabs-tab.active {
	background: #323232;
	border: 2px solid #3e3e3e;
}

.advertise-cards__container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 300px;
}
.advertise-cards__card {
	padding: 27px;
	border-radius: 38px;
	height: 100%;
	position: relative;
	cursor: pointer;
	transition: all .2s;
}
.advertise-cards__doplata {
	flex: 10000;
	background: linear-gradient(18.764deg, #ea5a00 0%, #db9410 100%);
}
.advertise-cards__doplata::before {
	border-radius: 38px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/assets/images/doplata-bg.png') no-repeat left 50px bottom;
	z-index: 1;
	transition: all .6s;
}
.advertise-cards__doplata:hover::before {
	background-position: left 60px bottom;
}
.advertise-cards__doplata::after {
	border-radius: 38px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/assets/images/doplata-fg.png') no-repeat left 340px bottom;
	z-index: 2;
	transition: all .8s;
}
.advertise-cards__doplata:hover::after {
	background-position: left 360px bottom;
}
.advertise-cards__free-cases {
	width: 300px;
	background: radial-gradient(circle at bottom left,#9b65f2,#704dff);
}
.advertise-cards__free-cases::before {
	border-radius: 38px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/assets/images/free-cases-bg.svg') no-repeat right bottom;
	z-index: 1;
}
.advertise-cards__free-cases::after {
	border-radius: 38px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/assets/images/free-cases-case.png') no-repeat right bottom;
	background-size: 300px;
	z-index: 2;
	transition: all .6s;
}
.advertise-cards__free-cases:hover::after {
	background-position: right bottom -10px;
}
.advertise-cards__arrow {
	backdrop-filter: blur(10px);
	position: relative;
	z-index: 2;
	margin-top: 19px;
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.07);
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s;
}
.advertise-cards__card:hover .advertise-cards__arrow {
	background-color: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.13);
	width: 80px;
}

.advertise-cards__header {
	font-size: 26px;
	font-weight: bold;
	color: #fff;

}
.advertise-cards__description {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.shop__container {
	margin-top: 60px;
}
.shop__server-selection {
	gap: 10px;
}
.shop__server-selection__gap {
	width: 22px;
	height: 17px;
	background: url('/assets/images/gap.svg');
}
.shop__server-selection__item__icon {
	width: 16px;
	height: 16px;
	background: url('/assets/images/server-icon.svg');
	z-index: 2;
}
.shop__server-selection__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: #19191a;
	padding: 25px;
	border-radius: 20px;
	max-width: 225px;
	width: 100%;
	cursor: pointer;
	position: relative;
	transition: background-color 0.3s ease;
}
.shop__server-selection__item__left {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	z-index: 2;
}
.shop__server-selection__item__text {
	font-weight: bold;
	font-size: 16px;
}
.shop__server-selection__item__arrow {
	width: 19px;
	height: 19px;
	background: url('/assets/images/server-arrow-icon.svg') no-repeat;
	opacity: 0.5;
	z-index: 2;
}
.shop__server-selection__container {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
}
.shop__server-selection__item__funtime::before {
	position: absolute;
	border-radius: 20px;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: url('/assets/images/funtime-button-background.png')
		no-repeat -100px;
	background-size: cover;

	opacity: 0;
}

.shop__server-selection__item__holyworld::before {
	position: absolute;
	border-radius: 20px;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: url('/assets/images/holyworld-button-background.png') no-repeat;
	background-size: cover;
	opacity: 0;
}
.shop__server-selection__item::before {
	transition: opacity 0.2s;
}
.shop__server-selection__item.active::before {
	opacity: 1;
}
.shop__server-selection__item:not(.active):hover::before {
	opacity: 0.4;
}

.shop__block {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 16px;
	margin-top: 20px;
}
.shop__block__left {
	max-width: 416px;
	width: 100%;
	border-radius: 38px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 14px;
	background: linear-gradient(#932e00 -150%, #141414);
	height: 690px;
}
.shop__block__right {
	flex: 100;
	width: 100%;
	border-radius: 38px;

	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	gap: 14px;
	padding: 14px;
	height: 690px;
}
.shop__block__right__description__text {
	white-space: pre-wrap;
}

.shop__block__left__reminder {
	padding: 26px;
	width: 100%;
	background: #e56301;
	border-radius: 28px;
	font-weight: bold;
	font-size: 18px;
	background: url('/assets/images/funtime-button-background.png');
	background-size: cover;
}
.shop__block__left__products {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.shop__block__left__products__container {
	padding: 25px;
	padding-top: 7px;
	border-radius: 28px;
	width: 100%;
	background: #1a1a1a;
	border: 1px solid #2b2b2b;
	display: flex;
	flex-direction: column;
	gap: 8px;

	height: 100%;
	overflow-y: auto;
}
.shop__block__left__products__container .simplebar-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.shop__block__left__products__product {
	padding: 12px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0);
	transition: background-color 0.2s ease, border-color 0.2s ease;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
	width: 100%;
	cursor: pointer;

	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.06);

}
.shop__block__left__products__product.active {
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.7);
}
.shop__block__left__products__product__left {
	gap: 20px;
	display: flex;
	justify-content: start;
	align-items: center;
	min-width: 0;
	overflow: hidden;
}
.shop__block__left__products__product__image {
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: center;
	align-items: center;

	border-radius: 13px;
	width: 48px;
	height: 48px;
	max-width: 48px;
	max-height: 48px;
	flex: 10;
}
.shop__block__left__products__product__image img {
	width: 48px;
	height: 48px;
	border-radius: 13px;
	max-width: 48px;
	max-height: 48px;
}

.shop__block__left__products__product {
	position: relative;
}

.product__discount-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #f04848;
	color: white;
	font-size: 9px;
	font-weight: 900;
	padding: 3px 5px;
	border-radius: 6px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	letter-spacing: 0.3px;
	z-index: 2;
}

.shop__block__left__products__product__right {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
}

.shop__block__left__products__product__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.15;
	text-wrap: nowrap;
}

.product__price-old {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,0.35);
	text-decoration: line-through;
	text-wrap: nowrap;
}

.product__price-new {
	font-size: clamp(13px, 4vw, 16px);
	font-weight: 700;
	color: #ffffff;
	text-wrap: nowrap;
}
.shop__block__left__products__product__title-block {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.shop__block__left__products__product__title {
	font-weight: bold;
	font-size: clamp(13px, 4vw, 18px);
	flex: 1;
	min-width: 0;
}
.shop__block__left__products__product__title-block {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.shop__block__left__products__product__right {
	display: flex;
	gap: 2px;
}
.shop__block__left__products__product__arrow {
	background: url('/assets/images/product_arrow.svg');
	width: 20px;
	height: 20px;
}
.shop__block__left__products__product__price {
	font-weight: bold;
	font-size: clamp(13px, 4vw, 18px);
}

.shop__block__right__header {
	padding: 40px;
	border-radius: 24px;
	background: #202020;
	border: 1px solid #393939;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}
.shop__block__right__header-bg-container {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
}
.shop__block__right__header-bg-container-2 {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url('/assets/images/right-shop-block-header-bg.png');
	background-position: calc(50% + 10px) calc(50% + 10px);
  	background-size: cover;
	background-repeat: no-repeat;
	z-index: 9;
	pointer-events: none;
}

.shop__block__right__header-bg-container__image {
	position: absolute;
	display: flex;
	top: 0;
	bottom: 0;
	height: 1894px;
	width: 1894px;
	left: -500px;
	right: 0;
	margin: auto 0;
	pointer-events: none;

	background: url("/assets/images/product_details_bg.png") no-repeat;
	background-position: center center;

	will-change: transform;
	animation: product-head-spin 30s linear infinite;
}

@keyframes product-head-spin {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
.shop__block__right__header__info {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.shop__block__right__header__info__left,
.shop__block__right__header__info__right {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: start;
	justify-content: center;
	z-index: 10;
}
.shop__block__right__header__info__right {
	align-items: end;
}
.shop__block__right__header__info__left__title,
.shop__block__right__header__info__right__title {
	font-weight: bold;
	font-size: 14px;
	color: #a6a6a6;
}
.shop__block__right__header__info__left__name,
.shop__block__right__header__info__right__name {
	font-weight: bold;
	font-size: 25px;
	color: white;
}

.shop__block__right__header__info__right__name {
	color: #44f440;
}

.shop__block__right__header__info__right__note {
	max-width: 180px;
	font-size: 9px;
	line-height: 1.25;
	text-align: right;
	color: #b8b8b8;
}

.shop__block__right__header__info__middle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	z-index: 10;
}
.shop__block__right__header__info__middle__image {
	background: #252525;
	border-radius: 24px;
	border: 1px solid #323232;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 62px;
	height: 62px;
}
.shop__block__right__header__info__middle__image img {
	max-width: 48px;
	max-height: 48px;
}

.shop__block__right__header__selector {
	margin-top: 37px;
	width: 100%;
	display: flex;
	position: relative;
	z-index: 10;
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-radius: 18px;
}
.shop__block__right__header__selector__item {
	background: rgba(255, 255, 255, 0.07);
	padding: 18px 0;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.2s;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	z-index: 10;
}
.shop__block__right__header__selector__item:hover {
	opacity: 80%;
}
.shop__block__right__header__selector__item.active {
	background: rgba(255, 255, 255, 0.15);
}
.shop__block__right__header__selector__item:first-child {
	border-radius: 18px 0 0 18px;
}
.shop__block__right__header__selector__item:last-child {
	border-radius: 0 18px 18px 0;
}

.shop__block__right {
	background: radial-gradient(#272727, #161616);
}
.shop__block__right__description {
	padding: 27px;
	border-radius: 28px;
	background: #262626;
	border: 1px solid #2e2d2d;

	min-height: 0;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
}
.shop__block__right__description__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
	flex-shrink: 0;
}
.shop__block__right__description__main {
	min-height: 0;
}
.shop__block__right__description__list {
	display: flex;
	flex-direction: column;

}
.shop__block__right__description__list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding-left: 17px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 30px;
}
.shop__block__right__description__list__item:not(:last-child) {
	border-bottom: 1px solid #2f2f2f;
}
.shop__block__right__description__list__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	background-color: #e76c03;
	border-radius: 50%;
}
.shop__block__right__description__list__item__left {
	font-weight: bold;
	font-size: 16px;
}
.shop__block__right__description__list__item__right {
	font-weight: bold;
	font-size: 16px;
	color: #bbbbbb;
	text-align: end;
}
.shop__block__right__description__text {
	font-size: 16px;
}

.shop__block__right__footer {
	padding: 21px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}
.shop__block__right__footer__left__icon {
	background: #303030;
	width: 56px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 18px;
}
.shop__block__right__footer__left__price-block {
	display: flex;
	flex-direction: column;
	gap: 3px;
	justify-content: center;
	align-items: start;
}
.shop__block__right__footer__left__price-block__title {
	font-weight: bold;
	font-size: 14px;
}
.shop__block__right__footer__left__price-block__price {
	font-size: 24px;
	font-weight: bold;
}
.shop__block__right__footer__left {
	gap: 13px;
	display: flex;
}
.shop__block__right__footer__right__button {
	background: linear-gradient(-20.948deg, #ea7000 3%, #cf2500 100%);
	display: flex;
	font-size: 14px;
	font-weight: bold;
	padding: 17px 31px;
	border-radius: 18px;
	justify-content: center;
	align-items: center;
	gap: 3px;
}
.shop__block__right__footer__right__button {
	transition: all 0.2s;
}
.shop__block__right__footer__right__button:hover {
	opacity: 0.8;
}
.shop__block__right__description__list__item {
	transition: all 0.2s;
}
.shop__block__right__description__list__item:hover {
	opacity: 0.8;
}
.shop__block__left__products__product {
	transition: all 0.2s;
}
.shop__block__left__products__product:not(.active):hover {
	opacity: 0.8;
}

footer {
	background: radial-gradient(
		rgba(39, 39, 39, 0.5) 0%,
		rgba(16, 16, 16, 0.5) 97%
	);
	margin-top: 200px;
	padding: 14px;
	padding-bottom: 0;
	border-radius: 38px 38px 0 0;
	position: relative;
	width: 100%;
	z-index: 1;
}
.footer__container {
	background: radial-gradient(
		rgba(27, 27, 27, 0.8) 0%,
		rgba(29, 29, 29, 0.8) 49%
	);
	padding: 30px 40px;
	border-radius: 28px 28px 0 0;
}
.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 45px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__top__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 5px;
}
.footer__top__left__title {
	font-size: 20px;
	font-weight: bold;
}
.footer__top__left__description {
	font-size: 14px;
	font-weight: bold;
	color: #8d8d8e;
}
.footer__top__right {
	display: flex;
	gap: 50px;
	justify-content: end;
	align-items: center;
}

.footer__top__right__social {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 8px;
	transition: all 0.2s;
	border-radius: 14px;
}
.footer__top__right__social:hover {
	background: rgba(0, 0, 0, 0.1);
}
.footer__top__right__social__icon {
	width: 52px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
}

.telegram .footer__top__right__social__icon {
	background: rgba(40, 124, 203, 0.16);
}
.discord .footer__top__right__social__icon {
	background: rgba(155, 79, 255, 0.16);
}
.vk .footer__top__right__social__icon {
	background: rgba(32, 136, 255, 0.16);
}

.footer__top__right__social__right {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.footer__top__right__social__right__title {
	font-weight: 500;
	font-size: 15px;
	color: #a9a5a6;
}
.footer__top__right__social__right__link {
	font-weight: bold;
	font-size: 17px;
	display: flex;
	align-items: center;
	gap: 5px;
	color: white;
}

.footer__top__right__social__right__link img {
	width: 11px;
	height: 11px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.footer__bottom__left {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.footer__bottom__left a {
	color: white;
	font-weight: bold;
	transition: all 0.2s;
}
.footer__bottom__left a:hover {
	opacity: 0.65;
}
.footer__bottom__right {
	font-weight: bold;
	color: #8f8d8d;
}

body::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1320px;
	height: 480px;
	background: url('/assets/images/bottom-blur-pc.svg') no-repeat center
		bottom / contain;
	pointer-events: none;

}

.header__burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #090909;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s,
		visibility 0.3s;
	overflow: hidden;
}
.mobile-menu.open {
	opacity: 1;
	visibility: visible;
}
.mobile-menu__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 20px;
}
.mobile-menu__close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 24px;
}
.mobile-menu__link {
	color: white;
	font-size: 22px;
	font-weight: 500;
	text-decoration: none;
}
.simplebar-wrapper {
	pointer-events: none !important;
}
.simplebar-mask {
	pointer-events: all !important;
}

@media (max-width: 1300px) {
	.container {
		max-width: 1100px;
	}
}
@media (max-width: 1100px) {
	.container {
		max-width: 960px;
	}
}

@media (max-width: 960px) {
	.container {
		max-width: 768px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.header__tabs {
		display: none;
	}
	.header__online {

	}
	.header__burger {
		display: block;
	}

	.footer__top {
		flex-direction: column;
		gap: 10px;
	}
	.footer__top__left {
		align-items: center;
		gap: 10px;
		text-align: center;
	}
	.footer__top__right {
		flex-direction: column;
		align-items: start;
		gap: 10px;
	}
	.footer__bottom {
		justify-content: center;
	}
	.footer__bottom__left {
		justify-content: center;
	}
	.shop__block {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.shop__server-selection__container {
		justify-content: center;
	}
	.shop__block__right {
		max-height: 860px;
	}
	.shop__block__right__description__main {

	}
	.advertise-cards__container {
		display: none;
	}
	.shop__block__left {
		height: 600px;
	}

}
@media (max-width: 768px) {
	.container {
		max-width: 580px;
	}

	.shop__block__left {
		max-width: 100%;
	}
	.shop__block__right__header__info__right__name,
	.shop__block__right__header__info__left__name {
		font-size: 20px;
	}
	.shop__block__left__products__container {
		padding: 20px;
		padding-top: 12px;
	}
}
@media (max-width: 580px) {
	.container {
		max-width: 480px;
	}
	.shop__block__right__header__info__middle {
		display: none;
	}
	.shop__block__right__header__info {
		grid-template-columns: 1fr 1fr;
	}
	.shop__block__right__header {
		padding: 20px;
	}
	.shop__server-selection__gap {
		display: none;
	}
	.shop__block__right__description__list__item__left,
	.shop__block__right__description__list__item__right {
		font-size: 14px;
	}
	.shop__block__right__description__text {
		font-size: 14px;
	}
	.shop__block__right__description {
		padding: 20px;
	}
	.shop__block__right {
		max-height: 700px;
	}
	.shop__block__left__products__container {
		padding: 15px;
		padding-top: 7px;
	}
	.footer__bottom__left {
		flex-direction: column;
		text-align: center;
	}
	body::before {
		height: 800px;

		background: url('/assets/images/bottom-blur-phone.svg') center;
		background-size: cover;
	}
	.welcome-fix {
		display: none;
	}
}
@media (max-width: 460px) {
	.container {
		max-width: 100vw;
	}
	.shop__server-selection__container {
		flex-direction: column;
		width: 100%;
	}
	.shop__server-selection__item {
		max-width: 100%;
	}
	.shop__block__right__header__info {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.shop__block__right__header__selector {
		margin-top: 20px;
	}
	.shop__block__right__header__info__left {
		align-items: center;
	}
	.shop__block__right__header__info__right {
		align-items: center;
	}
	.shop__block__right__header__info__right__note {
		text-align: center;
	}
	.shop__server-selection__item__funtime::before {
		background-position: 0 0;
	}
	.shop__block__right__description__list__item__left,
	.shop__block__right__description__list__item__right {
		font-size: 12px;
		font-weight: 500;
	}
	.shop__block__right__description__text {
		font-size: 12px;
	}
	.shop__block__right__description__header {
		font-weight: 500;
	}
	.shop__block__right__header {
		background-size: cover;
	}
	.shop__block__right__footer__left__icon {
		display: none;
	}
	.shop__block__right__footer__left__price-block {
		align-items: center;
	}
	.shop__block__right__footer {
		flex-direction: column;
		gap: 20px;
	}
	.shop__block__right__footer__right {
		width: 100%;
	}
	.shop__block__right__footer__right__button {
		width: 100%;
	}
	.shop__block__right__description__list__item {
		padding: 10px 20px 10px 10px;
	}
	.header__logo {
		font-size: 18px;
	}
	.shop__block__left__products__product__left {
		gap: 10px;
	}
	.shop__block__left__products__container {
		padding: 12px;
		padding-top: 4px;
	}
}
@media (max-width: 370px) {
	.shop__block__left__products__product__left {
		gap: 8px;
	}
	.shop__block__left__products__product__image {
		width: 42px;
		height: 42px;
		max-width: 42px;
		max-height: 42px;
	}
	.shop__block__left__products__product__image img {
		width: 42px;
		height: 42px;
		max-width: 42px;
		max-height: 42px;
	}
	.shop__block__left__products__product__arrow {
		display: none;
	 }
}

.simplebar-wrapper {
	max-height: 600px !important;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  display: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.welcome-effect.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  height:730px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between
}
.welcome-effect.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  position:absolute;
  left:0;
  right:0;
  bottom:-335px;
  width:100%;
  z-index:-1
}
.effect-rows.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  inset-inline:0;
  top:0;
  width:920px;
  height:412px;
  background:url(./rows.CVHttxze.svg);
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain
}
.welcome-effect-content.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  position:absolute;
  bottom:100px;
  padding-top:120px;
  margin-top:auto;
  width:1038px;
  height:538px
}
.welcome-effect-content-2.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  display:none;
  position:absolute;
  bottom:-200px;
  padding-top:120px;
  margin-top:auto;
  width:1038px;
  height:538px
}
.welcome-effect-ray.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  display:flex;
  flex-direction:column;
  align-items:center
}
.welcome-effect-ray.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:2
}
.ray.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  width:100%;
  display:flex;
  justify-content:space-between;
  position:absolute
}
.ray.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc {
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  will-change:opacity;
  transform:translateZ(0)
}
.ray.xl.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc {
  width:504px;
  height:522px;
  filter:blur(22px)
}
.ray.xl.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc:first-child {
  animation:3s svelte-1pip8rc-blur infinite linear;
  background-image:url("data:image/svg+xml,%3Csvg width='504' height='522' viewBox='0 0 504 522' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M134.701 121.894L0.631594 0.335901L117.437 138.566L383.695 414.285L503.564 521.138L400.959 397.613L134.701 121.894Z' fill='url(%23paint0_linear_243_18669)' fill-opacity='0.08'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_243_18669' x1='0.631594' y1='0.335901' x2='503.564' y2='521.138' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.54'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A")
}
.ray.xl.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc:last-child {
  animation:6s svelte-1pip8rc-blur-reverse infinite linear;
  background-image:url("data:image/svg+xml,%3Csvg width='504' height='522' viewBox='0 0 504 522' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M369.361 121.894L503.43 0.335901L386.625 138.566L120.366 414.285L0.497238 521.138L103.102 397.613L369.361 121.894Z' fill='url(%23paint0_linear_243_18670)' fill-opacity='0.08'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_243_18670' x1='503.43' y1='0.335901' x2='0.49725' y2='521.138' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.54'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A")
}
.ray.xm.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  width:560px;
  top:20px
}
.ray.xm.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc {
  width:221px;
  height:428px;
  filter:blur(18px)
}
.ray.xm.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc:first-child {
  animation:4s svelte-1pip8rc-blur-reverse infinite linear;
  background-image:url("data:image/svg+xml,%3Csvg width='221' height='428' viewBox='0 0 221 428' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M66.6387 104.621L0.434428 0.255317L43.7693 109.132L160.025 335.449L220.029 427.745L182.895 330.939L66.6387 104.621Z' fill='url(%23paint0_linear_243_18672)' fill-opacity='0.12'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_243_18672' x1='0.434428' y1='0.255317' x2='89.8155' y2='453.427' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.54'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A")
}
.ray.xm.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc:last-child {
  animation:7s svelte-1pip8rc-blur infinite linear;
  background-image:url("data:image/svg+xml,%3Csvg width='221' height='428' viewBox='0 0 221 428' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M154.289 104.621L220.493 0.255317L177.158 109.132L60.9024 335.449L0.898471 427.745L38.033 330.939L154.289 104.621Z' fill='url(%23paint0_linear_243_18671)' fill-opacity='0.12'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_243_18671' x1='220.493' y1='0.255317' x2='131.112' y2='453.427' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.54'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A")
}
.ray.xs.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  top:62px;
  width:268px
}
.ray.xs.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc {
  width:121px;
  height:235px;
  filter:blur(10px)
}
.ray.xs.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc:first-child {
  animation:5s svelte-1pip8rc-blur infinite linear;
  background-image:url("data:image/svg+xml,%3Csvg width='121' height='235' viewBox='0 0 121 235' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.5931 57.4935L0.272682 0.237293L24.0467 59.968L87.8261 184.129L120.745 234.763L100.373 181.654L36.5931 57.4935Z' fill='url(%23paint0_linear_243_18674)' fill-opacity='0.12'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_243_18674' x1='0.272682' y1='0.237293' x2='49.3082' y2='248.853' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.54'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A")
}
.ray.xs.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc:last-child {
  animation:3s svelte-1pip8rc-blur-reverse infinite linear;
  background-image:url("data:image/svg+xml,%3Csvg width='121' height='235' viewBox='0 0 121 235' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M84.444 57.4935L120.764 0.237293L96.9904 59.968L33.211 184.129L0.292132 234.763L20.6646 181.654L84.444 57.4935Z' fill='url(%23paint0_linear_243_18673)' fill-opacity='0.12'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_243_18673' x1='120.764' y1='0.237293' x2='71.7289' y2='248.853' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.54'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A")
}
@keyframes svelte-1pip8rc-blur {
  0% {
    opacity:.2
  }
  50% {
    opacity:1
  }
  to {
    opacity:.2
  }
}
@keyframes svelte-1pip8rc-blur-reverse {
  0% {
    opacity:1
  }
  50% {
    opacity:.2
  }
  to {
    opacity:1
  }
}
.welcome-effect-blur.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  margin-top:28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative
}
.welcome-effect-blur.svelte-1pip8rc>.blur.svelte-1pip8rc.svelte-1pip8rc {
  width:100%;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:flex-end
}
.welcome-effect-blur.svelte-1pip8rc>.blur.svelte-1pip8rc>.item.svelte-1pip8rc {
  border-radius:100%;
  width:100%;
  will-change:opacity;
  transform:translateZ(0)
}
.welcome-effect-blur.svelte-1pip8rc>.blur.svelte-1pip8rc>.item.item-a.svelte-1pip8rc {
  left:0
}
.welcome-effect-blur.svelte-1pip8rc>.blur.svelte-1pip8rc>.item.item-c.svelte-1pip8rc {
  right:0
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xl.svelte-1pip8rc.svelte-1pip8rc {
  width:970px;
  height:214px
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xl.svelte-1pip8rc>.item.svelte-1pip8rc {
  position:absolute;
  width:530px;
  height:181px;
  opacity:.8;
  filter:blur(100px)
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xl.svelte-1pip8rc>.item.item-a.svelte-1pip8rc {
  animation:5s svelte-1pip8rc-blur-reverse infinite linear;
  background:#1e3aff
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xl.svelte-1pip8rc>.item.item-b.svelte-1pip8rc {
  animation:6s svelte-1pip8rc-blur infinite linear;
  top:0;
  background:#db00ff
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xl.svelte-1pip8rc>.item.item-c.svelte-1pip8rc {
  animation:7s svelte-1pip8rc-blur infinite linear;
  background:#f90
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xm.svelte-1pip8rc.svelte-1pip8rc {
  position:absolute;
  top:8px;
  width:714px;
  height:114px;
  z-index:1
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xm.svelte-1pip8rc>.item.svelte-1pip8rc {
  position:absolute;
  width:390px;
  height:114px;
  filter:blur(64px)
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xm.svelte-1pip8rc>.item.item-a.svelte-1pip8rc {
  animation:5s svelte-1pip8rc-blur infinite linear;
  background:#8032ff
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xm.svelte-1pip8rc>.item.item-b.svelte-1pip8rc {
  animation:5s svelte-1pip8rc-blur infinite linear;
  background:#db00ff
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xm.svelte-1pip8rc>.item.item-c.svelte-1pip8rc {
  animation:6s svelte-1pip8rc-blur infinite linear;
  background:#ff2843
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xs.svelte-1pip8rc.svelte-1pip8rc {
  top:-28px;
  z-index:2;
  position:absolute;
  width:570px;
  height:91px
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xs.svelte-1pip8rc>.item.svelte-1pip8rc {
  position:absolute;
  width:312px;
  height:91px;
  opacity:.48;
  filter:blur(116px)
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xs.svelte-1pip8rc>.item.item-a.svelte-1pip8rc {
  animation:4s svelte-1pip8rc-blur-reverse infinite linear;
  background:#0500ff
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xs.svelte-1pip8rc>.item.item-b.svelte-1pip8rc {
  animation:3s svelte-1pip8rc-blur infinite linear;
  background:#fa15ff
}
.welcome-effect-blur.svelte-1pip8rc>.blur.xs.svelte-1pip8rc>.item.item-c.svelte-1pip8rc {
  animation:2s svelte-1pip8rc-blur infinite linear;
  background:#ff3d00
}
.welcome-fix.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
  position:absolute;
  overflow:hidden;
  bottom:0;
  left:0;
  right:0;
  height:480px;
  width:100%;
  z-index:0;
}
@media (max-width: 960px) {
  .welcome-fix.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
    height:800px
  }
  .welcome-effect.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
    bottom:0
  }
  .welcome-effect-content-2.svelte-1pip8rc.svelte-1pip8rc.svelte-1pip8rc {
    display:block
  }
}

@media (max-width: 960px) {

	.shop__block__right__header-bg-container__image {
		animation: none;
		will-change: auto;
	}

	.shop__block__right__header__selector {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(20, 20, 20, 0.85);
	}
	.advertise-cards__arrow {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.welcome-effect-blur.svelte-1pip8rc>.blur.svelte-1pip8rc>.item.svelte-1pip8rc,
	.ray.svelte-1pip8rc>.item.svelte-1pip8rc.svelte-1pip8rc {
		animation: none !important;
		will-change: auto;
	}
}
