@charset "UTF-8";

/* ================================
   1) Reset
================================ */
* {
	padding: 0;
	margin: 0;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* ================================
   2) Base elements
================================ */
a,
a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

aside,
nav,
footer,
header,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

ul,
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

/* ================================
   3) Form defaults
================================ */
input,
textarea,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button,
input[type="submit"] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
	outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

/* ================================
   4) Design tokens (New theme)
   - Более "техно" и холодная палитра
================================ */
:root {
	--bg: #061318;
	--bg-2: #071d25;
	--surface: rgba(255, 255, 255, 0.06);
	--surface-2: rgba(255, 255, 255, 0.09);
	--stroke: rgba(255, 255, 255, 0.12);

	--text: rgba(255, 255, 255, 0.92);
	--text-soft: rgba(255, 255, 255, 0.72);
	--text-muted: rgba(255, 255, 255, 0.58);

	--accent: #00d4ff;
	--accent-2: #7c4dff;
	--accent-warm: #00ffb2;

	--shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
	--shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.35);

	--radius-lg: 28px;
	--radius-md: 16px;
	--radius-sm: 12px;

	--ring: 0 0 0 3px rgba(0, 212, 255, 0.22);

	/* Совместимость со старым кодом */
	--accent-pink: var(--accent);
	--card: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

/* ================================
   5) Page base
================================ */
html,
body {
	height: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	background:
		radial-gradient(1200px 600px at 15% 10%, rgba(0, 212, 255, 0.12), transparent 55%),
		radial-gradient(900px 500px at 85% 15%, rgba(124, 77, 255, 0.10), transparent 60%),
		linear-gradient(180deg, var(--bg), var(--bg-2));
	color: var(--text);
	font-family: "Unbounded", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	caret-color: transparent;
}

input,
textarea {
	caret-color: #ffffff;
}

/* ================================
   6) Layout container
================================ */
.wrapper {
	position: relative;
	box-sizing: content-box;
	max-width: 1252px;
	left: 50%;
	transform: translateX(-50%);
	padding: 22px 0;
}

@media (max-width: 1400px) {
	.wrapper {
		padding: 16px 5%;
	}
}

/* ================================
   7) Header + navigation
================================ */
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.header__wrapper {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header__logo a {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.2px;
	color: var(--text);
}

.header__logo a:hover {
	opacity: 0.78;
	transition: opacity 0.25s ease;
}

.header__btn {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	padding: 7px 12px;
	border-radius: 999px;
	color: #061318;
	font-weight: 700;
	box-shadow: 0 10px 26px rgba(0, 212, 255, 0.18);
}

.header__btn:hover {
	opacity: 0.9;
}

.nav {
	justify-self: center;
	display: flex;
	gap: 18px;
}

.nav a {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.78);
	letter-spacing: 0.15px;
}

.nav a:hover {
	opacity: 0.7;
}

/* ================================
   8) Hero
================================ */
.hero {
	display: block;
	position: relative;
	height: 391px;
	margin: 22px 0 54px 0;
	border-radius: var(--radius-lg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image:
		linear-gradient(120deg, rgba(6, 19, 24, 0.65), rgba(6, 19, 24, 0.18)),
		url("../img/hero-0.jpg");
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
	content: "";
	position: absolute;
	inset: -2px;
	background:
		radial-gradient(520px 260px at 20% 30%, rgba(0, 212, 255, 0.14), transparent 60%),
		radial-gradient(520px 260px at 80% 20%, rgba(124, 77, 255, 0.14), transparent 60%);
	pointer-events: none;
	border-radius: var(--radius-lg);
}

.hero:after {
	display: block;
	position: absolute;
	background-image: url("../img/after.webp");
	content: "";
	z-index: -1;
	width: 360px;
	height: 290px;
	right: -135px;
	bottom: -100px;
	filter: saturate(0.85) hue-rotate(160deg);
	opacity: 0.75;
}

.hero__inner {
	padding: 56px 44px 0;
}

.hero__title {
	font-weight: 800;
	font-size: 56px;
	line-height: 1.05;
	letter-spacing: 0.2px;
	width: 100%;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero__title span {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;	
}
/* ================================
   9) Primary CTA button
================================ */
.cta-main {
	margin-top: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 38px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.cta-main:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(0, 212, 255, 0.40);
	transform: translateY(-1px);
}

/* ================================
   10) Hero quick links
================================ */
.hero__quick {
	position: absolute;
	bottom: 15px;
	right: 15px;
	display: flex;
	gap: 14px;
	z-index: 1;
}

.hero__quick a {
	display: inline-block;
	padding: 9px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(0, 0, 0, 0.18);
	color: #fff;
	font-weight: 500;
	font-size: 10px;
	opacity: 0.95;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.hero__quick a:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(0, 212, 255, 0.35);
}

/* ================================
   11) Rotator
================================ */
.cat-rotator {
	position: absolute;
	bottom: -50px;
	right: 50%;
	width: 120px;
	height: 120px;
	cursor: pointer;
	z-index: 2;
}

.cat-rotator svg {
	width: 100%;
	height: 100%;
	animation: spin 15s linear infinite;
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

.cat-rotator text {
	fill: rgba(255, 255, 255, 0.92);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.6px;
}

.cat-arrow {
	position: absolute;
	width: 3px;
	height: 45px;
	background: rgba(255, 255, 255, 0.9);
	top: 46%;
	left: 50%;
	transform: translate(-50%, -36%);
	border-radius: 1px;
}

.cat-arrow::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	transform: translateX(-50%);
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid rgba(255, 255, 255, 0.9);
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ================================
   12) Responsive (hero/header)
================================ */
@media (max-width: 1100px) {
	.cat-rotator {
		left: 80px;
	}
	.hero__title {
		font-size: 48px;
	}	
}

@media (max-width: 820px) {
	.cat-rotator {
		left: 45px;
		bottom: 47px;
	}

	.hero__title {
		font-size: 34px;
	}
}

@media (max-width: 640px) {
	.nav {
		gap: 8px;
	}

	.nav a {
		font-size: 10px;
	}

	.header__logo {
		margin-right: 10px;
	}

	.hero__quick {
		display: flex;
		flex-direction: column;
	}

	.hero__inner {
		padding: 32px 16px 0;
	}

	.cat-rotator {
		left: 15px;
	}
	.hero__title {
		font-size: 26px;
	}	
}

@media (max-width: 520px) {
	.hidden-link-520 {
		display: none;
	}
}

@media (max-width: 480px) {
	.cat-rotator {
		width: 90px;
		height: 90px;
	}
}

/* ================================
   13) Footer
================================ */
.footer {
	padding: 52px 20px 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__container {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 40px;
	flex-wrap: wrap;
	gap: 30px;
}

.footer__title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 0.2px;
}

.footer__phone,
.footer__email {
	display: block;
	color: rgba(255, 255, 255, 0.92);
	font-size: 26px;
	font-weight: 500;
	margin: 0 0 12px;
}

.footer__email {
	margin: 0 0 20px;
}

.footer__phone:hover,
.footer__email:hover {
	opacity: 0.72;
	transition: opacity 0.25s ease;
}

.footer__btn {
	background: linear-gradient(135deg, var(--accent), var(--accent-warm));
	border: none;
	color: #061318;
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(0, 212, 255, 0.14);
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.footer__btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.footer__text {
	margin: 6px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.76);
}

.footer__text a {
	color: rgba(0, 212, 255, 0.9);
}

.footer__text a:hover {
	opacity: 0.8;
}

.faq__wrap {
	display: flex;
	justify-content: center;
}

.footer__bottom {
	text-align: center;
	padding-top: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1100px) {
	.footer__title {
		font-size: 20px;
	}

	.footer__phone,
	.footer__email {
		font-size: 22px;
	}

	.footer__text {
		font-size: 12px;
	}
}

@media (max-width: 920px) {
	.footer__container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer__left,
	.footer__right {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.footer__text {
		text-align: center;
	}
}

/* ================================
   14) Sections + support block
================================ */
.section {
	margin: 100px auto;
	padding: 0;
}

.section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2px 10px 6px;
}

.section__title {
	font-weight: 800;
	font-size: 24px;
	letter-spacing: 0.3px;
	margin-right: 10px;
}

.support {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.support:hover {
	opacity: 0.8;
	transition: opacity 0.25s ease;
}

.support-text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78);
	margin-right: 10px;
}

.avatars {
	display: flex;
}

.avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 3px solid rgba(6, 19, 24, 0.85);
	margin-left: -17px;
	overflow: hidden;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
	background:
		radial-gradient(120px 120px at 20% 20%, rgba(0, 212, 255, 0.16), transparent 60%),
		rgba(255, 255, 255, 0.06);
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 640px) {
	.section__head {
		flex-direction: column;
		gap: 10px;
	}

	.section__title {
		font-size: 18px;
	}
}

/* ================================
   15) Cards grid
================================ */
.cards {
	margin-top: 6px;
	display: grid;
	gap: 0 5%;
	grid-template-columns: repeat(3, minmax(250px, 375px));
	position: relative;
}

.card {
	position: relative;
	margin: 30px 0;
	font-size: 24px;
	text-align: center;
	border-radius: var(--radius-sm);
}

.card__link {
	color: rgba(255, 255, 255, 0.92);
}

.card__link:hover {
	opacity: 0.78;
	transition: opacity 0.25s ease;
}

.cards.four-colums {
	grid-template-columns: repeat(4, minmax(150px, 300px));
	gap: 0 2%;
}

@media (max-width: 1024px) {
	.cards {
		grid-template-columns: repeat(2, minmax(250px, 1fr));
		gap: 0 8%;
	}

	.cards.four-colums {
		grid-template-columns: repeat(3, minmax(150px, 280px));
	}
}

@media (max-width: 600px) {
	.cards {
		grid-template-columns: minmax(250px, 375px);
	}

	.cards.four-colums {
		grid-template-columns: repeat(2, minmax(150px, 280px));
	}
}

.card__btn-wrp {
	display: flex;
	position: relative;
	justify-content: space-between;
	width: 100%;
	margin: 10px;
}

.card__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: end;
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	background: var(--card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow-soft);
}

.card__wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(420px 240px at 20% 25%, rgba(0, 212, 255, 0.18), transparent 58%),
		radial-gradient(420px 240px at 80% 15%, rgba(124, 77, 255, 0.14), transparent 62%);
	pointer-events: none;
}


.card__img {
	width: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	filter: saturate(0.95) contrast(1.02);
}

.card p {
	position: absolute;
	left: 50%;
	bottom: -35px;
	transform: translateX(-50%);
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	width: 100%;
	color: rgba(255, 255, 255, 0.9);
}

/* ================================
   16) Games section badge
================================ */
.games__section {
	padding-bottom: 50px;
	padding-top: 20px;
}

.games__title {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #061318;
	font-size: 13px;
	font-weight: 800;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-warm));
	width: 225px;
	height: 50px;
	box-shadow: 0 12px 28px rgba(0, 212, 255, 0.14);
}

/* ================================
   17) Order block (light surface -> glass)
================================ */
.order {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.06));
	color: rgba(255, 255, 255, 0.92);
	border-radius: var(--radius-lg);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding: 0;
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	overflow: hidden;
}

.order__title {
	font-size: 52px;
	font-weight: 900;
	margin: 0 0 15px;
	line-height: 0.9;
	letter-spacing: 0.2px;
}

.order__text p {
	font-size: 18px;
	margin: 0 0 20px;
	color: rgba(255, 255, 255, 0.78);
}

.order__text {
	padding: 40px;
}

.order__btn {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border: none;
	color: #061318;
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.18s ease, opacity 0.18s ease;
	box-shadow: 0 12px 30px rgba(0, 212, 255, 0.14);
	font-weight: 800;
}

.order__btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.order img {
	min-width: 386px;
	height: 325px;
	filter: saturate(0.9) contrast(1.05);
}

@media (max-width: 1024px) {
	.order img {
		min-width: 200px;
		height: initial;
	}

	.order__title {
		font-size: 32px;
		font-weight: 800;
	}

	.order__text p {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.order img {
		min-width: 150px;
		height: initial;
	}

	.order__title {
		font-size: 28px;
		font-weight: 800;
	}

	.order__text p {
		font-size: 14px;
	}
}

@media (max-width: 520px) {
	.order img {
		display: none;
	}

	.order__text {
		padding: 20px;
	}
}

/* ================================
   18) FAQ
================================ */
.faq {
	margin: 20px 0;
}

.faq__title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
}

.faq__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.faq__item {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
	color: rgba(255, 255, 255, 0.9);
	padding: 20px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.10);
	box-shadow: var(--shadow-soft);
}

.faq__subtitle {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 10px;
}

.faq__text {
	font-size: 14px;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.faq__btn {
	margin-top: 30px;
	background: linear-gradient(135deg, var(--accent), var(--accent-warm));
	border: none;
	color: #061318;
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.18s ease, opacity 0.18s ease;
	font-weight: 800;
	box-shadow: 0 12px 30px rgba(0, 212, 255, 0.12);
}

.faq__btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

@media (max-width: 1024px) {
	.faq__title {
		font-size: 18px;
	}

	.faq__subtitle {
		font-size: 16px;
	}

	.faq__text {
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.faq__list {
		grid-template-columns: 1fr;
	}
}

/* ================================
   19) Modal overlay + dialog
================================ */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 60;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.overlay.show {
	opacity: 1;
	visibility: visible;
}

.modal {
    width: 560px;
    max-width: 95%;
    background:
        radial-gradient(700px 320px at 20% 10%, rgba(0, 212, 255, 0.16), transparent 60%),
        radial-gradient(700px 320px at 85% 10%, rgba(124, 77, 255, 0.14), transparent 62%),
        linear-gradient(180deg, rgba(9, 28, 36, 0.94), rgba(6, 19, 24, 0.92));
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: var(--shadow);
    min-height: 300px;
    caret-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: absolute;
    transform: translateY(-20%);
    opacity: 0;
    transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
}

.overlay.show .modal {
	transform: translateY(0);
	opacity: 1;
}

.close-fixed {
	position: fixed;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	font-size: 26px;
	cursor: pointer;
	z-index: 80;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.modal h3 {
	margin: 0 0 6px;
	font-size: 36px;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.2px;
}

.modal p.lead {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.76);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.form-row {
	margin-bottom: 12px;
}

label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.70);
	margin-bottom: 6px;
	font-weight: 700;
	letter-spacing: 0.15px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	padding: 12px 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	outline: none;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="password"]:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
	border-color: rgba(0, 212, 255, 0.55);
	background: rgba(255, 255, 255, 0.10);
	box-shadow: var(--ring);
}

#items-modal textarea,
#supportModal textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	padding: 12px 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	outline: none;
	resize: vertical;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

#items-modal textarea:hover,
#supportModal textarea:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
}

#items-modal textarea:focus,
#supportModal textarea:focus {
	border-color: rgba(0, 212, 255, 0.55);
	background: rgba(255, 255, 255, 0.10);
	box-shadow: var(--ring);
}

#items-modal textarea {
	margin-top: 20px;
	resize: none;
	min-height: 180px;
}

input:focus {
	border-bottom-color: rgba(255, 255, 255, 0.32);
}

/* ================================
   20) Checkbox (custom)
================================ */
.check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0 20px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 14px;
	line-height: 1.4;
}

.check input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	position: relative;
	transition: all 0.22s ease;
}

.check input[type="checkbox"]:hover {
	border-color: rgba(0, 212, 255, 0.45);
}

.check input[type="checkbox"]:checked {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border-color: transparent;
}

.check input[type="checkbox"]:checked::after {
	content: "✔";
	color: #061318;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -52%);
	font-size: 12px;
	font-weight: 900;
}

.check label {
	cursor: pointer;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 0;
}

.check label a {
	color: rgba(0, 212, 255, 0.92);
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.check label a:hover {
	opacity: 0.82;
}

/* ================================
   21) Modal submit + switching
================================ */
.submit-btn {
	width: 100%;
	height: 46px;
	background: linear-gradient(135deg, var(--accent), var(--accent-warm));
	border-radius: 999px;
	color: #061318;
	font-weight: 900;
	font-size: 15px;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(0, 212, 255, 0.12);
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.submit-btn:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

.modal-inner {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: opacity 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.modal-inner.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	position: relative;
	z-index: 2;
}

.modal-switch {
	display: block;
	text-align: center;
	margin-top: 16px;
	font-size: 14px;
	color: rgba(0, 212, 255, 0.92);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.modal-switch:hover {
	opacity: 0.8;
}

.modal-inner.leaving {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	z-index: 1;
}

/* ================================
   22) Reduced motion
================================ */
@media (prefers-reduced-motion: reduce) {
	.cat-rotator svg {
		animation: none;
	}

	.overlay,
	.modal {
		transition: none;
	}
}

/* ================================
   23) LK header + containers
================================ */
.header-lk {
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.header-lk__logo {
	font-size: 20px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.92);
	display: block;
	letter-spacing: 0.25px;
}

.container-lk {
	max-width: 1200px;
	margin: 30px auto;
	padding: 20px;
}

/* ================================
   24) Policy lists / headings
================================ */
.policy ol {
	list-style: none;
	padding-left: 1.5em;
	counter-reset: section;
}

.policy ol > li {
	counter-increment: section;
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1em;
}

.policy ol > li::before {
	content: counters(section, ".") " ";
	color: rgba(255, 255, 255, 0.55);
}

.policy ol li ol {
	counter-reset: subsection;
	list-style: none;
	padding-left: 1.5em;
}

.policy ol li ol > li {
	counter-increment: subsection;
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1em;
}

.policy ol li ol > li::before {
	content: counters(section, ".") "." counters(subsection, ".") " ";
	color: rgba(255, 255, 255, 0.55);
}

.policy ul {
	list-style: none;
	padding-left: 1.5em;
}

.policy ul > li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1em;
}

.policy ul > li::before {
	content: "•";
	color: rgba(255, 255, 255, 0.55);
	font-size: 1em;
	line-height: 1;
}

.policy h1,
.policy h2 {
	margin: 1em 0 0.5em;
	text-align: center;
}

.policy h2 {
	display: inline-block;
}

.policy a {
	font-weight: 500;
	color: rgba(0, 212, 255, 0.9);
}

/* ================================
   25) Tabs
================================ */
.container-main {
	margin: 30px auto;
}

.tabs-lk {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.tabs-lk__tab-btn {
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.tabs-lk__tab-btn_active {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(124, 77, 255, 0.18));
	border-color: rgba(0, 212, 255, 0.35);
	color: rgba(255, 255, 255, 0.95);
}

.tabs-lk__tab-btn:hover {
	transform: translateY(-1px);
	border-color: rgba(0, 212, 255, 0.28);
}

.tabs-lk__tab-content {
	display: none;
	animation: fadeIn 0.5s;
}

.tabs-lk__tab-content_active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ================================
   26) LK cards + tables
================================ */
.card-lk {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
	border-radius: var(--radius-md);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.card-lk h3 {
	margin-top: 0;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 900;
	letter-spacing: 0.2px;
}

.card-lk input {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
	outline: none;
}

.card-lk input:focus {
	border-color: rgba(0, 212, 255, 0.55);
	box-shadow: var(--ring);
}

.card-lk button.save {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border: none;
	padding: 12px 20px;
	border-radius: 999px;
	color: #061318;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.18s ease, opacity 0.18s ease;
	box-shadow: 0 12px 28px rgba(0, 212, 255, 0.12);
}

button.save:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.card-lk__table table {
	width: 100%;
	border-collapse: collapse;
	color: rgba(255, 255, 255, 0.9);
}

.card-lk__table table th,
.card-lk__table table td {
	padding: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	text-align: left;
}

@media (max-width: 640px) {
	.card-lk__table {
		overflow-x: scroll;
	}
}

/* ================================
   27) Service page (new look)
================================ */
.container-service .service-card {
	background:
		radial-gradient(600px 260px at 15% 15%, rgba(0, 212, 255, 0.12), transparent 60%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
	border-radius: 1rem;
	box-shadow: var(--shadow);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.container-service .left-side {
	flex: 1 1 30%;
	background:
		linear-gradient(180deg, rgba(0, 212, 255, 0.08), rgba(255, 255, 255, 0.04));
	padding: 2rem;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.container-service .left-side img {
	width: 100%;
	border-radius: 22px;
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-soft);
}

.container-service .left-side h2 {
	font-size: 1.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.92);
}

.container-service .left-side p {
	color: rgba(255, 255, 255, 0.68);
	margin-bottom: 1rem;
}

.container-service .right-side {
	flex: 1 1 70%;
	padding: 2rem;
}

.container-service .right-side h3 {
	font-size: 1.25rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
}

.container-service form div {
	margin-bottom: 1.5rem;
}

.container-service label {
	display: block;
	font-size: 0.875rem;
	font-weight: 800;
	margin-bottom: 0.25rem;
	color: rgba(255, 255, 255, 0.72);
}

.container-service input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0.75rem;
	background-color: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
	font-size: 1rem;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.container-service input:focus {
	border-color: rgba(0, 212, 255, 0.55);
	box-shadow: var(--ring);
	background: rgba(255, 255, 255, 0.08);
}

.container-service input[type="number"] {
	padding-right: 3.5rem;
}

.container-service .input-currency {
	position: relative;
}

.container-service .input-currency span {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
}

.container-service .payment-methods {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.container-service .payment-methods input[type="radio"] {
	display: none;
}

.container-service .payment-methods label {
	display: flex;
	align-items: center;
	padding: 0.75rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.75rem;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.container-service .payment-methods label:hover {
	transform: translateY(-1px);
	border-color: rgba(0, 212, 255, 0.28);
}

.container-service .payment-methods input[type="radio"]:checked + label {
	border-color: rgba(0, 212, 255, 0.45);
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(124, 77, 255, 0.16));
}

.container-service .payment-methods i {
	margin-right: 0.5rem;
	font-size: 1.25rem;
}

.container-service .summary {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 1rem;
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.container-service .summary .row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.78);
}

.container-service .summary .total {
	font-weight: 900;
	font-size: 1.125rem;
	color: rgba(0, 212, 255, 0.92);
}

.container-service .diag-strike {
	position: relative;
	color: rgba(255, 255, 255, 0.62);
	font-weight: 700;
}

.container-service .diag-strike::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxsaW5lIHgxPSIwIiB5MT0iMTAwJSIgeDI9IjEwMCUiIHkyPSIwIiBzdHJva2U9IiMwMEQ0RkYiIHN0cm9rZS13aWR0aD0iMiIvPiA8L3N2Zz4=");
	background-size: cover;
	opacity: 0.9;
}

.container-service .promo-error {
	font-size: 10px;
	color: #ff4d4d;
	padding: 0 4px;
	float: right;
}

.container-service button.submit-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--accent), var(--accent-warm));
	color: #061318;
	padding: 0.75rem;
	border: none;
	border-radius: 999px;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.18s ease, opacity 0.18s ease;
	box-shadow: 0 12px 28px rgba(0, 212, 255, 0.12);
}

.container-service button.submit-btn:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

.container-service .terms {
	text-align: center;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.62);
	margin-top: 0.5rem;
}

.container-service .terms a {
	color: rgba(0, 212, 255, 0.9);
}

.container-service .terms a:hover {
	opacity: 0.82;
}

@media (max-width: 768px) {
	.container-service .service-card {
		flex-direction: column;
	}
	.container-service .left-side,
	.container-service .right-side {
		flex: 1 1 100%;
	}
	.container-service .payment-methods {
		grid-template-columns: 1fr;
	}
}

/* ================================
   28) Subscription options
================================ */
.container-service-subscription {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
	.container-service-subscription {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

.container-service form .subscription-option {
	margin-bottom: 0;
}

.container-service-subscription .subscription-option input[type="radio"] {
	display: none;
}

.container-service-subscription .subscription-option label {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0.75rem;
	background-color: rgba(255, 255, 255, 0.06);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
	color: rgba(255, 255, 255, 0.9);
	height: 100%;
	justify-content: center;
}

.container-service-subscription .subscription-option label:hover {
	transform: translateY(-1px);
	border-color: rgba(0, 212, 255, 0.28);
}

.container-service-subscription .subscription-option label .title {
	font-weight: 900;
	margin-bottom: 0.25rem;
}

.container-service-subscription .subscription-option label .price {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.65);
}

.container-service-subscription .subscription-option input[type="radio"]:checked + label {
	border-color: rgba(0, 212, 255, 0.45);
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.20), rgba(124, 77, 255, 0.14));
}

.container-service-subscription .subscription-option-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	border: 2px dashed rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.68);
	font-size: 16px;
	text-align: center;
	min-height: 120px;
	grid-column: 1 / -1;
}

.container-service-subscription .subscription-option-empty span {
	display: block;
	margin-top: 8px;
	font-weight: 800;
}

.container-service-subscription .subscription-option-empty i {
	font-size: 32px;
	color: rgba(255, 255, 255, 0.45);
}

/* ================================
   29) Profile page
================================ */
.container-profile__wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.container-profile__row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.container-profile__row .container-profile__card {
	flex: 1 1 300px;
}

.container-profile__card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
	border-radius: var(--radius-md);
	padding: 20px;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.container-profile__card h3 {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.92);
}

.container-profile__card .form-row {
	margin-bottom: 15px;
}

.container-profile__card label {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 6px;
	font-weight: 800;
}

.container-profile__card input {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.container-profile__card input:focus {
	border-color: rgba(0, 212, 255, 0.55);
	box-shadow: var(--ring);
	background: rgba(255, 255, 255, 0.08);
}

.container-profile__save,
.container-profile__logout,
.container-profile__btn {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border: none;
	padding: 12px 20px;
	border-radius: 999px;
	color: #061318;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.18s ease, opacity 0.18s ease;
	margin-top: 10px;
	box-shadow: 0 12px 28px rgba(0, 212, 255, 0.12);
}

.container-profile__logout {
	background: linear-gradient(135deg, rgba(255, 77, 77, 0.95), rgba(255, 125, 77, 0.90));
	color: #061318;
	margin-left: 10px;
	box-shadow: 0 12px 28px rgba(255, 77, 77, 0.10);
}

.container-profile__save:hover,
.container-profile__btn:hover,
.container-profile__logout:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.container-profile__history-block {
	width: 100%;
}

.container-profile__history {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
	margin-top: 15px;
}

.container-profile .history-item {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.container-profile .history-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.container-profile .history-item__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.container-profile .history-item__service {
	font-size: 16px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.92);
}

.container-profile .history-item__status {
	font-size: 14px;
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 900;
	text-wrap: nowrap;
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.container-profile .status--success {
	background: rgba(0, 255, 178, 0.14);
	color: rgba(0, 255, 178, 0.92);
}

.container-profile .status--decline {
	background: rgba(255, 77, 77, 0.14);
	color: rgba(255, 77, 77, 0.95);
}

.container-profile .status--pending {
	background: rgba(255, 214, 0, 0.12);
	color: rgba(255, 214, 0, 0.95);
}

.container-profile .history-item__body p {
	margin: 6px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.70);
}

.container-profile .amount {
	color: rgba(0, 212, 255, 0.92);
	font-weight: 900;
}

.container-profile .delivery {
	font-weight: 900;
}

.container-profile .container-profile__btn {
	flex-grow: 1;
	width: auto;
	padding: 12px;
	border-radius: 999px;
	font-weight: 900;
}

.container-profile__btn.status-btn--processing {
	background: linear-gradient(135deg, rgba(255, 184, 0, 0.95), rgba(255, 214, 0, 0.90));
	color: #061318;
	box-shadow: 0 12px 28px rgba(255, 214, 0, 0.12);
}

.container-profile__btn.status-btn--success {
	background: linear-gradient(135deg, rgba(0, 255, 178, 0.95), rgba(0, 212, 255, 0.85));
	color: #061318;
	box-shadow: 0 12px 28px rgba(0, 255, 178, 0.10);
}

.container-profile__btn.status-btn--decline {
	background: linear-gradient(135deg, rgba(255, 77, 77, 0.95), rgba(255, 125, 77, 0.90));
	color: #061318;
	box-shadow: 0 12px 28px rgba(255, 77, 77, 0.10);
}

.container-profile .history-item-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	border: 2px dashed rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.68);
	font-size: 16px;
	text-align: center;
	min-height: 120px;
	grid-column: 1 / -1;
}

.container-profile .history-item-empty span {
	display: block;
	margin-top: 8px;
	font-weight: 900;
}

.container-profile .history-item-empty i {
	font-size: 32px;
	color: rgba(255, 255, 255, 0.45);
}

.container-profile .button-group {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 20px;
	flex-wrap: wrap;
}

.container-profile .button-group .container-profile__btn {
	margin-top: 0;
}

.container-profile .container-profile__icon-btn {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #061318;
	cursor: pointer;
	transition: transform 0.18s ease, opacity 0.18s ease;
	box-shadow: 0 12px 28px rgba(0, 212, 255, 0.12);
}

.container-profile .container-profile__icon-btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.container-profile .container-profile__icon-btn i {
	font-size: 16px;
}