@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@200;300;400;500;600;700;800;900;1000&display=swap');


html,
html.dark {
	--fsk-red: #ef4444;
	--fsk-orange: #f97316;
	--fsk-amber: #f59e0b;
	--fsk-lime: #84cc16;
	--fsk-green: #22c55e;
	--fsk-emerald: #10b981;
	--fsk-teal: #14b8a6;
	--fsk-cyan: #06b6d4;
	--fsk-sky: #0ea5e9;
	--fsk-blue: #3b82f6;
	--fsk-indigo: #6366f1;
	--fsk-violet: #8b5cf6;
	--fsk-purple: #a855f7;
	--fsk-yellow: #e1b04a;
	--fsk-fuchsia: #d946ef;
	--fsk-pink: #ec4899;
	--fsk-rose: #f43f5e;
	--fsk-red-100: #fee2e2;
	--fsk-orange-100: #fef3c7;
	--fsk-amber-100: #fefce8;
	--fsk-lime-100: #ecfccb;
	--fsk-green-100: #dcfce7;
	--fsk-emerald-100: #d1fae5;
	--fsk-teal-100: #ccfbf1;
	--fsk-cyan-100: #cffafe;
	--fsk-sky-100: #e0f2fe;
	--fsk-indigo-100: #e0e7ff;
	--fsk-violet-100: #ede9fe;
	--fsk-purple-100: #f3e8ff;
	--fsk-fuchsia-100: #fae8ff;
	--fsk-pink-100: #fce7f3;
	--fsk-rose-100: #ffe4e6
}

body,
p {
	margin: 0
}

a,
body {
	color: var(--fsk-500);
	text-decoration: none
}


html {
    --tc: #28344f;
	--fsk-50: #f9fafb;
	--fsk-100: #ebecee;
	--fsk-200: #dcdfe3;
	--fsk-300: #c7cbd0;
	--fsk-400: #b9bfc4;
	--fsk-500: #3d3d43;
	--fsk-600: #343438;
	--fsk-700: #2b2b2f;
	--fsk-800: #202024;
	--fsk-900: #1a1a1d;
	--fsk-blue-100: #dbeafe;
	--fsk-code-color-1: #687282;
	--fsk-code-color-2: #47987b
}


html.dark {
    --tc: #ffffff;
	--fsk-50: #1a1a1d;
	--fsk-100: #202024;
	--fsk-200: #2b2b2f;
	--fsk-300: #343438;
	--fsk-400: #3d3d43;
	--fsk-500: #929aa4;
	--fsk-600: #c7cbd0;
	--fsk-700: #dcdfe3;
	--fsk-800: #ebecee;
	--fsk-900: #f9fafb;
	--fsk-blue-100: #d7e8ff;
	--fsk-code-color-1: #aab8cf;
	--fsk-code-color-2: #79b9a2
}

body {
	font-family: "Alexandria", sans-serif;
	font-optical-sizing: auto;
	font-size: 12px;
	line-height: 1.42857;
	font-weight: 400;
	background-color: var(--fsk-50);
	appearance: none
}


* {
	--fsk-site-color: #3053da;
	--fsk-site-gradient: linear-gradient(90deg, rgb(52, 92, 255) 0, rgb(43, 68, 161) 100%);
	font-family: Alexandria;
	--fsk-site-border: 5px;
}

a {
	text-decoration: none
}

.select-service-name img {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-right: 5px;
}

.justify-content-center {
	justify-content: center !important
}

.text-center {
	display: flex;
	justify-content: center
}

.position-relative {
	position: relative
}

.position-absolute {
	position: absolute;
}

.hidden {
	display: none !important
}

.mt10 {
	margin-top: 10px
}

.pb-0 {
	padding-bottom: 0px !important;
}

.m-0 {
	margin: 0px !important;
}

.mb-0 {
	margin-bottom: 0px !important;
}

.noneAuth {
	padding-top: 80px;
}

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

@media(min-width: 640px) {
	.container {
		max-width: 620px
	}
}

@media(min-width: 768px) {
	.container {
		max-width: 720px
	}
}

@media(min-width: 1024px) {
	.container {
		max-width: 968px
	}
}

@media(min-width: 1280px) {
	.container {
		max-width: 1140px
	}
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	padding-right: calc(0.75rem);
	padding-left: calc(0.75rem);
}

.grid-item {
	background-color: #ccc;
	padding: 10px;
	text-align: center
}

.col-span-1 {
	grid-column: span 1 / span 1
}

.col-span-2 {
	grid-column: span 2 / span 2
}

.col-span-3 {
	grid-column: span 3 / span 3
}

.col-span-4 {
	grid-column: span 4 / span 4
}


.col-span-5 {
	grid-column: span 5 / span 5
}

.col-span-6 {
	grid-column: span 6 / span 6
}

.col-span-7 {
	grid-column: span 7 / span 7
}

.col-span-8 {
	grid-column: span 8 / span 8
}

.col-span-9 {
	grid-column: span 9 / span 9
}

.col-span-10 {
	grid-column: span 10 / span 10
}

.col-span-11 {
	grid-column: span 11 / span 11
}

.col-span-12 {
	grid-column: span 12 / span 12
}

@media only screen and (max-width: 640px) {
	.grid-container {
		grid-template-columns: repeat(6, 1fr);
		padding: 0px 5px;
	}

	.col-span-1,
	.col-span-2,
	.col-span-3,
	.col-span-4,
	.col-span-5,
	.col-span-6,
	.col-span-7,
	.col-span-8,
	.col-span-9,
	.col-span-10,
	.col-span-11,
	.col-span-12 {
		grid-column: span 6 / span 6
	}
}

@media only screen and (min-width: 641px) and (max-width:768px) {
	.grid-container {
		grid-template-columns: repeat(8, 1fr)
	}

	.col-span-1,
	.col-span-2,
	.col-span-3,
	.col-span-4,
	.col-span-5,
	.col-span-6,
	.col-span-7,
	.col-span-8,
	.col-span-9,
	.col-span-10,
	.col-span-11,
	.col-span-12 {
		grid-column: span 8 / span 8
	}
}

@media only screen and (min-width: 769px) and (max-width:1024px) {
	.grid-container {
		grid-template-columns: repeat(12, 1fr)
	}

	.col-span-1,
	.col-span-2,
	.col-span-3,
	.col-span-4,
	.col-span-5,
	.col-span-6,
	.col-span-7,
	.col-span-8,
	.col-span-9,
	.col-span-10,
	.col-span-11,
	.col-span-12 {
		grid-column: span 12 / span 12
	}
}

@media only screen and (min-width: 1025px) and (max-width:1280px) {
	.grid-container {
		grid-template-columns: repeat(12, 1fr)
	}
}

@media only screen and (min-width: 1281px) and (max-width:1536px) {
	.grid-container {
		grid-template-columns: repeat(12, 1fr)
	}
}

.main-content .row {
	gap: 100px;
	display: flex;
	flex-direction: column-reverse
}

.row {
	--bs-gutter-x: 2rem;
	--bs-gutter-y: 0;
	display: flex;
	margin-top: 10px;
	flex-wrap: wrap
}

.row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y)
}

.my-tickets__dialog-info img {
  vertical-align: middle; 
  margin-right: 5px;

}

.author-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    font-size: 8px;
    margin-right: 1px;
}

#fields .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	box-sizing: border-box;
	padding-left: 0 !important;
	gap: 10px;
	margin-top: 0 !important
}

#fields .row>* {
	padding: 0
}

#fields .row .col-md-6 {
	display: flex;
	flex-direction: column;
	gap: 5px
}

#fields .row .form-control {
	width: 100%;
	box-sizing: border-box;
	height: 44px;
	margin: -1px
}

.col {
	flex: 1 0 0
}

.col-auto {
	flex: 0 0 auto;
	width: auto
}

.col-1 {
	flex: 0 0 auto;
	width: 8.33333%
}

.col-2,
.col-3 {
	flex: 0 0 auto
}

.col-2 {
	width: 16.6667%
}

.col-3 {
	width: 25%
}

.col-4,
.col-5 {
	flex: 0 0 auto
}

.col-4 {
	width: 33.3333%
}

.col-5 {
	width: 41.6667%
}

.col-6,
.col-7 {
	flex: 0 0 auto
}

.col-6 {
	width: 50%
}

.col-7 {
	width: 58.3333%
}

.col-8,
.col-9 {
	flex: 0 0 auto
}

.col-8 {
	width: 66.6667%
}

.col-9 {
	width: 75%
}

.col-10 {
	flex: 0 0 auto;
	width: 83.3333%
}

.col-11 {
	flex: 0 0 auto;
	width: 91.6667%
}

.col-12 {
	flex: 0 0 auto;
	width: 100%
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.features-grid div {
  padding: 1rem;
  background: none;
  font-family: sans-serif;
  font-size: 14px;
}

.features-grid i.fas.fa-check-circle {
  color: #345cff;
  margin-right: 0.5rem;
}

input[type=checkbox],
input[type=radio] {
	--active: #3b82f6;
	--active-inner: white;
	--focus: 2px rgba(39, 94, 254, .3);
	--border: #bbc1e1;
	--border-hover: #3b82f6;
	--background: var(--fsk-300);
	--disabled: #f6f8ff;
	--disabled-inner: #e1e6f9;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 21px;
	outline: 0;
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin: 0;
	cursor: pointer;
	border: 2px solid var(--fsk-500);
	background: var(--b, var(--background));
	transition: background .3s, border-color .3s, box-shadow .2s
}

input[type=checkbox]:after,
input[type=radio]:after {
	content: "";
	display: block;
	left: 0;
	top: 0;
	position: absolute
}

input[type=checkbox]:checked,
input[type=radio]:checked {
	--b: var(--fsk-site-color);
	--bc: var(--fsk-site-color);
	--d-o: .3s;
	--d-t: .6s;
	--d-t-e: cubic-bezier(.2, .85, .32, 1.2)
}

input[type=checkbox]:disabled,
input[type=radio]:disabled {
	--b: var(--disabled);
	cursor: not-allowed;
	opacity: .9
}

input[type=checkbox]:disabled:checked,
input[type=radio]:disabled:checked {
	--b: var(--disabled-inner);
	--bc: var(--border)
}

input[type=checkbox]:disabled+label,
input[type=radio]:disabled+label {
	cursor: not-allowed
}

input[type=checkbox]:hover:not(:checked):not(:disabled),
input[type=radio]:hover:not(:checked):not(:disabled) {
	--bc: var(--border-hover)
}

input[type=checkbox]:focus,
input[type=radio]:focus {
	box-shadow: 0 0 0 var(--focus)
}

input[type=checkbox]:not(.switch),
input[type=radio]:not(.switch) {
	min-width: 22px;
	height: 22px;
	background: 0;
	border: 2px solid var(--fsk-400)
}

input[type=checkbox]:not(.switch):after,
input[type=radio]:not(.switch):after {
	opacity: var(--o, 0);
	height: 14px;
	width: 14px
}

input[type=checkbox]:not(.switch):checked,
input[type=radio]:not(.switch):checked {
	--o: 1;
	border: 2px solid var(--fsk-site-color);
	background: 0;
	min-width: 22px;
	height: 22px
}

input[type=checkbox]+label,
input[type=radio]+label {
	font-size: 14px;
	line-height: 21px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin-left: 4px
}

.fsk-rtl input[type=checkbox]+label,
input[type=radio]+label {
	margin-left: 0px;
	margin-right: 4px;
}

.login-btn-group input:checked~label {
	background: var(--fsk-site-color);
	color: white;
}

input[type=checkbox]:not(.switch) {
	border-radius: calc(var(--fsk-site-border) * 1.5);
}

input[type=checkbox]:not(.switch):after {
	width: 5px;
	height: 9px;
	border: 2px solid var(--active-inner);
	border-top: 0;
	border-left: 0;
	left: 5px;
	top: 2px;
	transform: rotate(var(--r, 20deg))
}

input[type=checkbox]:not(.switch):checked {
	--r: 43deg;
	background: var(--fsk-site-color)
}

input[type=checkbox].switch {
	width: 40px;
	border-radius: calc(var(--fsk-site-border) * 2);
	border-color: var(--background)
}

input[type=checkbox].switch:after {
	left: 2px;
	top: 2px;
	border-radius: calc(var(--fsk-site-border) * 100);
	width: 13px;
	height: 13px;
	background: white;
	transform: translateX(var(--x, 0))
}

input[type=checkbox].switch:checked {
	--ab: var(--active-inner);
	--x: 18px;
	border-color: var(--fsk-site-color)
}

input[type=checkbox].switch:disabled:not(:checked):after {
	opacity: .6
}

input[type=radio] {
	border-radius: calc(var(--fsk-site-border) * 100)
}

input[type=radio]:after {
	width: 14px;
	height: 14px;
	border-radius: calc(var(--fsk-site-border) * 100);
	background: var(--fsk-site-color);
	opacity: 0;
	transform: scale(var(--s, 0.7))
}

input[type=radio]:checked {
	--s: .6
}

ul {
	margin: 12px;
	padding: 0;
	list-style: none;
	width: 100%
}

ul li {
	margin: 16px 0;
	position: relative
}

input[type=radio]:not(.switch) {
	min-width: 18px !important;
	height: 18px !important;
	background: 0;
	border: 2px solid var(--fsk-400);
}

.pager,
.pagination {
	padding-left: 0;
	margin: 20px 0
}

.pagination {
	display: inline-block;
	border-radius: calc(var(--fsk-site-border) * 2)
}

.pager li,
.pagination>li {
	display: inline
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: var(--fsk-500);
	text-decoration: none;
	background-color: var(--fsk-200);
	border: 1px solid var(--fsk-300)
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	margin-left: 0;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	z-index: 2;
	color: var(--fsk-900);
	background-color: var(--fsk-400);
	border-color: var(--fsk-300);
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	z-index: 3;
	color: var(--fsk-900);
	cursor: default;
	background: var(--fsk-site-color);
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
	color: var(--fsk-600);
	cursor: not-allowed;
	background-color: #fff;
	border-color: var(--fsk-200);
}

.pagination-lg>li>a,
.pagination-lg>li>span {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}

.pager {
	list-style: none
}

.pager li>a,
.pager li>span {
	display: inline-block;
	padding: 5px 14px;
	border: 1px solid var(--fsk-400);
	border-radius: calc(var(--fsk-site-border) * 3)
}

.pager li>a:focus,
.pager li>a:hover {
	background-color: var(--fsk-500)
}

.pager .next>a,
.pager .next>span {
	float: right
}

.pager .previous>a,
.pager .previous>span {
	float: left
}

.pager .disabled>a,
.pager .disabled>a:focus,
.pager .disabled>a:hover,
.pager .disabled>span {
	color: #777;
	cursor: not-allowed;
	background-color: #fff
}

.page-container {
    display: flex;
    min-height: 100vh;
    padding-bottom: 100px;
}

.depend-fields {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.form-group__checkbox {
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1
}

.form-group {
	display: flex;
	gap: 5px;
	flex-direction: column
}

.form-group label {
	color: var(--fsk-600);
	font-size: 16px
}

.master-select label {
	color: var(--fsk-600);
	font-size: 16px
}

.form-group label small {
	padding: 5px 10px;
	border: 1px solid var(--fsk-300);
	border-radius: calc(var(--fsk-site-border));
}

.form-control {
	padding: 6px 12px;
	line-height: 1.42857;
	background-color: var(--fsk-200)
}

.lite .form-control {
	padding: 6px 12px;
	line-height: 1.42857;
	background-color: var(--fsk-100)
}

.payments-box {
    padding: 75px 0px;
}

.payment-gateways {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px
}

.payment-gateways .payment-item {
    display: flex;
    justify-content: center;
    background: var(--fsk-200);
    border: 1px solid var(--fsk-300);
    border-radius: calc(var(--fsk-site-border) * 2);;
    min-width: 180px;
    z-index: 1;
    padding: 5px 10px;
    position: relative;
    align-items: center;
    transition: .5s all;
    cursor: pointer;
    height: 70px;
}

.payment-gateways .payment-item img {
    max-height: 40px;
}

@media (max-width: 991.98px) {
    .page-header .logo {
        width: 100px;
    }
  
    .payments-box,
  	.faq-box,
  	.review {
        padding: 50px 0;
    }
  
    .payment-gateways {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      	max-width: 100%;
    }
  
	.payment-gateways .payment-item {
        width: 100%;
        padding: 15px 0;
      	max-width: 98%;
    }  

    .payment-gateways .payment-item svg {
        max-height: 35px;
    }  
}

.payment-box .form-control {
	background-color: var(--fsk-200)
}

.payment-hevo .form-control {
	background-color: var(--fsk-300)
}

.auth-page .form-control {
	padding: 13px 20px;
	border-radius: calc(var(--fsk-site-border) * 3);
}

.service-search-box {
	margin-bottom: 20px;
	position: relative
}

.service-search-box .form-control {
	display: block;
	height: 30px;
	font-size: 14px;
	color: var(--fsk-800);
	border: 1px solid var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	background: var(--fsk-100)
}

.form-control {
	display: block;
	height: 30px;
	font-size: 14px;
	color: var(--fsk-800);
	background-image: none;
	border-radius: calc(var(--fsk-site-border) * 2);
	border: 1px solid #fff0
}

#current-email {
	display: flex;
	align-items: center;
	opacity: 0.6;
	cursor: no-drop;
}

.ticket-form .form-control {
	background: var(--fsk-200);
}

.ticket-form .form-control.form-select{
	height: 45px;
}

.form-control:focus {
	border: 2px solid var(--fsk-site-color);
	outline: 0;
	margin: -1px
}

.form-control::-webkit-input-placeholder {
	color: #999
}

#charge:focus {
	border: 0;
	margin: 1px !important
}

.input-group {
	display: grid;
	grid-template-columns: 8fr 3fr;
}

.input-group .form-control {
	border-radius: calc(var(--fsk-site-border) * 2) 0px 0px calc(var(--fsk-site-border) * 2);
	width: 100%;
}

.fsk-rtl .input-group .form-control {
	border-radius: 0px calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0px;
	width: 100%;
}

.input-group .btn {
	padding: 15px 16px;
	border-radius: 0px calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0px;
	display: flex;
	justify-content: center;
	color: var(--fsk-50);
	background: var(--fsk-700);
	width: 100%;
}

.fsk-rtl .input-group .btn {
	border-radius: calc(var(--fsk-site-border) * 2) 0px 0px calc(var(--fsk-site-border) * 2);
}

.input-group-btn {
	display: flex;
	justify-content: flex-end;
}

.btn {
	border: 0;
	border-radius: calc(var(--fsk-site-border) * 3);
	padding: 15px 30px;
	cursor: pointer;
	transition: all .14s ease 0;
	font-weight: 500;
	display: flex;
	gap: 5px;
	align-items: center
}

.btn i {
	line-height: 1
}

.btn-main {
	background: var(--fsk-200);
	color: var(--fsk-800)
}

.btn-min {
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content
}

.btn-main:hover {
	background: var(--fsk-site-color);
	color: white
}

.btn-border {
	border-radius: calc(var(--fsk-site-border) * 3);
	background: 0 center;
	border: 2px solid var(--fsk-300);
	color: var(--fsk-800)
}

.btn-border:hover {
	opacity: 0.7;
}

.btn-lg {
	padding: 20px 30px
}

.btn-block {
	width: 100%;
	box-sizing: border-box
}

.border-5 {
	border-radius: calc(var(--fsk-site-border));
}

.border-10 {
	border-radius: calc(var(--fsk-site-border) * 2);
}

.border-15 {
	border-radius: calc(var(--fsk-site-border) * 3);
}

/* Base Layout */
.smm_container,
.smm_container-fluid {
  max-width: 1140px;
  margin: 0 auto;
}

.smm_grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.smm_col-span-12 {
  grid-column: span 12 / span 12; /* Always full width */
}

.smm_page-title span {
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.smm_term-and-faq {
  border-radius: 8px;
}

.smm_video-frame iframe {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  border: none;
}

.smm_faq {
  margin-top: 20px;
}

.smm_card {
  border-radius: 6px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.smm_card:hover {
  filter: brightness(1.05);
}

.smm_faq-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  /* touch-action: manipulation; */
}

/* FAQ header title */
.smm_faq-block__header-title h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

/* FAQ body */
.smm_faq-block__body {
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* FAQ body description (lists) */
.smm_faq-block__body-description ul,
.smm_faq-block__body-description ol {
  padding-left: 20px;
}

.smm_faq-block__body-description li {
  margin-bottom: 10px;
}

/* Ajustes para vídeo-block descrição */
.smm_video-block__description {
  padding-left: 20px;
  max-width: 500px;
}

.smm_video-block__description h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.smm_video-block__description p,
.smm_video-block__description ul,
.smm_video-block__description ol {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* Flex para vídeos com texto ao lado */
.smm_d-md-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
}

.smm_video-block__video {
  flex: 1 1 100%;
}

.smm_video-block__description {
  flex: 1 1 100%;
}

/* Block background */
.smm_block-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: -1;
  border-radius: 8px 8px 0 0;
}

.smm_grid-container {
  gap: 10px;
}

.smm_col-span-12 {
  grid-column: span 12 / span 12; /* Ensure full width on mobile */
}

.smm_page-title span {
  font-size: 1.5rem;
}

.smm_term-and-faq {
  padding: 15px;
}

.smm_video-frame iframe {
  height: auto;
  aspect-ratio: 16 / 9;
}

.smm_faq {
  margin-top: 15px;
}

.smm_faq-block__card {
  margin-bottom: 12px;
}

.smm_card {
  padding: 12px 15px;
}

.smm_faq-block__header-title h4 {
  font-size: 1.2rem;
}

.smm_faq-block__body {
  font-size: 1rem;
  line-height: 1.5;
}

.smm_faq-block__body-description ul,
.smm_faq-block__body-description ol {
  padding-left: 15px;
}

.smm_faq-block__body-description li {
  margin-bottom: 10px;
}

.smm_video-block__description {
  padding-left: 0;
  max-width: 100%;
}

.smm_video-block__description h2 {
  font-size: 1.5rem;
}

.smm_video-block__description p,
.smm_video-block__description ul,
.smm_video-block__description ol {
  font-size: 1rem;
}

.smm_block-bg {
  height: 60px;
}

@media (max-width: 576px) {
  .smm_container,
  .smm_container-fluid {
    padding: 12px;
  }

  .smm_page-title span {
    font-size: 1.4rem;
  }

  .smm_faq-block__header-title h4 {
    font-size: 1.15rem;
  }

  .smm_faq-block__body {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .smm_faq-block__body-description li {
    margin-bottom: 12px;
  }

  .smm_video-block__description h2 {
    font-size: 1.4rem;
  }

  .smm_video-block__description p,
  .smm_video-block__description ul,
  .smm_video-block__description ol {
    font-size: 0.95rem;
  }
}

.smm_block-divider-top svg {
  display: block;
  margin: 0 auto 10px;
}

.smm_faq-block__header.smm_collapsed::after {
  transform: rotate(180deg);
}

.modal.disable {
	visibility: hidden;
	opacity: 0;
}


.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.section-header .sh-wrapper {
    display: inline-flex;
    padding: 4px;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--fsk-200);
    background: var(--fsk-100);
    box-shadow: 0px 0px 50px 0px var(--fsk-50);
    color: var(--fsk-800);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    line-height: 100%;
}

.section-header .sh-wrapper .icon {
    background: rgb(35 41 68);
    height: 32px;
    width: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--fsk-site-color);
    border-radius: 100px;
}

.section-header .sh-wrapper .text {
    padding: 0 10px;
    color: var(--fsk-800);
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 36px;
    letter-spacing: -1.25px;
  	margin: 0;
  	color: var(--fsk-800);
}

.section-header h2 span {
    background: var(--fsk-site-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
}

.modal {
	transform: scale(1.0);
	display: block;
	position: fixed;
	z-index: 10;
	inset: 0;
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	background-color: rgba(0, 0, 0, 0.4);
	visibility: visible;
	opacity: 1;
	transition: .14s ease;
}

.modal-close {
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex
}

.modal-close {
	width: 30px;
	height: 30px;
	background: var(--fsk-200);
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s ease 0;
	line-height: 1
}

.modal-close:hover {
	background: var(--fsk-300)
}

.modal-top {
	padding: 15px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 0
}

.modal-title {
	color: var(--fsk-900);
	font-size: 16px;
	display: flex;
	padding-left: 5px;
	align-items: center;
	line-height: 1
}

.modal-center {
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: hidden;
	position: relative
}

.modal-bottom {
	display: flex;
	gap: 10px;
	padding: 15px;
	padding-top: 0
}

.modal-bottom-2 {
	display: flex;
	gap: 10px;
}

.modal-bottom .btn {
	text-align: center;
	display: flex;
	justify-content: center;
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.modal-bottom-2 .btn {
	text-align: center;
	display: flex;
	justify-content: center;
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.currencyHider_btn_phn{
	display: none;
}

.modal-content img {
    width: 300px;
    height: 300px;
    display: block;
    margin: 0 auto;
}

@media only screen and (min-width: 1024px) {
	.modal-content {
		background-color: var(--fsk-50);
		width: 400px;
		position: absolute;
		border-radius: calc(var(--fsk-site-border) * 4);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 1;
		transition: .14s ease;
		border: 3px solid var(--fsk-100);
	}

	.popupModal .modal-content {
		width: 500px !important;
	}

	.modal.disable .modal-content {
		opacity: 0 !important;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		position: absolute;
	}

	.sidebar {
		width: 280px;
		background: var(--fsk-100);
		overflow: hidden;
		transition: all .3s ease 0;
		border-right: 1px solid var(--fsk-100);
		position: fixed;
		height: 100%;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 1;
		display: flex;
		flex-direction: column;
		justify-content: space-between
	}

	.fsk-rtl .sidebar {
		right: 0;
		left: auto;
	}

	.page-content {
		padding: 0 0 0 280px;
		width: 100%;
		transition: all .3s ease 0;
		position: relative;
		box-sizing: border-box
	}

	.fsk-rtl .page-content {
		padding: 0 280px 0 0 !important;
	}

	.masterBox .master-form.opened {
		position: fixed;
		border-radius: calc(var(--fsk-site-border) * 3);
		width: 450px;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 6
	}

	.select-service-feature-item {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px
	}

	.page-header {
		background: var(--fsk-50);
		border-bottom: 1px solid var(--fsk-100);
		display: flex;
		align-items: center;
		padding: 0 20px;
		min-height: 80px;
		z-index: 4;
		position: relative;
		/* position: fixed; */
		box-sizing: border-box;
		width: 100%;
		justify-content: flex-end;
	}

	.popupimg {
		border-radius: calc(var(--fsk-site-border) * 2);
		height: 200px;
		object-fit: cover;
	}

	.page-header .header-left {
		display: none !important;
	}

	.main-header-mobile {
		display: none;
	}

	.main-header-btn-mobile-group {
		display: none !important;
	}

	.ticket-view-message-list {
		padding-right: 5px;
	}

	.opened .master-form-mobile {
		display: flex
	}

	.open-order-form {
		display: none !important
	}

	.masterBox .service-dropdown-item.active .buy-btn-master .open-order-form {
		display: flex !important;
		border-radius: calc(var(--fsk-site-border));
	}

	.masterBox .buy-btn.active {
		display: flex;
		position: fixed;
		bottom: 50px;
		color: white;
		line-height: 1;
		border-radius: calc(var(--fsk-site-border) * 2);
		cursor: pointer;
		z-index: 1;
		font-size: 18px;
		right: 20px;
		visibility: visible !important;
		flex-direction: column;
		gap: 10px
	}

	.masterBox .service-dropdown-item.active .buy-btn-master {
		position: absolute;
		right: -51px;
		top: 0;
		display: flex;
		height: 100%;
		visibility: hidden;
		transition: .14s ease;
		opacity: 0
	}

	.masterBox .service-dropdown-item.active:hover .buy-btn-master {
		position: absolute;
		right: -51px;
		z-index: 2;
		top: 0;
		display: flex;
		height: 100%;
		visibility: visible;
		opacity: 1
	}

	.fsk-rtl .masterBox .service-dropdown-item.active .buy-btn-master {
		left: -51px !important;
		right: auto;
	}

	.fsk-rtl .masterBox .service-dropdown-item.active:hover .buy-btn-master {
		left: -51px !important;
		right: auto;
	}

	.settings-content.active {
		display: flex;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 5;
		align-items: center;
		justify-content: center;
		width: 400px
	}

	.panel-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-top: 20px
	}

	.services-item-bottom {
		border-radius: calc(var(--fsk-site-border) * 1.5);
		display: flex;
		gap: 5px;
		line-height: 1
	}

	.services-item-feature {
		color: var(--fsk-500);
		padding: 10px;
		border-radius: calc(var(--fsk-site-border));
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
		background: var(--fsk-200)
	}

	.name-servers-list {
		padding: 10px;
		display: flex;
		gap: 5px
	}

	.sidebar-btn {
		display: none
	}

	.header-search-box {
		width: 300px
	}

	.balance-box {
		padding: 10px 20px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 2);
		cursor: pointer;
		z-index: 6;
	}
  
  .balance-box {
    display: flex;
    align-items: center;  
    gap: 8px;              
    cursor: pointer;
}

.balance-info {
    font-weight: 500;
    white-space: nowrap;  
}

.balance-box i {
    margin-left: 4px;
}

	.user-box{
		position: relative;
		padding: 10px 20px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 2);
		cursor: pointer;
		z-index: 10;
	}

	.user-info {
		margin-left: 5px;
	}

	.header-user-box {
		position: relative
	}

	.header-user-btn {
		padding: 10px 20px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 3);
		cursor: pointer;
		transition: all .3s ease 0;
		z-index: 5;
		position: relative
	}

	.header-btn-box {
		display: flex;
		gap: 15px;
		font-size: 18px;
		align-items: center;
	}

	.language-dropdown.active {
		position: absolute;
		margin-top: 60px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 4);
		visibility: visible;
		opacity: 1;
		z-index: 4;
		display: flex;
		width: 269px;
		max-height: 400px;
		flex-direction: column;
		overflow: hidden;
		z-index: 8;
		border: 3px solid var(--fsk-200);
	}

	.language-dropdown {
		display: none
	}

	.currency-list {
		display: flex;
		position: absolute;
		flex-direction: column;
		margin-top: 60px;
		background: var(--fsk-100);
		padding: 10px;
		border-radius: calc(var(--fsk-site-border) * 2);
		gap: 5px;
		visibility: hidden;
		opacity: 0
	}

	.currency-list.active {
		position: absolute;
		margin-top: 60px;
		background: var(--fsk-100);
		padding: 10px;
		border-radius: calc(var(--fsk-site-border) * 4);
		gap: 10px;
		visibility: visible;
		opacity: 1;
		z-index: 4;
		border: 3px solid var(--fsk-200);
	}

	.user-balance {
		display: flex;
		flex-direction: column;
		position: relative;
		align-items: flex-end
	}

	.currency-box {
		display: flex;
		justify-content: space-between;
		background: var(--fsk-200);
		border-radius: calc(var(--fsk-site-border) * 2);
		font-size: 14px;
		transition: all .3s ease 0;
		width: 120px
	}

	.currency-box b {
		width: 50px;
		background: var(--fsk-site-color);
		color: white;
		font-weight: 400;
		display: flex;
		box-sizing: border-box;
		border-radius: calc(var(--fsk-site-border));
		justify-content: center;
		align-items: center;
		margin: 5px
	}

	.currency-box span {
		padding: 9px 10px
	}

	.currencies-box {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px
	}

	.currency-top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
		color: var(--fsk-900)
	}

	.order-alert-box {
		max-height: 800px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 2);
		display: flex;
		flex-direction: column;
		z-index: 10;
		width: 650px;
		transition: .3s ease;
		position: fixed;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%)
	}

	.order-alert-box.close {
		height: 0;
		transition: .3s ease;
		overflow: hidden;
		width: 0;
		visibility: hidden
	}

	.stats-box-list {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 20px;
		margin-top: 20px;
	}

	.category-dropdown.active {
		position: absolute;
		width: 100%;
		box-sizing: border-box;
		background: var(--fsk-50);
		border: 4px solid var(--fsk-100);
		margin-top: 10px;
		padding: 0 0 0 10px;
		z-index: 1;
		border-radius: calc(var(--fsk-site-border) * 4);
		display: block;
		z-index: 5;
		overflow: hidden
	}

	.service-dropdown.active {
		position: absolute;
		width: 100%;
		box-sizing: border-box;
		background: var(--fsk-100);
		margin-top: 10px;
		border-radius: calc(var(--fsk-site-border) * 4);
		display: block;
		z-index: 5;
		overflow: hidden;
		border: 4px solid var(--fsk-100);
	}

	.payment-dropdown.active {
		position: absolute;
		width: 100%;
		box-sizing: border-box;
		background: var(--fsk-100);
		margin-top: 10px;
		padding: 0 0 0 10px;
		z-index: 1;
		border-radius: calc(var(--fsk-site-border) * 4);
		display: block;
		z-index: 5;
		overflow: hidden;
		border: 3px solid var(--fsk-200);
	}

	.bottom-navigaiton {
		display: none !important;
	}

	.service-list {
		display: flex;
		flex-direction: column;
		gap: 7px;
		padding-right: 10px
	}

	.service-dropdown-box {
		overflow: auto;
		max-height: 400px;
		display: flex;
		flex-direction: column;
		gap: 7px;
		background: var(--fsk-50);
	}

	.category-dropdown-box::after {
		content: "";
		position: absolute;
		bottom: -1px;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.category-dropdown-box::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -16px
	}

	.payment-dropdown-box::after {
		content: "";
		position: absolute;
		bottom: -1px;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.payment-dropdown-box::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		background: linear-gradient(180deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -16px
	}

	.service-list::after {
		content: "";
		position: absolute;
		bottom: -1px;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.service-list::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		z-index: 1;
		background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -15px
	}

	.search-service-box.empty::after {
		content: "";
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.search-service-box.empty::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		z-index: 1;
		background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: 0
	}

	.service-list {
		display: flex;
		flex-direction: column;
		gap: 7px;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.stats-text {
		font-size: 18px;
		color: var(--fsk-900)
	}

	.language-btn {
		padding: 10px 20px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 2);
		cursor: pointer;
		z-index: 4;
		display: flex;
		align-items: center;
		gap: 10px
	}

	.main-header .language-btn {
		background: var(--fsk-200);
	}

	.main-header .language-btn:hover {
		background: var(--fsk-300);
	}

	.language-btn:hover {
		background: var(--fsk-200)
	}

	.language-btn.active {
		background: var(--fsk-site-color) !important;
		color: white;
		z-index: 8
	}

	.language-btn .fa-caret-down {
		transform: rotate(0);
		transition: .3s ease;
		font-size: 18px
	}

	.language-btn.active .fa-caret-down {
		transform: rotate(-180deg)
	}

	.services-list-item {
		display: flex;
		justify-content: space-between;
		padding: 7px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 2);
		gap: 5px;
		margin-bottom: 10px;
	}

	.services-list-right {
		display: flex;
		gap: 5px;
		width: 150px;
		justify-content: space-between;
		flex-direction: column
	}

	.affiliate-box {
		padding: 10px;
		background: var(--fsk-100);
		color: var(--fsk-100);
		display: flex;
		border-radius: calc(var(--fsk-site-border) * 2);
		margin-top: 20px;
		margin-bottom: 20px;
		gap: 10px;
		color: var(--fsk-800);
		justify-content: space-between
	}

	.affiliate-pay-list .table {
		margin-bottom: 0;
		font-size: 14px
	}
}

@media only screen and (max-width: 1024px) {
	.modal-content {
		background-color: var(--fsk-50);
		position: fixed;
		border-radius: calc(var(--fsk-site-border) * 3);
		calc(var(--fsk-site-border) * 3) 0 0;
		bottom: 0;
		right: 0;
		left: 0;
		transition: .14s ease;
	}

	.modal.disable .modal-content {
		position: fixed;
		bottom: -200px;
		right: 0;
		left: 0
	}

	.sidebar {
		width: 280px;
		overflow: hidden;
		transition: all .3s ease 0;
		position: fixed;
		left: -280px;
		top: 0;
		bottom: 0;
		z-index: 5;
		display: flex;
		flex-direction: column
	}

	.sidebar.active {
		left: 0;
		background: var(--fsk-100);
		z-index: 5
	}

	.fsk-rtl .sidebar.active {
		left: auto;
		right: 0;
	}

	.sidebar-content.active {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.16);
		-webkit-backdrop-filter: blur(0px);
		backdrop-filter: blur(0px);
		z-index: 5
	}

	.page-content {
		padding: 70px 0 0;
		width: 100%;
	}

	.select-service-feature-item {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px
	}

	.page-header {
		display: flex;
		background: var(--fsk-100);
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		border-bottom: 1px solid var(--fsk-100);
		justify-content: space-between;
		padding: 20px 15px;
		z-index: 4
	}

	.serivce-dropdown-bottom {
		display: flex;
		gap: 5px;
		flex-direction: column;
		align-items: flex-start;
	}

	.popupimg {
		border-radius: calc(var(--fsk-site-border) * 2);
		height: 200px;
		object-fit: cover;
	}

	.header-left {
		display: flex;
		align-items: center;
	}

	.announcements-box {
		box-sizing: border-box;
		margin: 0px !important;
		border-radius: 0px !important;
		border: 0px !important;
		left: auto !important;
	}

	.announcements-box.active {
		right: 0;
		left: 0;
		top: 0;
		bottom: 0;
	}

	.ticket-view-bottom form {
		margin-bottom: 70px;
	}

	.update-service-name {
		font-size: 12px !important;
	}

	.update-top {
		flex-direction: column !important;
		gap: 10px
	}

	.update-date {
		background: var(--fsk-100);
		padding: 5px;
		border-radius: calc(var(--fsk-site-border) * 0.7);
		margin: -2px -7px;
	}

	.masterBox .service-dropdown-item.active .buy-btn-master {
		display: none
	}

	.masterBox .master-form.opened {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0;
		z-index: 6
	}

	.masterBox .buy-btn.active {
		display: flex;
		position: fixed;
		bottom: 90px;
		color: white;
		line-height: 1;
		border-radius: calc(var(--fsk-site-border) * 2);
		cursor: pointer;
		z-index: 1;
		font-size: 18px;
		right: 20px;
		visibility: visible !important;
		flex-direction: column;
		gap: 10px
	}

	.settings-content.active {
		display: flex;
		inset: 0;
		position: fixed;
		z-index: 5;
		justify-content: center;
		width: 100%;
		bottom: 0;
		align-items: flex-end
	}

	.neworder-settings-box {
		border-radius: calc(var(--fsk-site-border) * 3) calc(var(--fsk-site-border) * 3) 0 0 !important
	}

	.panel-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 20px
	}

	.services-item-bottom {
		border-radius: calc(var(--fsk-site-border) * 1.5);
		display: grid;
		gap: 5px;
		line-height: 1;
		grid-template-columns: 1fr 1fr
	}

	.services-item-feature {
		color: var(--fsk-500);
		padding: 10px;
		background: var(--fsk-200);
		border-radius: calc(var(--fsk-site-border));
		display: flex;
		align-items: center;
		gap: 5px;
		line-height: 1
	}

	.avg {
		grid-area: 2 / 1 / 3 / 3
	}

	.name-servers-list {
		padding: 10px;
		display: flex;
		gap: 5px;
		flex-direction: column
	}

	.sidebar-btn {
		display: flex;
		border-radius: calc(var(--fsk-site-border) * 2);
		font-size: 22px;
		align-items: center;
		justify-content: center;
	}

	.header-search-box {
		display: none
	}

	.balance-box {
		display: none
	}

	.user-info {
		display: none
	}

	.header-user-box {
		position: relative
	}

	.header-user-btn {
		padding: 10px 20px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 2);
		cursor: pointer;
		position: relative;
		z-index: 5
	}

	.header-btn-box {
		display: flex;
		font-size: 18px;
		align-items: center;
	}

	.fa-microphone {
		margin-right: 10px;
	}

	.fsk-rtl .fa-microphone {
		margin-right: 0px;
		margin-left: 10px;
	}

	.language-dropdown.active {
		position: fixed;
		margin-top: 60px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0;
		display: flex;
		max-height: 400px;
		flex-direction: column;
		overflow: hidden;
		left: 0;
		bottom: 0;
		right: 0;
		z-index: 8;
		visibility: visible;
		opacity: 1
	}

	.language-dropdown {
		visibility: hidden;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 1;
		max-height: 400px
	}

	.color-change-box img {
		width: -webkit-fill-available !important
	}

	.currency-list {
		display: flex;
		position: fixed;
		flex-direction: column;
		margin-top: 60px;
		background: var(--fsk-100);
		padding: 10px;
		border-radius: calc(var(--fsk-site-border) * 2);
		gap: 5px;
		visibility: hidden;
		left: 0;
		right: 0;
		bottom: -300px;
		opacity: 0;
		transition: all .3s ease 0
	}

	.currency-list.active {
		display: flex;
		position: fixed;
		background: var(--fsk-100);
		padding: 20px;
		border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0;
		visibility: visible;
		opacity: 1;
		z-index: 4;
		bottom: 0;
		left: 0;
		right: 0;
		gap: 10px
	}

	.user-balance {
		display: flex;
		flex-direction: column;
		position: relative;
		align-items: flex-end
	}

	
	.currency-box {
		display: flex;
		justify-content: space-between;
		background: var(--fsk-200);
		border-radius: calc(var(--fsk-site-border) * 2);
		font-size: 14px;
		transition: all .3s ease 0;
		font-size: 18px
	}

	.currency-box b {
		width: 50px;
		background: var(--fsk-site-color);
		color: white;
		font-weight: 400;
		display: flex;
		box-sizing: border-box;
		border-radius: calc(var(--fsk-site-border));
		justify-content: center;
		align-items: center;
		margin: 5px
	}

	.currency-box span {
		padding: 5px 10px
	}

	.currencies-box {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px
	}

	.currency-top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
		color: var(--fsk-900)
	}

	.order-alert-box {
		max-height: 800px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0;
		display: flex;
		flex-direction: column;
		z-index: 10;
		position: fixed;
		bottom: 0;
		width: 100%;
		left: 0;
		right: 0;
		transition: .3s ease
	}

	.order-alert-box.close {
		height: 0;
		transition: .3s ease;
		overflow: hidden;
		visibility: hidden
	}

	.stats-box-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-top: 20px
	}

	.category-dropdown.active {
		position: fixed;
		width: 100%;
		box-sizing: border-box;
		background: var(--fsk-50);
		margin-top: 10px;
		padding: 15px;
		z-index: 1;
		border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0;
		display: block;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 5;
		padding-bottom: 0
	}

	.service-dropdown.active {
		position: fixed;
		width: 100%;
		box-sizing: border-box;
		background: var(--fsk-50);
		margin-top: 10px;
		padding: 0 15px 0 15px;
		z-index: 1;
		border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0;
		display: block;
		bottom: 0;
		left: 0;
		right: 0;
		min-height: 400px;
		z-index: 5;
		overflow: hidden
	}

	.payment-dropdown.active {
		position: fixed;
		width: 100%;
		box-sizing: border-box;
		background: var(--fsk-100);
		margin-top: 10px;
		padding: 15px;
		z-index: 1;
		border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0;
		display: block;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 5;
		padding-bottom: 0
	}

	.category-dropdown-header {
		width: 100%;
		display: flex !important;
		justify-content: space-between;
		margin-top: 0;
		margin-bottom: 20px;
		box-sizing: border-box;
		align-items: center
	}

	.payment-dropdown-header {
		width: 100%;
		display: flex !important;
		justify-content: space-between;
		margin-top: 0;
		margin-bottom: 20px;
		box-sizing: border-box;
		align-items: center
	}

	.service-dropdown-header {
		width: 100%;
		display: flex !important;
		justify-content: space-between;
		margin-top: 20px;
		margin-bottom: 10px;
		box-sizing: border-box;
		align-items: center
	}

	.service-dropdown-box {
		overflow: auto;
		max-height: 400px;
		display: flex;
		flex-direction: column;
		gap: 7px
	}

	.category-dropdown-box::after {
		content: "";
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.category-dropdown-box::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -16px
	}

	.payment-dropdown-box::after {
		content: "";
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.payment-dropdown-box::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		background: linear-gradient(180deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -16px
	}

	.service-list::after {
		content: "";
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 30px;
		background: linear-gradient(360deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.service-list::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 25px;
		background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -15px;
		z-index: 1
	}

	.language-list::after {
		content: "";
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.language-list::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 25px;
		background: linear-gradient(180deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -10px
	}

	.search-service-box.empty::after {
		content: "";
		position: absolute;
		bottom: -4px;
		width: 100%;
		height: 20px;
		background: linear-gradient(360deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box
	}

	.search-service-box.empty::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		z-index: 1;
		background: linear-gradient(180deg, var(--fsk-100) 0, rgb(0 0 0 / 0) 100%);
		box-sizing: border-box;
		margin-top: -3px
	}

	.service-list {
		display: flex;
		flex-direction: column;
		gap: 7px;
		padding-top: 14px;
		padding-bottom: 10px
	}

	.stats-text {
		font-size: 16px;
		color: var(--fsk-900)
	}

	.language-btn {
		display: none
	}

	.services-list-item {
		display: flex;
		justify-content: space-between;
		padding: 10px;
		background: var(--fsk-100);
		border-radius: calc(var(--fsk-site-border) * 3);
		gap: 5px;
		flex-direction: column;
		margin-bottom: 10px;
	}

	.services-list-right {
		display: grid;
		gap: 5px;
		width: 100%;
		grid-template-columns: 1fr 1fr;
		justify-content: space-between
	}

	.affiliate-box {
		padding: 15px;
		background: var(--fsk-100);
		color: var(--fsk-100);
		display: flex;
		border-radius: calc(var(--fsk-site-border) * 3);
		margin-top: 20px;
		margin-bottom: 20px;
		gap: 10px;
		color: var(--fsk-800);
		justify-content: space-between;
		flex-direction: column
	}

	.affiliate-pay-list .table {
		margin-bottom: 0;
		font-size: 12px
	}

	.payout-item {
		font-size: 12px
	}

	.main-header-link {
		display: none !important;
	}

	.main-header-btn {
		display: none !important;
	}

	.main-header-mobile.active {
		visibility: visible;
		opacity: 1;
		z-index: 1;
	}
}

.well {
	padding: 15px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 3);
	display: flex;
	flex-direction: column
}

.neworder-form {
	gap: 10px
}

.neworder-form .tooltip {
	
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: none;
    font-size: 12px;
    line-height: 1.5;
    background: var(--fsk-200);
    color: var(--fsk-900);
    padding: 6px 10px;
    border-radius: 4px;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    max-width: 250px; /* Limit width to avoid overflow */
    word-wrap: break-word; /* Ensure long words break */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.2s ease-in-out;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    border-color: transparent transparent var(--fsk-200) transparent;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-inner {
    padding: 5px 10px;
    word-wrap: break-word; 
}

@media (max-width: 480px)
{
    .tooltip {
        max-width: 180px; 
        font-size: 11px;
        padding: 6px 8px;
    }
}

.footer-revision {
    padding: 50px 20px 20px 20px;
    text-align: center;
}

.footer-revision-box {
    display: flex;
    flex-wrap: wrap;
    /* gap: 50px; */
    justify-content: center;
}

.footer-revision-about,
.footer-revision-contact,
.footer-revision-links {
    flex: 1 1 100px;
    max-width: 350px;
}

.footer-revision-about h3,
.footer-revision-contact h3,
.footer-revision-links h3 {
    /* color: #fff; */
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-revision-about h3 span {
    color: #345cff;
    border-bottom: 2px solid #345cff;
    padding-bottom: 2px;
}

.footer-revision-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-revision-about img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-revision-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-revision-social-icons a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.footer-revision-social-icons a:hover {
    color: #345cff;
}

.footer-revision-contact ul,
.footer-revision-links ul {
    list-style: none;
    padding: 0;
}

.footer-revision-contact ul li,
.footer-revision-links ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-revision-contact ul li i {
    margin-right: 8px;
    color: #345cff;
}

.footer-revision-contact ul li a {
    text-decoration: none;
}

.footer-revision-contact ul li a:hover {
    color: #345cff;
}

.footer-revision-links ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-revision-links ul li a:hover {
    color: #345cff;
}

.footer-revision-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 15px;
    font-size: 13px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .footer-revision-box {
        flex-direction: column;
        /* gap: 0px; */
    }

    .footer-revision-about,
    .footer-revision-contact,
    .footer-revision-links {
        max-width: 100%;
    }
}


.well.masterBox {
	padding: 0;
	background: 0;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	flex-direction: column;
	position: relative
}

.marginTop {
	margin-top: 20px
}

.well form {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.masterBox .master-form {
	padding: 15px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 4)
}

.masterBox .master-form.opened .btn-min {
	width: 100%;
	display: flex;
	justify-content: center
}

#fields {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.currency-box:hover {
	background: var(--fsk-300)
}

.currency-bg.active {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 4;
}

.account-bg.active {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 9;
}


.header-user-btn:hover {
	background: var(--fsk-200)
}

.balance-box:hover {
	background: var(--fsk-200)
}

.balance-box.active {
	background: var(--fsk-site-color);
	color: white
}

.balance-box .fa-caret-down {
	transform: rotate(0);
	transition: .3s ease;
	font-size: 18px
}

.balance-box.active .fa-caret-down {
	transform: rotate(-180deg)
}

.header-right {
	display: flex;
	gap: 10px;
}

.button-group {
	display: flex;
	flex-direction: column;
	gap: 20px
}

.sidebar-top {
	display: flex;
	height: 100%;
	overflow: auto;
	position: relative;
	transition: all .3s ease 0;
	padding-top: 10px;
	flex-direction: column;
}

.sidebar .logo {
	height: auto;
	width: 259px;
	box-sizing: border-box;
	margin: 20px 20px 20px 10px;
	box-shadow: 0 0 20px 20px var(--fsk-100);
	z-index: 1;
	background: var(--fsk-100);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px
}

.page-header .logo {
	height: auto;
	width: 180px;
	box-sizing: border-box;
	box-shadow: 0 0 20px 20px var(--fsk-100);
	z-index: 1;
	background: var(--fsk-100);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px
}

.sidebar-menu {
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: all .3s ease 0;
	margin-bottom: 30px
}

.sidebar-menu-item {
	display: flex;
	gap: 15px;
	background: var(--fsk-100);
	padding: 5px 20px;
	border-radius: 0;
	font-size: 18px;
	font-weight: 400;
	align-items: center;
	transition: .14s ease;
	max-height: 25px;
	cursor: pointer;
	position: relative;
}

.sidebar-menu-title {
	display: flex;
	align-items: center;
	width: 100%;
	color: var(--fsk-700);
	gap: 10px;
	white-space: nowrap;
}

.sidebar-menu-item.active {
	color: var(--fsk-site-color)
}

.sidebar-menu-item.active .sidebar-menu-title {
	color: var(--fsk-site-color)
}


.sidebar-menu-item.active::after {
	content: "";
	width: 4px;
	height: 75%;
	background: var(--fsk-site-color);
	border-radius: 0 calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0;
	position: absolute;
	left: 0
}

.sidebar-menu-item:hover {
	background: var(--fsk-200)
}

.sidebar-menu-item i {
	line-height: 0;
  	width: 18px
}

.sidebar-bottom {
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: var(--fsk-100);
	box-shadow: 0 0 50px 50px var(--fsk-100);
	z-index: 1;
	position: relative;
	transition: .3s ease
}

.sidebar-bottom.active {
	box-shadow: none
}

.sidebar-bottom .btn {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px !important;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.header-btn-box i {
	font-size: 22px;
}

.balance-box i {
	font-size: 18px !important
}

.balance-info {
	margin: 0 5px
}

.header-user-box i {
	font-size: 18px !important
}

.color-change-box {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	color: var(--fsk-800);
	width: -webkit-fill-available
}

.color-change-box img {
	width: 73px;
	border: 2px solid var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	cursor: pointer;
	object-fit: cover;
	height: 45px
}

.color-btn.active img {
	border: 2px solid var(--fsk-site-color)
}

.color-btn.active::before {
	z-index: 2;
	content: "";
	position: absolute;
	width: 70%;
	height: 13px;
	background: var(--fsk-site-color);
	opacity: 1;
	bottom: 0px;
	border-radius: calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0 0;
}

.color-btn {
	display: flex;
	flex-direction: column;
	position: relative;
	font-size: 14px;
	color: var(--fsk-500);
	gap: 5px;
	justify-content: flex-end;
	align-items: center
}

.color-btn span {
	width: 100%
}

.fsk-rtl .color-btn span {
	text-align: right;
}

.color-btn i,
.hidden {
	display: none !important
}

.color-btn.active i {
	position: absolute;
	z-index: 2;
	bottom: 1px;
	color: white;
	display: block !important;
	font-size: 12px !important
}

.close-user-box {
	width: 100%;
	display: flex;
	justify-content: flex-end
}

.close-user-box i {
	background: var(--fsk-200);
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	padding: 10px;
	justify-content: center;
	line-height: 1;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.close-user-box i:hover {
	background: var(--fsk-300);
	color: white
}

.sidebar-user-box {
	display: flex;
	padding: 10px 15px;
	justify-content: space-between;
	align-items: center;
	border-radius: calc(var(--fsk-site-border) * 2);
	min-height: 40px;
	background: var(--fsk-200);
	transition: all .2s ease 0;
	cursor: pointer;
}

.user-box-left {
	display: flex;
	flex-direction: column
}

.user-box-right {
	font-size: 24px
}

.fsk-rtl .user-box-right i {
	transform: rotate(180deg);
}

.user-box-title {
	font-size: 16px;
	visibility: visible;
	opacity: 1;
	max-height: 100px;
	transition: all .1s ease 0
}

.user-box-username {
	font-size: 12px;
	transition: all .1s ease 0
}

.sidebar-user-box:hover {
	background: var(--fsk-site-color);
	color: white
}

.red-btn {
	color: var(--fsk-red);
	align-items: center;
	line-height: 1;
	gap: 5px !important
}

.red-btn i {
	font-size: 18px
}

.sidebar-scroll {
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease 0;
	position: absolute;
	top: -27px;
	right: 22px;
	transform: scale(0.2)
}

.sidebar-scroll.active {
	position: absolute;
	color: white;
	padding: 10px;
	z-index: 1;
	top: -38px;
	border-radius: calc(var(--fsk-site-border) * 1.5);
	right: 14px;
	background: var(--fsk-site-color);
	visibility: initial;
	opacity: 1;
	transform: scale(1);
	cursor: pointer
}

.sidebar-scroll i {
	animation: 1s ease 0 infinite normal none running bounce
}

.currency-top i {
	display: flex;
	align-items: center;
	color: var(--fsk-500);
	justify-content: center;
	font-size: 32px;
	line-height: 1;
	cursor: pointer
}

.curency-pagination {
	background: var(--fsk-200);
	padding: 5px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	gap: 5px;
	justify-content: space-between
}

.curency-pagination button {
	border: 0;
	background: var(--fsk-300);
	color: var(--fsk-700);
	width: 100%;
	border-radius: calc(var(--fsk-site-border));
	cursor: pointer;
	padding: 4px
}

.curency-pagination button.active {
	background: var(--fsk-site-color);
	color: white
}

.page-title {
	display: flex;
	gap: 10px;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
	align-items: center
}

.neworder-top {
	display: flex;
	align-items: center;
	margin-top: 20px;
	justify-content: space-between
}

.neworder-top .page-title {
	margin: 0
}

.affiliates-page .page-title {
	color: white
}

.page-title i {
	font-size: 20px
}

.discord-ysecret-image {
  margin-top: 10px;
  text-align: center;
}

.discord-ysecret-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.stats-box {
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 3);
	line-height: 1;
	border-radius: calc(var(--fsk-site-border) * 2);
	overflow: hidden;
	height: auto;
}

.stats-box-inner {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 20px 20px;
}

.stats-box-inner .icon img{
	width: 70px;
}

.social-boxes {
      padding: 40px 20px;
    }

    .social-boxes .box-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .social-boxes .sb-item {
      border-radius: 20px;
      padding: 20px;
      width: 300px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: 0.3s;
    }

    .social-boxes .sb-item:hover {
      border-color: #345cff;
    }

    .social-boxes .sb-item .sb-bg i {
      position: absolute;
      top: -50px;
      right: -50px;
      font-size: 150px;
      color: rgba(255, 255, 255, 0.08);
      transform: rotate(-15deg);
      pointer-events: none;
    }

    .social-boxes .sb-item:nth-child(1) .sb-bg i { color: #5865F2; } /* Discord */
    .social-boxes .sb-item:nth-child(2) .sb-bg i { color: #E1306C; } /* Instagram */
    .social-boxes .sb-item:nth-child(3) .sb-bg i { color: #000000; } /* TikTok */
    .social-boxes .sb-item:nth-child(4) .sb-bg i { color: #020202; } /* Twitter */
    .social-boxes .sb-item:nth-child(5) .sb-bg i { color: #FF0000; } /* YouTube */
    .social-boxes .sb-item:nth-child(6) .sb-bg i { color: #1877F2; } /* Facebook */
    .social-boxes .sb-item:nth-child(7) .sb-bg i { color: #0088cc; } /* Telegram */
    .social-boxes .sb-item:nth-child(8) .sb-bg i { color: #1DB954; } /* Spotify */
    .social-boxes .sb-item:nth-child(9) .sb-bg i { color: #28a745; } /* Kick */
    .social-boxes .sb-item:nth-child(10) .sb-bg i { color: #6441A5; } /* Twitch */
    .social-boxes .sb-item:nth-child(11) .sb-bg i { color: #D45730; } /* Kwai */
    .social-boxes .sb-item:nth-child(12) .sb-bg i { color: #4A4A4A; } /* Painel SMM */

    .social-boxes .icon {
      width: 75px;
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      margin: 0 auto 15px;
      font-size: 40px;
      color: white;
    }

    .social-boxes .text {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      /* color: white; */
    }

    .social-boxes .list a {
      display: block;
      margin: 5px 0;
      /* color: #ccc; */
      text-decoration: none;
      transition: color 0.2s;
    }

    .social-boxes .list a:hover {
      color: #345cff;
}

.stats-top {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: white;
	padding: 15px;
	padding-bottom: 30px;
	background: var(--fsk-site-color);
	align-items: center
}

.stats-top i {
	font-size: 16px;
	background: var(--fsk-50);
	border-radius: calc(var(--fsk-site-border));
	width: 16px;
	height: 16px;
	padding: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fsk-900)
}

.stats-center {
	background: var(--fsk-100);
	padding: 15px;
	border-radius: calc(var(--fsk-site-border) * 2);
	margin-top: -15px
}

::-webkit-scrollbar {
	width: 6px
}

::-webkit-scrollbar-track {
	background: 0 center
}

::-webkit-scrollbar-thumb {
	background-color: var(--fsk-400);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.sidebar ::-webkit-scrollbar-thumb {
	display: none
}

.sidebar ::-webkit-scrollbar {
	width: 0
}

@keyframes bounce {
	0,
	100% {
		transform: translateY(5px)
	}

	50% {
		transform: translateY(-5px)
	}
}

.order-alert-content {
	background: #13151a69;
	display: flex;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: fixed;
	z-index: 9;
	-webkit-backdrop-filter: blur(0px) !important;
	backdrop-filter: blur(0px);
	transition: .3s ease
}

.order-alert-content.close {
	visibility: hidden;
	transition: .3s ease;
	-webkit-backdrop-filter: blur(0) !important;
	backdrop-filter: blur(0);
	background: #13151a00
}

.order-alert-box.error {
	height: 230px
}

.alert-close {
	position: absolute;
	right: 0;
	color: var(--fsk-800);
	padding: 5px 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	margin: 10px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	font-size: 18px;
	border: 0
}

.alert-box-top {
	display: flex;
	flex-direction: column;
	padding: 10px 16px;
	font-size: 18px;
	align-items: center;
	color: var(--fsk-800)
}

.alert-box-bottom {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	padding: 10px;
	gap: 10px
}

.alert-box-bottom span {
	padding: 10px 15px;
	color: var(--fsk-800);
	overflow: hidden;
	text-overflow: ellipsis;
	border-radius: calc(var(--fsk-site-border) * 2);
	background: var(--fsk-200);
}

.select2.select2-container .select2-selection {
	border: 0 solid #fff0;
	-webkit-border-radius: calc(var(--fsk-site-border) * 2);
	-moz-border-radius: calc(var(--fsk-site-border) * 2);
	border-radius: calc(var(--fsk-site-border) * 2);
	height: 45px;
	color: var(--fsk-800);
	display: flex;
	background: var(--fsk-200);
	outline: 0;
	transition: .15s ease-in-out;
	align-items: center
}

.lite .select2.select2-container .select2-selection {
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2) !important;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
	line-height: 32px;
	padding-right: 33px;
	color: var(--fsk-800);
	border: 0;
	padding-left: 15px;
	width: 100%;
	display: flex
}

.select2.select2-container .select2-selection .select2-selection__arrow {
	-webkit-border-radius: 0 calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0;
	-moz-border-radius: 0 calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0;
	border-radius: 0 calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0;
	height: 100%;
	width: 26px
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.lite .select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
	-webkit-border-radius: 0 10px 0 0;
	-moz-border-radius: 0 10px 0 0
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
	border: 0 solid #34495e
}

.select2.select2-container.select2-container--focus .select2-selection {
	border: 0 solid #ffffff00;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	align-items: center
}

.select2.select2-container .select2-selection--multiple {
	height: auto;
	min-height: 34px
}

.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
	margin-top: 0;
	height: 32px
}

.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: block;
	padding: 0 4px;
	line-height: 29px
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
	background-color: #f8f8f8;
	border: 1px solid #ccc;
	-webkit-border-radius: calc(var(--fsk-site-border) * 2);
	-moz-border-radius: calc(var(--fsk-site-border) * 2);
	border-radius: calc(var(--fsk-site-border) * 2);
	margin: 4px 4px 0 0;
	padding: 0 6px 0 22px;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	position: relative
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	margin: 0;
	text-align: center;
	color: #e74c3c;
	font-weight: 700;
	font-size: 16px
}

.select2-container .select2-dropdown {
	border-radius: calc(var(--fsk-site-border) * 4);
	background: var(--fsk-200);
	border: 0;
	margin-top: 8px;
	overflow: hidden;
	border: 3px solid var(--fsk-300);
}

.select2-container .select2-dropdown .select2-results,
.select2-container .select2-dropdown .select2-search {
	padding: 10px;
}

.select2-container .select2-dropdown .select2-search input {
	outline: 0;
	border-bottom: 0;
	padding: 12px 14px;
	background: var(--fsk-300);
	border: 0;
	color: var(--fsk-800);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.select2-container .select2-dropdown .select2-results ul {
	background: 0;
	color: var(--fsk-800);
	display: flex;
	flex-direction: column;
	max-height: 286px;
	padding-right: 5px;
}

.fsk-rtl .select2-container .select2-dropdown .select2-results ul {
	padding-left: 5px;
	padding-right: 0px;
}

.select2-results__option[aria-selected] {
	cursor: pointer;
	transition: .2s;
	padding: 12px 10px;
	font-size: 12px;
	border-radius: calc(var(--fsk-site-border) * 2);
	height: auto;
	margin: 0
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: var(--fsk-300) !important;
	background-color: var(--fsk-300);
	padding: 12px 10px
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
	background-color: var(--fsk-300) !important;
	transition: .2s;
	border-radius: calc(var(--fsk-site-border) * 2);
	margin: 0;
	color: var(--fsk-900)
}

.has-overflow {
	padding-right: 5px
}

.select2-order-bg {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 5
}

.select2-service-bg {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 5
}

.service-dropdown-item {
	display: flex;
	flex-direction: column;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2);
	cursor: pointer;
	transition: all .14s ease;
	position: relative;
	gap: 3px;
	padding: 5px
}

.service-dropdown-item.active {
	border: 2px solid var(--fsk-site-color) !important;
	padding: 3px
}

.service-dropdown-item.active .service-dropdown-price {
	border-radius: calc(var(--fsk-site-border));
}

.masterBox .service-dropdown-item {
	background: var(--fsk-100);
	position: relative
}

.service-dropdown-item .buy-btn-master {
	display: none
}

.masterBox .service-dropdown-item:hover {
	background: var(--fsk-200)
}

.service-dropdown-top {
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-content: flex-start;
	justify-content: space-between;
}

.serivce-dropdown-bottom {
	display: flex;
	gap: 3px;
	justify-content: space-between;
}

.service-dropdown-name {
	font-size: 12px;
	background: var(--fsk-200);
	padding: 5px 10px;
	width: 100%;
	box-sizing: border-box;
	border-radius: calc(var(--fsk-site-border));
	color: var(--fsk-800);
	line-height: 1;
	transition: .14s ease;
	display: flex;
	align-items: center;
}

.masterBox .service-dropdown-name {
	background: var(--fsk-200)
}

.service-dropdown-item:hover {
	background: var(--fsk-200) !important
}

.service-dropdown-item:hover .service-dropdown-name {
	background: var(--fsk-300) !important;
}

.service-dropdown-item:hover .service-dropdown-minmax {
	background: var(--fsk-300) !important;
}

.service-dropdown-item:hover .service-dropdown-info-item.avg {
	background: var(--fsk-300) !important;
}

.service-dropdown-item:hover .service-features {
	background: var(--fsk-300) !important;
}


.service-dropdown-name span {
	margin-right: 5px;
	font-size: 12px;
	line-height: 1.25;
}

.service-dropdown-name img {
	height: 12px;
	width: 12px;
	margin-bottom: -2px
}

.service-dropdown-price {
	background: var(--fsk-site-color);
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border));
	text-align: center;
	white-space: nowrap;
	color: white;
	display: flex;
	font-size: 14px;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1;
	justify-content: center;
}

.service-dropdown-price small {
	font-size: 8px
}

.service-dropdown-info {
	display: flex;
	gap: 3px;
	background: none !important;
	box-sizing: border-box;
	border-radius: calc(var(--fsk-site-border));
	font-size: 12px;
	transition: .14s ease;
	align-items: center
}

.service-dropdown-info-item.avg {
	padding: 5px;
	background: var(--fsk-200) !important;
	border-radius: calc(var(--fsk-site-border));
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1;
	color: var(--fsk-500);
	transition: .14s ease;
}

.masterBox .service-dropdown-info-item.avg {
	background: var(--fsk-200);
}

.masterBox .service-dropdown-item:hover .service-dropdown-info-item.avg {
	background: var(--fsk-300);
}

.service-dropdown-minmax {
	padding: 5px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1;
	transition: .14s ease;
}

.masterBox .service-dropdown-minmax {
	background: var(--fsk-200);
}

.masterBox .service-dropdown-item:hover .service-dropdown-minmax {
	background: var(--fsk-300);
}

.masterBox .service-dropdown-info {
	background: var(--fsk-100)
}

.service-selected-icon {
	display: none !important
}

.service-dropdown-item.active .service-selected-icon {
	display: flex !important;
	position: absolute !important;
	bottom: 6px;
	right: 10px;
	gap: 5px;
	padding-left: 5px;
	transition: .14s ease;
	line-height: 1;
	align-items: center;
	color: var(--fsk-900);
	font-size: 16px;
}

.service-dropdown-info b {
	font-weight: 500;
	color: var(--fsk-700);
}

.dropdwon-box {
	position: relative
}

.dropdown-select-box {
	padding: 12px 15px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer
}

.masterBox .dropdown-select-box {
	background: var(--fsk-100)
}

.payment-box .dropdown-select-box {
	background: var(--fsk-200)
}

.dropdown-select-box img {
	height: 15px;
	width: 15px;
	line-height: 1;
	margin-bottom: -1px;
	margin-right: 5px
}

.dropdown-select-name {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-right: 5px
}

.dropdown-select-name span {
    font-size: 15px; 
}

.dropdown-select-name span {
	margin-right: 5px;
}

.payment-dropdown {
	display: none;
	position: absolute
}

.category-dropdown {
	display: none;
	position: absolute
}

.service-dropdown {
	display: none;
	position: absolute
}

.category-dropdown-box {
	overflow: auto;
	max-height: 400px;
	display: flex;
	gap: 7px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	flex-direction: column
}

.category-dropdown-item {
	background: var(--fsk-100);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	width: 100%;
	box-sizing: border-box;
	white-space: normal; /* @nowrap */
	overflow: visible; /* @hidden */
	text-overflow: ellipsis;
	font-size: 13px;
	cursor: pointer;
	transition: .14s ease;
	min-height: auto; /* @36px */
}

.category-dropdown-item img {
	width: 15px;
	height: 15px;
	margin-bottom: -2px
}

.category-dropdown-item:hover {
	background: var(--fsk-200)
}

.category-dropdown-item.active {
  border: 2px solid var(--fsk-site-color) !important;
}

.category-dropdown-item span {
    font-size: 15px;
}

.category-dropdown-bg.active {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	/* backdrop-filter: blur(0px); */
	z-index: 4
}

.payment-dropdown-box {
	overflow: auto;
	max-height: 290px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.payment-dropdown-item {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	width: 100%;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 12px;
	min-height: 37px;
	cursor: pointer;
	transition: .14s ease
}

.payment-dropdown-item img {
	width: 12px;
	height: 12px;
	margin-bottom: -2px
}

.payment-dropdown-item:hover {
	background: var(--fsk-300)
}

.payment-dropdown-item.active {
	background: var(--fsk-site-color);
	color: white
}

.payment-dropdown-item span {
	font-size: 14px
}

.payment-dropdown-bg.active {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 4
}

.service-dropdown-bg.active {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 4
}

.service-dropdown-header {
	display: none
}

.service-dropdown-title {
	font-size: 16px;
	color: var(--fsk-900)
}

.service-dropdown-header i {
	width: 32px;
	height: 32px;
	background: var(--fsk-200);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--fsk-900);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.payment-dropdown-header i {
	width: 32px;
	height: 32px;
	background: var(--fsk-200);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--fsk-900);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.category-dropdown-header i {
	width: 32px;
	height: 32px;
	background: var(--fsk-200);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--fsk-900);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.category-dropdown-header {
	display: none
}

.payment-dropdown-header {
	display: none
}

.search-service-list {
	display: none
}

.search-service-list.active {
	box-sizing: border-box;
	position: absolute;
	background: var(--fsk-50);
	border: 4px solid var(--fsk-100);
	z-index: 1;
	width: 100%;
	margin-top: 20px;
	border-radius: calc(var(--fsk-site-border) * 4);
	overflow: hidden;
	display: block
}

.search-service-box {
	max-height: 500px !important;
	overflow: auto
}

#search-service-list {
	padding: 7px;
	display: flex;
	flex-direction: column;
	gap: 5px
}

.language-box {
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: flex-end
}

.language-list {
	padding: 10px;
	overflow: auto;
	display: flex;
	flex-direction: column;
	gap: 7px
}

.language-item {
	background: var(--fsk-200);
	width: 100%;
	box-sizing: border-box;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	justify-content: space-between;
	padding: 5px;
	white-space: nowrap;
	align-items: center;
	padding-left: 10px
}

.fsk-rtl .language-item {
	padding-right: 10px;
	padding-left: 5px;
}

.language-item.selected {
	background: var(--fsk-site-color);
	color: white
}

.language-item.selected b {
	background: var(--fsk-100);
	color: var(--fsk-800)
}

.language-bg.active {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 7
}

.language-item b {
	padding: 2.5px 10px;
	background: var(--fsk-site-color);
	color: white;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: calc(var(--fsk-site-border));
}

.select-service-detail-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 4)
}

.select-service-item {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.select-service-name {
	padding: 10px;
	background: var(--fsk-200);
	display: flex;
	border-radius: calc(var(--fsk-site-border) * 2);
	color: var(--fsk-900)
}

.select-id {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.select-id b {
	padding: 2.5px 10px;
	background: var(--fsk-300);
	color: var(--fsk-800);
	display: flex;
	border-radius: calc(var(--fsk-site-border));
	align-items: center;
	font-weight: 500;
	font-size: 12px
}

.select-price {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	flex-direction: column;
	gap: 4px
}

.select-price b {
	padding: 2.5px 10px;
	background: var(--fsk-300);
	color: var(--fsk-800);
	border-radius: calc(var(--fsk-site-border));
	box-sizing: border-box;
	font-weight: 500;
	font-size: 12px
}

.select-avg {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	flex-direction: column;
	gap: 4px
}

.select-avg b {
	padding: 2.5px 10px;
	background: var(--fsk-300);
	color: var(--fsk-800);
	display: flex;
	align-items: center;
	border-radius: calc(var(--fsk-site-border));
	font-weight: 500;
	font-size: 12px
}

.select-minmax {
	background: var(--fsk-200);
	padding: 5px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 5px
}

.select-minmax b {
	padding: 2.5px 10px;
	background: var(--fsk-300);
	color: var(--fsk-800);
	display: flex;
	align-items: center;
	border-radius: calc(var(--fsk-site-border));
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap
}

.select-service-description {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.services-top-box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	margin-top: 20px;
	gap: 10px
}

.services-category-box {
	background: var(--fsk-200);
	padding: 15px;
	border-radius: calc(var(--fsk-site-border) * 2);
	color: var(--fsk-800); 
	margin-bottom: 10px;
}

.services-list {
	display: flex;
	flex-direction: column;
}

.services-list-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	gap: 5px;
	font-size: 12px
}

.services-item-top {
	border-radius: calc(var(--fsk-site-border) * 1.5);
	line-height: 1;
	color: var(--fsk-900);
	display: flex;
	gap: 4px;
	align-items: center;
	font-size: 14px;
	margin-top: 3px;
}

.favbox span {
	width: 25px;
	height: 25px;
	background: var(--fsk-site-color);
	border-radius: calc(var(--fsk-site-border) * 0.7);
	display: flex;
	color: white;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
	cursor: pointer
}

.services-item-top img {
	height: 14px;
	width: 14px
}

.services-item-price {
	background: var(--fsk-site-color);
	color: white;
	padding: 10px;
	border-radius: calc(var(--fsk-site-border));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 1;
	height: 8px
}

.services-item-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1
}

.services-item-btn .btn {
	height: 28px
}

.disabled-button {
	cursor: not-allowed;
	opacity: .5
}

.btn-sm {
	padding: 10px 5px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: calc(var(--fsk-site-border));
	line-height: 1;
	box-sizing: border-box
}

.ticket-box-btn .btn-sm {
	padding: 5px 15px
}

#description-content {
	max-height: 50vh;
	overflow: auto;
	display: flex;
	padding-bottom: 15px;
	background: var(--fsk-100);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	flex-direction: column;
}

#description-content::after {
	position: absolute;
	bottom: 15px;
	width: 100%;
	height: 20px;
	margin-left: -15px;
	background: linear-gradient(360deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
	box-sizing: border-box
}

#description-content::before {
	position: absolute;
	width: 100%;
	height: 20px;
	z-index: 1;
	margin-left: -15px;
	background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
	box-sizing: border-box;
	margin-top: -10px
}

.progress {
	justify-content: flex-start;
	align-items: center;
	display: flex;
	position: relative;
	left: 0;
	height: 30px;
	top: 0;
	border-radius: calc(var(--fsk-site-border) * 2);
	overflow: hidden;
	background: var(--fsk-200)
}

.progress span {
	z-index: 1;
	margin: 5px 15px;
	color: var(--fsk-900)
}

@keyframes fadebrightness {

	0,
	100% {
		filter: brightness(1)
	}

	50% {
		filter: brightness(1.2)
	}
}

.order-status.inprogress {
	display: flex;
	gap: 10px;
	align-items: center;
	background: #3053da;
	color: white
}

.order-status.pending {
	display: flex;
	gap: 10px;
	align-items: center;
	background: var(--fsk-orange);
	color: white
}

.order-status.completed {
	border: 1px solid var(--fsk-green);
	display: flex;
	gap: 10px;
	align-items: center;
	background: var(--fsk-green);
	color: white !important;
}

.order-status.canceled {
	display: flex;
	gap: 10px;
	align-items: center;
	background: var(--fsk-red);
	color: white
}

.order-status.partial {
	display: flex;
	gap: 10px;
	align-items: center;
	background: #3b82f6;;
	color: white
}

.order-status.processing {
	display: flex;
	gap: 10px;
	align-items: center;
	background: #5f44ed;;
	color: white
}

.order-status.pending i {
	-webkit-animation: 1s linear infinite rotation2;
}

.order-status.processing i {
	-webkit-animation: 1s linear infinite rotation;
}

.order-status.inprogress i {
	-webkit-animation: 1s linear infinite rotation;
}

.order-status.inprogress span {
	color: white
}

.order-status.processing span {
	color: white
}

.order-status.pending span {
	color: white
}

.order-status.partial span {
	color: white
}

.order-status.canceled span {
	color: white
}

.order-status.completed span {
	color: white
}

@keyframes rotation {
	from {
		transform: rotate(0)
	}

	to {
		transform: rotate(359deg)
	}
}

@keyframes rotation2 {
	0 {
		transform: rotate(0)
	}

	100%,
	50% {
		transform: rotate(180deg)
	}
}

.order-list {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr 1fr;
	/* align-items: start;
     */
}

.affiliate-stats-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px
}

@media(max-width: 1324px) {
	.order-list {
		grid-template-columns: 1fr 1fr
	}

	.affiliate-stats-list {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px
	}
}

@media(max-width: 675px) {
	.order-list {
		grid-template-columns: 1fr
	}

	.affiliate-stats-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px
	}
}

.instagram-flag-video{
	width: 100%;
	border-radius: calc(var(--fsk-site-border) * 2);
	overflow: hidden;
	display: flex;
}

.instagram-flag-video video{
	width: 100%;
}

.order-box {
	display: flex;
	padding: 10px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 3);
	gap: 5px;
	flex-direction: column;
}

.order-top {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.order-top-left {
	display: flex;
	gap: 5px
}

.order-id {
	padding: 5px 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 1.5);
	cursor: pointer
}

.o-tooltip {
	position: relative;
}

.o-tooltip:hover .order-tooltip {
	position: absolute;
	bottom: 35px;
	background: var(--fsk-200);
	padding: 10px;
	border-radius: 10px;
	display: flex;
	white-space: nowrap;
	color: var(--fsk-900);
}

.order-tooltip {
	display: none
}

.re-order-btn {
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border) * 1.5);
	background: #3b82f6;;
	color: white;
	width: 10px;
	display: flex;
	align-items: center;
	justify-content: center
}

.report-order-btn {
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border) * 1.5);
	background: #432affa3;;
	color: white;
	width: 10px;
	display: flex;
	align-items: center;
	justify-content: center
}

.detail-order-btn {
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border) * 1.5);
	background: #10b981;;
	color: white;
	width: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.order-status {
	padding: 5px 15px;
	border-radius: calc(var(--fsk-site-border) * 1.5);
	position: relative
}

.order-status.progress {
	padding: 0
}

.order-center {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 0;
	grid-row-gap: 0;
	gap: 5px
}

.order-service {
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 1.5);
	grid-area: 1 / 1 / 2 / 6;
	color: var(--fsk-700);
	line-height: 1
}

.order-date {
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 1.5);
	grid-area: 2 / 1 / 3 / 4;
	line-height: 1
}

.order-remains {
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 1.5);
	grid-area: 2 / 4 / 3 / 6;
	line-height: 1
}

.subscriptions .order-remains {
	grid-area: 2 / 1 / 2 / 6
}

.order-link {
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 1.5);
	grid-area: 3 / 1 / 4 / 6;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	border: 1px dashed var(--fsk-400);
	cursor: pointer;
	line-height: 1
}

.order-center-bottom {
	display: grid;
	grid-area: 4 / 1 / 5 / 6;
	grid-template-columns: 3fr 2fr 2fr;
	gap: 5px
}

.subscriptions .order-center-bottom {
	display: grid;
	grid-area: 4 / 1 / 5 / 6;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 5px
}

.order-center-bottom.dripfeed {
	display: grid;
	grid-area: 4 / 1 / 5 / 6;
	grid-template-columns: 1fr 1fr;
	gap: 5px
}

.order-center-bottom span {
	padding: 10px;
	background: var(--fsk-50);
	border-radius: calc(var(--fsk-site-border) * 1.5);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
	gap: 5px
}

.order-btn .btn {
	padding: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: calc(var(--fsk-site-border) * 1.5);
	box-sizing: border-box
}

.cancel-btn .btn {
	color: var(--fsk-red)
}

.cancel-btn .btn:hover {
	background: #b52626;;
	color: var(--fsk-100)
}

.refil-btn .btn {
	color: var(--fsk-green)
}

.refil-btn .btn:hover {
	background: var(--fsk-green);
	color: var(--fsk-100)
}

.sliding-text {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	width: 100%;
	display: flex;
	height: 34px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	align-items: center
}

.cancelReason {
	background: #ef4444;
	color: white;
}

.refil-time {
	position: absolute;
	display: inline-block;
	white-space: nowrap;
	animation: kayanYazi 10s linear infinite;
	padding: 10px
}

.cancel-reason {
	position: absolute;
	display: inline-block;
	white-space: nowrap;
	animation: kayanYazi2 10s linear infinite;
	padding: 10px;
	left: 100%;
}

@keyframes kayanYazi {
	from {
		left: 100%
	}

	to {
		left: -110%
	}
}

@keyframes kayanYazi2 {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-150%);
	}
}


@keyframes fade-in-up {
	from {
		bottom: 0;
		opacity: 0
	}

	to {
		bottom: 85px;
		opacity: 1
	}
}

@keyframes fade-out-down {
	from {
		bottom: 85px;
		opacity: 1
	}

	to {
		bottom: 0;
		opacity: 0
	}
}

.notify-box {
	padding: 5px;
	background: var(--fsk-100);
	display: flex;
	align-items: center;
	position: relative;
	justify-content: space-between;
	gap: 10px;
	border-radius: calc(var(--fsk-site-border) * 4);
	border: 2px solid var(--fsk-300);
	padding-right: 19px;
	color: var(--fsk-800);
	z-index: 5;
	box-shadow: 0 0 45px 15px #2d2d2d30
}

.fsk-rtl .notify-box {
	padding: 7px;
	padding-left: 19px;
}

.notify-box i {
	width: 66px;
	height: 50px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 3);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center
}

.service-features {
	display: flex;
	gap: 5px;
	align-items: center;
	flex-wrap: wrap;
}

.service-dropdown-item .service-features {}

.service-features-item {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	font-size: 12px;
	gap: 5px;
	line-height: 1;
	color: white
}

.service-dropdown-item .service-features-item {
	padding: 0px;
	font-size: 14px;
}

.service-dropdown-item .service-features {
	gap: 7px;
	font-size: 14px !important;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
	padding: 5px;
	transition: .14s ease;
}

.masterBox .service-dropdown-item .service-features {
	background: var(--fsk-200);
}

.service-features-item.guaranteed {
	background: #10b981;
}

.service-features-item.recommended {
	background: #3b82f6;
}

.service-features-item.gift {
	background: #df6d08c7;
}

.service-features-item.high-quality {
	background: #d3ad21;
}

.service-features-item.faster {
	background: #2d4abb;
}

.service-features-item.fast {
	background: #2d4abb;
	font-family: 'Alexandria'
}

.service-features-item.canceled {
	background: #b52626;
}

.service-features-item.canceled2 {
	background: #b52626;
}

.service-features-item.timed {
	background: #5f44ed;
}

.service-features-item.discounted {
	background: #00abffc7;
}

.service-features-item.slow {
	background: #c79120d6;
}

.service-features-item.emergency {
	background: #9b1312;
}


.service-dropdown-item .service-features-item.guaranteed {
	background: none;
	color: #10b981;
}

.service-dropdown-item .service-features-item.recommended {
	background: none;
	color: #3b82f6;
}

.service-dropdown-item .service-features-item.gift {
	background: none;
	color: #df6d08c7;
}

.service-dropdown-item .service-features-item.high-quality {
	background: none;
	color: #d3ad21;
}

.service-dropdown-item .service-features-item.fast {
	background: none;
	color: #2d4abb;
	font-family: 'Alexandria'
}

.service-dropdown-item .service-features-item.faster {
	background: none;
	color: #2d4abb;
	font-family: 'Alexandria'
}

.service-dropdown-item .service-features-item.canceled {
	background: none;
	color: #b52626;
}

.service-dropdown-item .service-features-item.canceled2 {
	background: none;
	color: #b52626;
}

.service-dropdown-item .service-features-item.timed {
	background: none;
	color: #5f44ed;
}

.service-dropdown-item .service-features-item.discounted {
	background: none;
	color: #00abffc7;
}

.service-dropdown-item .service-features-item.slow {
	background: none;
	color: #c79120d6;
}

.service-dropdown-item .service-features-item.emergency {
	background: none;
	color: #9b1312;
}


.addfunds-bg-img {
	background-image: url('');
	background-size: cover;
	background-position: center
}

.payment-method {
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	padding: 10px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 5px
}

.payment-top {
	padding: 10px;
	border-bottom: 1px solid var(--fsk-200)
}

.payment-name {
	color: var(--fsk-900);
	display: flex;
  	justify-content: space-between;
	gap: 5px
}

.payment-description {
	color: var(--fsk-500)
}

.payment-icon {
	gap: 5px;
	height: 20px;
	display: flex;
	align-items: center
}

.payment-icon img {
  	display: flex;
  	flex-shrink: 0;
	height: 20px;
  	border-radius: 100%
}

.payment-list {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.payment-methods {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px
}

.select-amount {
	display: flex;
	justify-content: space-between;
	border-radius: calc(var(--fsk-site-border) * 2);
	background: var(--fsk-100);
	overflow: hidden;
	padding: 5px;
	gap: 5px
}

#order_comment .form-control {
    min-height: 100px;
}

.modal-top + textarea,
.modal-content textarea,
.modal-body textarea {
    min-height: 100px;
    resize: vertical;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
}

.amount-item {
	display: flex;
	align-items: center
}

.amount-item {
	overflow: hidden;
	padding: 5px;
	width: -webkit-fill-available;
	justify-content: center;
	color: var(--fsk-700);
	background: var(--fsk-200);
	transition: .3s ease;
	cursor: pointer;
	border-radius: calc(var(--fsk-site-border));
}

.amount-item:hover {
	background: var(--fsk-site-color);
	color: white
}

.payment-box {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.payment-box .btn-main {
	background: var(--fsk-100);
	color: var(--fsk-800)
}

.payment-box .btn-main:hover {
	background: var(--fsk-site-color);
	color: white
}

.payment-box form {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.panel-body {
	display: flex;
	flex-direction: column;
	background: var(--fsk-100);
	padding: 15px;
	border-radius: calc(var(--fsk-site-border) * 3);
	color: var(--fsk-700)
}

.payment-title {
	color: var(--fsk-900)
}

.payment-history {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px
}

.history-box {
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	gap: 5px;
	justify-content: space-between;
	flex-direction: column;
	padding: 5px;
	background: var(--fsk-100)
}

.history-left {
	display: flex
}

.history-top {
	color: var(--fsk-800);
	display: flex;
	gap: 5px
}

.history-bottom {
	font-size: 12px;
	color: var(--fsk-500);
	background: var(--fsk-50);
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border));
}

.history-amount {
	border-radius: calc(var(--fsk-site-border));
	padding: 5px 10px;
	background: var(--fsk-200);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 20%
}

.history-payment-name {
	width: 80%;
	padding: 5px 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
}

.color-green {
	background: #10b981;;
	color: white
}

.color-red {
	background: #b52626;;
	color: white
}

.massorder form {
	margin-top: 20px
}

.massorder textarea {
	height: 15rem;
	background: var(--fsk-200)
}

.massorder .btn {
	margin-top: 10px
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px
}

.table-bordered {
	background: var(--fsk-100);
	padding: 10px;
	margin-top: 10px;
	border-radius: calc(var(--fsk-site-border) * 3);
}

.table td,
.table th {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border: 0;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
	text-align: right
}

.table tr {
	border: 0 !important
}

.table td {
	border: 0;
	background: var(--fsk-50);
	border-radius: calc(var(--fsk-site-border));
}

.table td:nth-child(even) {
	background: var(--fsk-50);
	border-radius: calc(var(--fsk-site-border));
	color: var(--fsk-800)
}

pre code.hljs {
	background: var(--fsk-100);
	border-radius: 0 0 15px 15px;
	color: var(--fsk-code-color-2) !important
}

.hljs-number {
	color: var(--fsk-code-color-2)
}

.hljs-punctuation {
	color: var(--fsk-500)
}

.hljs-attr {
	color: var(--fsk-code-color-1)
}

.hljs-string {
	color: var(--fsk-code-color-2);
	font-weight: 500
}

.hljs-keyword {
	font-weight: 500
}

.api-container {
	display: flex;
	flex-direction: column;
	margin-top: 10px
}

.code-block-top {
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0 0;
	display: flex;
	justify-content: space-between;
	color: var(--fsk-500)
}

.code-block-top span {
	padding: 10px 15px
}

.code-block-right {
	border-left: 1px solid var(--fsk-100)
}

.ysecret-status.refill {
	display: flex;
	gap: 10px;
	align-items: center;
	background: #10b981;
	color: white;
	padding: 8px 12px;
	border-radius: 6px;
	font-weight: 500;
}

.api-container pre {
	margin: 0;
	background: var(--fsk-100);
	padding: 10px;
	border-radius: 0px 0px calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2);
}

.affiliates-page {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	flex-direction: column
}

.affiliates-page img {
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	z-index: -1;
	opacity: .8;
	filter: blur(7px)
}

.affiliate-title {
	font-size: 16px
}

.affiliate-bottom {
	display: flex;
	background: var(--fsk-200)
}

.affiliate-url {
	gap: 10px;
	padding: 10px 15px;
	background: var(--fsk-200);
	color: var(--fsk-900);
	border-radius: calc(var(--fsk-site-border));
	display: flex;
	cursor: pointer;
	align-items: center;
	flex-flow: nowrap;
	overflow: hidden
}

.unpaid-progress {
	background: var(--fsk-50);
	padding: 10px;
	display: flex;
	border-radius: calc(var(--fsk-site-border));
	gap: 10px;
	align-items: center
}

.unpaid-progress .btn-main {
	border-radius: calc(var(--fsk-site-border) * 2);
}

.unpaid-amount-text {
	font-size: 10px;
	position: absolute;
	fill: var(--fsk-800)
}

.affiliate-box svg {
	height: 50px;
	transform: rotate(-90deg);
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.affiliate-bar-bg {
	fill: none;
	stroke: var(--fsk-300);
	stroke-width: 1.8
}

.affiliate-bar {
	fill: none;
	stroke: var(--fsk-site-color);
	stroke-dasharray: 100 100;
	stroke-dashoffset: 100;
	stroke-linecap: round;
	stroke-width: 1.8;
	transition: stroke-dashoffset 1s ease-in-out
}

.affiliate-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.affiliate-stats-top {
	padding: 10px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0 0
}

.affiliate-stats-bottom {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: 0 0 10px 10px
}

.affiliate-pay-list {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	gap: 5px
}

.affiliate-pay-list .table td {
	border: 0;
	background: var(--fsk-100) !important;
	border-radius: calc(var(--fsk-site-border));
}

.payout-box {
	display: grid;
	grid-template-columns: 4fr 3fr 3fr;
	gap: 5px
}

.payout-item {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.payout-bottom {
	padding: 10px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border));
}

.payout-top {
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
}

.child-order-form {
	margin-top: 20px
}

.child-order-form form {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.child-name-servers {
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.name-servers-top {
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0 0
}

.name-servers-item {
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	box-sizing: border-box
}

.child-price-box {
  padding: 10px 20px;
  background: var(--fsk-100);
  border-radius: calc(var(--fsk-site-border) * 2);
  font-size: 18px;
  width: 100%; 
  box-sizing: border-box; 
  text-align: center;
}


.services-item-feature i {
	color: var(--fsk-900)
}

.services-item-feature b {
	color: var(--fsk-800)
}

.panel-content {
	display: flex;
	flex-direction: column;
	padding: 10px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2);
	gap: 10px
}

.panel-content-top {
	display: flex;
	justify-content: space-between;
	gap: 10px
}

.panel-date {
	padding: 5px 10px;
	background: var(--fsk-200);
	width: 100%;
	border-radius: calc(var(--fsk-site-border));
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box
}

.panel-date span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box
}

.panel-content-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}

.panel-title {
	font-size: 20px;
	color: var(--fsk-900);
	display: flex;
	align-items: center
}

.panel-img-box {
	overflow: hidden;
	border-radius: calc(var(--fsk-site-border));
	height: 150px;
	position: relative
}

.panel-img {
	width: 100%;
	object-fit: cover;
	position: absolute;
	height: 100%;
	border-radius: calc(var(--fsk-site-border));
}

.shadow-img {
	width: 100%;
	position: absolute;
	height: 100%;
	z-index: 1
}

.loading-img {
	width: 100%;
	display: flex;
	border-radius: calc(var(--fsk-site-border));
	height: 100%;
	background: #1d1d21;
	background: #27272b;
	animation: yanipSonme 1s linear infinite;
	align-items: center;
	justify-content: center;
	position: absolute;
}

.loading-img i {
	font-size: 30px;
	animation: spin 1s ease-in-out infinite;
}

@keyframes yanipSonme {

	0,
	100% {
		background: var(--fsk-200)
	}

	50% {
		background: var(--fsk-300)
	}
}

@keyframes spin {
	0 {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg);
	}
}

.subject-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	grid-auto-flow: column;
}

.subject-item {
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	align-items: center;
	border: 1px solid var(--fsk-200);
	cursor: pointer;
	gap: 5px;
}

.subject-item.active {
	border: 1px solid var(--fsk-site-color);
}

#message-ticket {
	min-height: 150px
}

.ticket-view-bottom #message {
	min-height: 75px;
}

.tickets-uploader {
	background: var(--fsk-200);
	padding: 10px;
	color: var(--fsk-900) !important;
	border-radius: calc(var(--fsk-site-border) * 2);
	border: 1px dashed var(--fsk-200);
	cursor: pointer;
	transition: .3s ease
}

.tickets-uploader .files-label {
	color: var(--fsk-900) !important
}

.tickets-uploader:hover {
	border: 1px dashed var(--fsk-site-color)
}

.ticket-form {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.ticket-title {
	display: flex;
	margin-top: 10px
}

.ticket-list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 10px
}

.ticket-box {
	background: var(--fsk-100);
	padding: 7px;
	display: flex;
	flex-direction: column;
	border-radius: calc(var(--fsk-site-border) * 2);
	gap: 7px;
	cursor: pointer;
	transition: .14s ease;
}

.ticket-box:hover {
	background: var(--fsk-200);
}

.ticket-box.active {
	border: 2px solid var(--fsk-site-color);
	animation: 1s activeBorder infinite;
}

.ticket-box-top {
	display: flex;
	justify-content: space-between;
	line-height: 1
}

.ticket-top-content {
	display: flex;
	gap: 5px;
	align-items: center
}

.ticket-id {
	padding: 5px 10px;
	background: var(--fsk-site-color);
	border-radius: calc(var(--fsk-site-border));
	color: white
}

.ticket-status {
	padding: 5px 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
	transition: .14s ease;
}

.ticket-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between
}

.ticket-box:hover .ticket-date,
.ticket-box:hover .ticket-status {
	background: var(--fsk-300);
}

.ticket-date {
	background: var(--fsk-200);
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border));
	line-height: 1;
	transition: .14s ease;
}

@keyframes activeBorder {

	0,
	100% {
		border: 2px solid var(--fsk-100);
	}

	50% {
		border: 2px solid var(--fsk-site-color);
	}
}

.master-form .master-form-mobile {
	display: none
}

.master-form.opened .master-form-mobile {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.order-form-title {
	font-size: 20px;
	color: var(--fsk-800)
}

.master-form-mobile i {
	width: 30px;
	height: 30px;
	display: flex;
	border-radius: calc(var(--fsk-site-border) * 2);
	background: var(--fsk-200);
	align-items: center;
	justify-content: center;
	cursor: pointer
}

.master-select {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.buy-btn {
	display: none
}

#master-service-dropdown {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.settings-box-btn {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 10px
}

.settings-btn {
	background: var(--fsk-200);
	font-size: 20px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 10px
}

.whatsapp_icon_top {
	background: var(--fsk-200);
	font-size: 20px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px
}

.telegram_icon_top {
	background: var(--fsk-200);
	font-size: 20px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px
}

.settings-btn i {
	animation: spin 2s ease-in-out infinite
}

.settings-content {
	display: none
}

.settings-bg {
	display: none
}

.settings-bg.active {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 4;
	display: flex
}

.neworder-settings-box {
	display: flex;
	flex-direction: column;
	padding: 15px;
	background: var(--fsk-50);
	border-radius: calc(var(--fsk-site-border) * 4);
	gap: 10px;
	width: -moz-available;
	border: 3px solid var(--fsk-200);
}

.close-settings {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.close-settings span {
	font-size: 18px;
	color: var(--fsk-800)
}

.close-settings i {
	width: 30px;
	height: 30px;
	background: var(--fsk-100);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fsk-900);
	border-radius: calc(var(--fsk-site-border) * 1.25);
	cursor: pointer
}

.neworder-size {
	display: flex;
	gap: 10px
}

.size-select-box {
	display: flex;
	flex-direction: column;
	gap: 2px;
	border-radius: calc(var(--fsk-site-border) * 2);
	overflow: hidden;
	cursor: pointer;
	border: 2px solid var(--fsk-50) width:200px;
	width: -moz-available;
}

.size-select-box.active {
	background: var(--fsk-site-color);
	border: 2px solid var(--fsk-site-color)
}

.size-img {
	padding: 10px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border));
}

.size-img img {
	width: 100%;
	height: 100%;
	filter: var(--fsk-100)
}

html.light .size-img img {
	filter: invert(91%) sepia(10%) saturate(81%) hue-rotate(175deg) brightness(99%) contrast(88%)
}

.size-text {
	padding: 5px 10px;
	background: var(--fsk-100);
	text-align: center;
	border-radius: calc(var(--fsk-site-border));
}

.theme-type {
	display: flex;
	gap: 5px;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.theme-select-btn {
	padding: 5px;
	width: 100%;
	text-align: center;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) *1.5);
	cursor: pointer
}

.theme-select-btn.active {
	background: var(--fsk-site-color);
	color: white
}

.buy-btn-item i {
	padding: 15px;
	background: var(--fsk-site-color);
	border-radius: calc(var(--fsk-site-border)* 1.5);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 5;
	color: white
}

.master-form-bg {
	display: none
}

.master-form-bg.active {
	display: flex;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	z-index: 5
}

.ticket-view-page {
	display: flex;
	flex-direction: column;
	position: relative;
	height: calc(100vh - 120px);
	margin-top: 20px;
	gap: 10px;
}

.ticket-view-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ticket-view-id {
	padding: 5px 20px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border));
}

.ticket-view-subject {
	padding: 5px 20px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border));
}

.ticket-view-message-list {
	display: flex;
	gap: 10px;
	flex-direction: column-reverse;
	height: 80%;
	overflow: auto;
	position: relative;
}

.ticket-view-page::before {
	content: "";
	position: absolute;
	width: 100%;
	background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
	box-sizing: border-box;
	margin-top: 40px;
	display: flex;
	z-index: 1;
}

.message-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.message-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}

.ticket-image {
	height: 75px;
	width: 150px;
	object-fit: cover;
	border-radius: calc(var(--fsk-site-border) * 2);
	cursor: zoom-in;
}

.message-text {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.message-left .message-text {
	background: var(--fsk-site-color);
	color: white;
}

.message-left i {
	color: var(--fsk-blue);
}

.message-bottom {
	display: flex;
	font-size: 12px;
	gap: 5px;
}

.message-author {
	display: flex;
	align-items: center;
	gap: 3px;
	color: var(--fsk-700);
}

.ticket-view-bottom {
	width: 100%;
}

.ticket-view-bottom form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.enlarged {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: contain;
	z-index: 9999;
	cursor: zoom-out;
	background: rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
}

.update-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.update-box {
	background: var(--fsk-100);
	padding: 5px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.update-top {
	display: flex;
	justify-content: space-between;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
	padding: 5px 10px;
}

.update-service-name {
	font-size: 14px;
}

.update-bottom {
	padding: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--fsk-50);
	gap: 2px;
	border-radius: calc(var(--fsk-site-border));
}

.term-and-faq {
	border-radius: calc(var(--fsk-site-border) * 2);
	margin-top: 20px;
}

.service-features-item {
	border-radius: calc(var(--fsk-site-border));
}

.service-features .service-features-item .feature-name {
	position: absolute;
	margin-top: -62px !important;
	background: var(--fsk-300) !important;
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border));
	display: none;
	color: var(--fsk-900);
	z-index: 5;
}


.service-features .service-features-item:hover .feature-name {
	position: absolute;
	margin-top: -70px;
	background: Var(--fsk-300);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border));
	display: block;
}

.services-item-bottom .service-features {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-area: 4/ 1 / 3 / 3;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 8px; 
    cursor: pointer;
}

.user-info-box {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.user-box-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.user-image {
	width: 50px;
	height: 50px;
	border-radius: calc(var(--fsk-site-border) * 100);
	background: var(--fsk-site-color);
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 20px;
}

.user-info-detail {}

.userbox-username {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	color: var(--fsk-600);
}

.userbox-mail {
	font-size: 12px;
}

.user-info-apibox {}

.btn-apikey {
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2);
	color: var(--fsk-800);
	padding: 5px 10px 5px 5px;
	gap: 10px;
}

.btn-apikey i {
	background: var(--fsk-200);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border));
}

.user-well {
	padding: 15px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 3);
	display: flex;
	flex-direction: column;
}

.user-well form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.user-well-title {
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--fsk-700);
	display: flex;
	align-items: center;
	gap: 10px;
}

.tfa-span {
	background: var(--fsk-200);
	padding: 10px;
	display: flex;
	margin-bottom: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.user-box-info .fa-badge-check {
	color: var(--fsk-site-color);
}

.alert {
	padding: 15px;
	border-radius: calc(var(--fsk-site-border) * 2);
	display: flex;
	gap: 10px;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: left;
}

.alert-success {
	background-color: var(--fsk-green);
	color: #fff
}

.alert-info {
	background-color: var(--fsk-blue);
	color: #fff
}

.alert-warning {
	background-color: var(--fsk-orange);
	color: #fff
}

.alert-danger {
	background-color: var(--fsk-red);
	color: #fff
}

.close {
	border-radius: calc(var(--fsk-site-border));
	width: 30px;
	height: 30px;
	background: white;
	border: none;
	color: black;
	font-size: 20px;
	cursor: pointer;
}

.active-2fa {
	padding: 10px;
	background: var(--fsk-green);
	color: white;
	border-radius: calc(var(--fsk-site-border) * 2);
	margin-bottom: 10px;
}

.footer-logo-wrapper-ysecret {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	cursor: pointer;
}
                                
.footer-info-ysecret {
	/* color: #ccc; */
	font-size: 14px;
	white-space: nowrap;
}

.main-header {
	background: var(--fsk-50);
	height: 80px;
	display: flex;
	align-items: center;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 10;
	border-bottom: 1px solid var(--fsk-100);
}

.main-header-content {
	display: flex;
	justify-content: space-between;
	padding: 0px 5px;
}

.main-header-btn-mobile-group {
	display: flex;
	gap: 10px;
}

.main-header-right {
	display: flex;
	gap: 10px;
	align-items: center;
}

.main-header-logo {
	display: flex;
	align-items: center;
}

.main-header-logo .logo {
	height: 45px;
}

.main-header-link {
	display: flex;
	gap: 20px;
	font-size: 16px;
	font-weight: 500;
	margin-right: 10px;
}

.main-header-link-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.main-header-link-item.active {
	position: relative;
}

.main-header-btn {
	display: flex;
	align-items: center;
	gap: 10px;
}

.main-header-btn-item {
	padding: 10px 25px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.main-header-btn-item.active {
	background: var(--fsk-site-color);
	color: white;
}

.main-header-mobile {
	display: flex;
	flex-direction: column;
	position: fixed;
	background: var(--fsk-50);
	top: 0;
	z-index: 1;
	left: 0;
	right: 0;
	padding: 18px 12px;
	visibility: hidden;
	gap: 20px;
	opacity: 0;
	transition: .14s ease;
	border-bottom: 1px solid var(--fsk-200);
}

.main-header-mobile-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main-header-mobile-btn {
	display: flex;
	font-size: 19px;
	background: var(--fsk-200);
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.main-header-mobile-link-item {
	padding: 10px 15px;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.main-header-mobile-link {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	gap: 5px;
}

.main-header-mobile-bottom {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.main-header-mobile-bottom .main-header-btn-item {
	width: 100%;
	text-align: center;
}

.auth-screen-container {
	display: flex;
	justify-content: center;
	height: calc(100vh - 100px);
}

.auth-screen-container.signup {
	display: flex;
	justify-content: center;
	height: auto;
	margin-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
	.auth-screen {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
	}
}

@media only screen and (min-width: 1024px) {
	.auth-screen {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 450px;
		gap: 10px;
	}
}

.auth-screen-title {
	font-size: 26px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--fsk-800);
}

.auth-screen-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.auth-screen-form .btn {
	justify-content: center;
}

.confirm-mail-btn {
	display: flex;
	gap: 10px;
}

.signup-alt-text {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 5px;
}

.signup-alt-text a {
	color: var(--fsk-blue)
}

.checkbox a {
	color: var(--fsk-site-color)
}

.auth-screen.signup {
	display: flex;
	justify-content: flex-start;
	margin-top: 150px;
}

.social-slider {
	display: flex;
	padding-left: 20px;
	padding-top: 20px;
	gap: 20px;
	height: 65px;
	overflow: hidden;
	color: var(--fsk-800);
	position: relative;
	background: var(--fsk-50);
	padding-bottom: 50px;
}

.social-slider::before {
	content: "";
	background: linear-gradient(90deg, var(--fsk-50) 0, rgba(254, 0, 0, 0) 20%, rgba(255, 1, 1, 0) 80%, var(--fsk-50) 100%);
	width: 100%;
	box-sizing: border-box;
	position: absolute;
	inset: 0;
	z-index: 2;
}

.social-item {
	display: flex;
	justify-content: space-between;
	background: var(--fsk-100);
	border-radius: calc(var(--fsk-site-border) * 2);
	min-width: 164px;
	font-size: 16px;
	z-index: 1;
	padding: 20px;
	white-space: nowrap;
	line-height: 1px;
	position: relative;
	align-items: center;
	color: var(--fsk-700);
}

.absolute-icon {
	position: absolute;
	right: 20px;
	filter: blur(20px)
}

.social-item i {
	font-size: 26px;
	line-height: 26px;
}

.fa-kickstarter-k {
	color: #28a745;
	-webkit-background-clip: text;
	background-clip: text
}

.fa-comment-music,
.fa-kickstarter-k,
.fa-discord,
.fa-pinterest,
.fa-reddit,
.fa-soundcloud,
.fa-spotify,
.fa-tumblr,
.fa-twitch,
.fa-youtube {
	-webkit-background-clip: text
}

.fa-twitch {
	color: #6842ac;
	background-clip: text
}

.fa-reddit-alien {
	color: #f44707;
	background-clip: text
}

.fa-telegram-plane {
	color: #1b95cf;
	-webkit-background-clip: text;
	background-clip: text
}

.fa-telegram-plane {
	color: #1b95cf;
	-webkit-background-clip: text;
	background-clip: text
}

.fa-linkedin {
	color: #0475b4;
	background-clip: text
}

.fa-soundcloud {
	color: #ef7509;
	background-clip: text
}

.fa-spotify {
	color: #1fc158;
	background-clip: text
}

.fa-at::before {
  content: none !important;
}

.fa-at {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23080808" d="M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z"/></svg>') no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  color: transparent;
}

html.dark .fa-at {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23929aa4" d="M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z"/></svg>') no-repeat center center;
}


.fa-twitter::before {
  content: none !important;
}

.fa-twitter {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23080808" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>') no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  color: transparent;
}

html.dark .fa-twitter {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23929aa4" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>') no-repeat center center;
}

.fa-facebook,
.fa-facebook-f {
	color: #12a1f4;
	-webkit-background-clip: text;
	background-clip: text
}

.fa-youtube {
	color: #e60606;
	background-clip: text
}

.fa-pinterest {
	color: #ee0226;
	background-clip: text
}

.fa-signal-stream {
	color: #17b3e6;
	-webkit-background-clip: text;
	background-clip: text
}

.fa-snapchat-ghost {
	color: #f9f606;
	-webkit-background-clip: text;
	background-clip: text
}

.fa-kickstarter-k,
.fa-dailymotion,
.fa-discord,
.fa-tumblr {
	background-clip: text
}

.fa-pinterest-p {
	color: #db3c50
}

.fa-steam {
	color: #2f5691
}

.fa-discord {
	color: #5865f6
}

.fa-whatsapp {
	color: #40C351
}

.fa-vk {
	color: #0076fe
}

.fa-eye {
	color: #01ffee;
	-webkit-background-clip: text;
	background-clip: text
}

.fab.fa-instagram {
	background: linear-gradient(180deg, #8000ff 0, #ffb800 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-list {
	padding: 120px 0px;
	background-size: cover;
	background-position: center;
	position: relative;
}

html.dark .feature-list {
	padding: 120px 0px;
	background-color: #20202400;
	background-size: cover;
	background-position: center;
	position: relative;
}

.feature-list::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background: linear-gradient(180deg, #20202400 0, rgb(0 0 0 / 0) 100%);
}

.feature-list::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(0deg, #20202400 0, rgb(0 0 0 / 0) 100%);
}

.feature-box {
	background: var(--fsk-100);
	padding: 20px;
	border-radius: calc(var(--fsk-site-border) * 2);
	color: var(--fsk-800);
	z-index: 1;
}

.feature-icon {
	font-size: 40px;
}

.main-page-title {
	display: flex;
	justify-content: center;
	font-size: 26px;
	font-weight: 700;
	flex-direction: column;
	position: relative;
	align-items: center;
	margin-bottom: 30px;
	color: var(--fsk-900);
	gap: 10px;
}

.feature-list .main-page-title {
	z-index: 1;
}

.main-page-title i {
	width: 40px;
	height: 40px;
	display: flex;
	padding: 5px;
	background: var(--fsk-site-color);
	border-radius: calc(var(--fsk-site-border) * 100);
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: white;
	box-shadow: 0 0 5px 1px #345cff;
}

.main-page-title img {
	height: 110px;
	width: 110px;
}

.page-title img {
	height: 110px;
	width: 110px;
}

.comments {
	padding-top: 50px;
	padding-bottom: 50px;
	background: var(--fsk-100);
}

.comment-list {
	gap: 20px;
}

.comment-box {
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.comment-top {
	display: flex;
	padding: 15px;
	border-bottom: 1px solid var(--fsk-300);
	justify-content: space-between;
}

.comment-top .star-group {
	color: var(--fsk-amber);
}

.user-comment {
	padding: 15px;
}

@media only screen and (max-width: 992px) {
	.m-hidden {
		display: none !important;
	}
}

.bold-strike {
  position: relative;
  display: inline-block;
}

.login-box .l-pass {
    border-left: 1px solid var(--fsk-100);
    background: var(--fsk-300);
    display: flex;
    align-items: center;
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    padding: 0 7px;
    border-radius: 0 calc(var(--fsk-site-border)) calc(var(--fsk-site-border)) 0;
    font-size: 10px;
    height: 48px;
}

.home-seperator {
    background: linear-gradient(180deg, rgba(0, 119, 254, 0) 0, var(--fsk-site-color) 100%);
    height: 220px;
    position: absolute;
    margin-top: -220px;
    opacity: .10;
    width: -webkit-fill-available;
    z-index: -1;
}

.home-section .home-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    transform: rotate(180deg);
}

.home-animations svg:nth-child(1) {
    position: absolute;
    top: 400px;
    left: 100px;
    z-index: -1;
    max-width: 50px;
}

.home-animations svg:nth-child(2) {
    position: absolute;
    top: 200px;
    left: 250px;
    z-index: -1;
}

.home-animations svg:nth-child(3) {
    position: absolute;
    top: 350px;
    right: 150px;
    z-index: -1;
}

.home-animations svg:nth-child(4) {
    position: absolute;
    top: 150px;
    right: 300px;
    max-width: 35px;
    z-index: -1;
}

.home-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.home-features .home-features-item {
    width: max-content;
    border-radius: 100px;
    background: var(--fsk-100);
    border: 1px solid var(--fsk-200);
    padding: 2px 10px 2px 3px;
}

.home-features .home-features-item .title {
    display: flex;
    align-items: center;
    gap: 7px;
}

.home-features .home-features-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(52 92 255 / 13%);
    color: var(--fsk-site-color);
    width: 29px;
    height: 29px;
    line-height: 29px;
    border-radius: 100px;
}

.home-features .home-features-item p {
    color: var(--fsk-800);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.home-glow {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 50%;
	height: 50%;
	transition: .14s ease;
	background: rgb(52 92 255 / 13%);
	border-radius: 100px;
	filter: blur(100px);
	z-index: -1
}

#home-features {
    position: relative;
    padding-top: 0px;
}

#home-growth .growth-bg {
	background: rgb(52 92 255 / 13%);
	padding: 25px 25px 0 25px;
	border-radius: 15px;
	position: relative;
	overflow: hidden
}

#home-growth .growth-start-bg {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

#home-growth .growth-start-bg svg {
	width: 1200px;
	height: 800px
}

#home-growth .growth-bg::before {
	content: "";
	position: absolute;
	top: 0%;
	right: 30%;
	width: 60%;
	height: 80%;
	transform: translate(100%, 60%) scale(1.25);
	transition: .14s ease;
	background: rgb(40, 203, 105);
	background: linear-gradient(120deg, rgb(52 92 255 / 13%) 0%, var(--fsk-site-color) 100%);
	border-radius: 100px;
	filter: blur(100px);
	z-index: 0;
}

#home-growth .growth-wrapper {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 25px;
	margin-top: 50px;
	position: relative;
	z-index: 1
}

#home-growth .growth-wrapper nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 15px
}

#home-growth nav .growth-tag {
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--fsk-100);
	border: 1px solid var(--fsk-200);
	border-radius: 15px;
	color: var(--fsk-800);
	padding: 10px 15px;
	cursor: pointer
}

#home-growth nav .growth-tag i {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgb(52 92 255 / 13%);
	width: 28px;
	height: 28px;
	border-radius: 100px;
	color: var(--fsk-site-color)
}

#home-growth nav .growth-tag.active i {
	background: var(--fsk-800);
	color: var(--fsk-site-color)
}

#home-growth nav .growth-tag.active,
#home-growth nav .growth-tag.active:hover {
	background: var(--fsk-site-color);
	border-color: var(--fsk-site-color);
	color: var(--fsk-800)
}

#home-growth nav .growth-tag:hover {
	background: var(--fsk-200);
}


#home-growth .social-buttons {
	display: flex;
	justify-content: center;
	gap: 5px;
	border-radius: 100px;
	max-width: 249px;
	padding: 5px;
	width: 100%;
	height: auto;
	background: var(--fsk-100);
	border: none;
	margin: auto
}

#home-growth .social-buttons .before,
#home-growth .social-buttons .after {
	flex: 1;
	text-align: center;
	box-shadow: none;
}

#home-growth .social-buttons .before button,
#home-growth .social-buttons .after button {
	color: var(--fsk-800);
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
	width: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
}

#home-growth .social-buttons button:hover {
	color: var(--fsk-site-color)
}

#home-growth .social-buttons .before.active button,
#home-growth .social-buttons .after.active button {
	color: var(--fsk-800)
}

#home-growth .before.active,
#home-growth .after.active {
	background: var(--fsk-site-color);
	border-radius: 100px;
	position: relative;
}

#home-growth .social-growth-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
	margin: 30px auto 0 auto;
	max-width: 405px;
	width: 100%;
	background: var(--fsk-100);
	height: unset;
	padding-top: 20px;
	border: 1px solid var(--fsk-200);
	border-bottom: 0;
	border-radius: 20px 20px 0px 0px
}

#home-growth .sgb-avatar {
	width: 94px;
	height: 94px;
	border-radius: 50%;
	background: #f09433;
	background: -moz-linear-gradient(45deg, #ffc107 25%, #dc2743 50%, #d100c3 100%);
	background: -webkit-linear-gradient(45deg, #ffc107 25%, #dc2743 50%, #d100c3 100%);
	background: linear-gradient(45deg, #ffc107 25%, #dc2743 50%, #d100c3 100%);
	padding: 3px;
	margin-right: 25px;
	flex-shrink: 0
}

#home-growth .sgb-avatar img {
	border-radius: 50%;
	max-width: 100%;
	width: 88px;
	height: 88px;
	border: 3px solid var(--fsk-200)
}

#home-growth .sgb-user {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	text-align: center;
	width: 100%;
}

#home-growth .sgb-user span {
	color: var(--fsk-800);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
}

#home-growth .sgb-row {
	flex-direction: row;
	display: flex;
	margin-top: 15px;
	max-width: 373px;
	width: 100%;
	justify-content: space-between
}

#home-growth .sgb-stats {
	display: flex;
	flex-direction: row;
	gap: 30px;
	align-content: center;
	color: var(--fsk-600);
	font-weight: 400;
	font-size: 12px;
	margin-top: 15px;
	text-align: center;
	align-items: center;
	margin-top: 0px;
}

#home-growth .sgb-numbers {
	color: var(--fsk-800);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
}

#home-growth .sgb-posts,
#home-growth .sgb-followers,
#home-growth .sgb-following {
	display: flex;
	flex-direction: column;
	align-content: center;
	line-height: 16px;
}

#home-growth .sgb-following span,
#home-growth .sgb-followers span {
	color: var(--fsk-600);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
}

#home-growth .sgb-following span:last-child,
#home-growth .sgb-followers span:last-child {
	color: var(--fsk-800);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
}

#home-growth .sgb-following span {
	font-weight: 500;
}

#home-growth .sgb-following {
	color: var(--fsk-600);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
}

#home-growth .nowGrowth {
	background: #10b981;
	color: var(--fsk-800) !important;
	padding: 8px;
	border-radius: 8px;
	animation: fadeIn 1.5s;
}

#home-growth .sgb-info {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 8px;
	line-height: 21px;
	color: var(--fsk-600);
	margin-top: 16px;
	max-width: 373px;
	width: 90%;
}

#home-growth .sgb-name {
	color: var(--fsk-600);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
}

#home-growth .sgb-desc {
	color: var(--fsk-800);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

#home-growth .sgb-buttons {
	display: flex;
	gap: 10px;
	max-width: 373px;
	width: 100%;
	margin-top: 16px;
	justify-content: center
}

#home-growth .btn-start-growth button {
	width: 163px;
	border: none;
	background: var(--fsk-site-color);
	border-radius: 8px;
	padding: 8px 10px;
	color: var(--fsk-800);
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
}

#home-growth .btn-message button {
	width: 163px;
	border: none;
	background: transparent;
	border-radius: 8px;
	padding: 8px 10px;
	color: var(--ts);
	font-weight: 700;
	border: 1px solid var(--fsk-600);
	font-size: 14px;
	font-style: normal;
	line-height: 16px;
}

#home-growth .btn-arrow {
	background: transparent;
	border-radius: 8px;
	border: 1px solid var(--fsk-600);
	color: var(--fsk-600);
	cursor: pointer;
	padding: 4px 10px;
}


#home-growth .sgb-toolbar {
	margin-top: 14px;
	max-width: 405px;
	width: 100%;
	border-top: 1px solid var(--fsk-200);
}

#home-growth .sgb-toolbar ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 5px 0;
	margin: 0;
	justify-content: center;
}

#home-growth .sgb-toolbar ul li {
	text-align: center;
	padding: 0;
	width: 33%;
  	margin: 0
}

#home-growth .sgb-toolbar ul li:first-child {
	border-bottom: 3px solid var(--fsk-site-color);
}

#home-growth .before button,
#home-growth .after button {
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	width: 100%;
}

#home-services {
	margin-top: 30px;
}

.step-wrapper {
		margin-top: 15px;
	}

	.step-card {
		grid-template-columns: 1fr
	}

	.step-card .step-start {
		min-height: 530px;
		border-radius: 15px;
		padding: 0 15px;
	}

	.step-card .step-end {
		justify-content: center;
		align-items: center;
		text-align: center;
		border-radius: 15px;
		padding: 15px;
		gap: 15px;
		margin-top: 10px
	}

	.step-card .step-end h3 {
		font-size: 28px;
		margin-bottom: 0
	}

	.step-card .step-end p {
		margin-bottom: 0
	}

.home-section {
	padding-top: 110px;
	overflow: hidden;
	position: relative;
}

#home-services .faq-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px
}

.particle-animation {
	position: absolute;
	height: 100%;
	width: 100%;
	margin-top: -120px;
	z-index: -1;
}

.home-section-content {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}

.home-section-content::before {
	content: "";
	width: 300px;
	height: 250px;
	position: absolute;
	filter: blur(0px);
	margin-top: -250px;
	z-index: -1;
}

.home-title {
	font-size: 38px;
	color: var(--fsk-900);
	font-weight: 600;
	margin: 0px;
}

.home-title span {
    background: var(--fsk-site-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    position: relative;
}

.sidebar-menu-item .badge {
	display: flex;
	padding: 5px 15px;
	justify-content: center;
	background: var(--fsk-site-color) !important;
	border: none;
	line-height: 1;
	border-radius: calc(var(--fsk-site-border) * 1.5);
}

.badge {
	margin: 0px;
	background: var(--fsk-50);
	width: fit-content;
	padding: 5px 15px 5px 5px;
	border-radius: 100px;
	color: var(--fsk-900);
	border: 1px solid var(--fsk-100);
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}

.fsk-rtl .badge {
	padding: 8px 8px 8px 8px;
}

.badge i {
	width: 30px;
	height: 30px;
	background: var(--fsk-site-color);
	border-radius: calc(var(--fsk-site-border) * 100);
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

@media only screen and (max-width: 1024px) {
	.login-box-content {
		padding: 0px;
		gap: 15px;
		margin: 20px 0px;
		background: var(--fsk-100);
		padding: 15px;
		border-radius: calc(var(--fsk-site-border) * 2);
	}

	.home-left-list {
		display: flex;
		flex-direction: column;
		gap: 30px;
		position: relative;
		text-align: center;
		align-items: center;
	}

	footer {
		height: fit-content;
		display: flex;
		align-items: center;
		padding: 20px;
	}

	.footer-list {
		display: flex;
		gap: 20px;
		justify-content: space-between;
		align-items: center;
		color: var(--fsk-800);
		flex-direction: column;
	}

	.footer-link {
		display: flex;
		gap: 10px;
		flex-direction: column;
		align-items: center;
		padding: 20px 0px;
	}

	.footer-logo img {
		height: 30px;
		width: auto;
	}
}

@media only screen and (min-width: 1024px) {
	.login-box-content {
		padding: 0px;
		gap: 15px;
		margin: 20px 0px;
		background: var(--fsk-100);
		padding: 35px 20px;
		border-radius: 15px;
		height: unset;
        box-shadow: 0px 0px 50px 0px var(--fsk-100);
      	border: 1px solid var(--fsk-200);
	}

	.home-left-list {
		display: flex;
		flex-direction: column;
		gap: 30px;
		position: relative;
		text-align: center;
		align-items: center;
		width: 70vh;
	}

  .home-left-list p {
  		max-width: 600px
  }

	footer {
		display: flex;
		align-items: center;
		padding: 30px 0px;
	}

	.footer-list {
		display: flex;
		gap: 20px;
		justify-content: space-between;
		align-items: center;
		color: var(--fsk-800)
	}

	.footer-link {
		display: grid;
		gap: 20px;
		padding: 20px 0px;
		justify-content: center;
		grid-template-columns: repeat(5, 1fr);
	}

	.footer-logo img {
		height: 30px;
		width: auto;
	}
}

.footer-link-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

.site-gradient {
	display: flex;
	gap: 15px;
	border-radius: calc(var(--fsk-site-border) * 2);
	background: var(--fsk-site-gradient);
	transition: .14s ease;
	color: white;
}

.site-gradient:hover {
	background: var(--fsk-site-gradient);
	opacity: 0.8;
}

.login-box-form .g-recaptcha {
	display: flex;
}

.login-form-control {
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	border: none;
	background: var(--fsk-200);
	padding: 15px;
	color: var(--fsk-700) !important;
	display: block;
	background-image: none;
	border-radius: calc(var(--fsk-site-border));
	height: 50px;
}

.login-form-control:focus {
	border: none !important;
	outline: 0;
}

.login-form-control::-webkit-input-placeholder {
	color: var(--fsk-800)
}

.login-btn-group {
	display: flex;
	gap: 15px;
	width: 100%;
	height: 50px;
}

.login-remember {
	min-width: 50px;
	height: 100%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
	margin: 0px !important;
}

.login-resetpassword {
	min-width: 50px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border));
}

.login-signin-btn {
	width: 100%;
}

.login-btn {
	height: 100%;
}

.captchaBox {
	display: flex;
	justify-content: center;
	align-items: center;
}

.captcha-loading {
	display: flex;
	font-size: 26px;
	position: relative;
	animation: 1s spin linear infinite;
	justify-content: center;
	align-items: center;
}

.captcha-loading i {
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-work {
	padding: 50px 0px;
}

.payment-ysecret {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  padding: 2rem 0;
}

.payment-method-ysecret {
  display: flex;
  background: #2b2b2f00;
  flex-direction: column;
  align-items: center;
  background-color: #2b2b2f00;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

.payment-method-ysecret img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.payment-method-ysecret p {
  /* color: #ffffff; */
  margin: 0;
  font-size: 0.9rem;
}

.step-list {}

.step-box {
	background: var(--fsk-100);
	padding: 25px;
	border-radius: calc(var(--fsk-site-border) * 3);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	transition: .14s ease;
	margin-bottom: 20px;
}

.step-icon {
	width: 40px;
	height: 40px;
	font-size: 18px;
	background: var(--fsk-700);
	border-radius: calc(var(--fsk-site-border) * 100);
	top: -25px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	transition: .14s ease;
	color: var(--fsk-50);
}

.step-text {
	text-align: center;
	padding-bottom: 35px;
}

.step-number {
	position: absolute;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	border-radius: calc(var(--fsk-site-border) * 2);
	justify-content: center;
	background: var(--fsk-700);
	color: var(--fsk-50);
	bottom: 5px;
	right: 5px;
	font-size: 18px;
	transition: .14s ease;
}

.step-box:hover .step-number {
	background: var(--fsk-site-color);
	color: white;
}

.step-box:hover .step-icon {
	background: var(--fsk-site-color);
	color: white;
}

.faq-box {
	background: #20202400;
	padding: 0px 0px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-header {
	background-color: var(--fsk-100);
	color: var(--fsk-800);
	cursor: pointer;
	padding: 20px;
	position: relative;
	border-radius: calc(var(--fsk-site-border) * 2);
	transition: .14s ease;
	border-color: var(--fsk-300);
}

.faq-item.active .faq-header {
	border-radius: calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0px 0px;
	border-bottom: 1px solid var(--fsk-400);
	background: var(--fsk-400);
}

.faq-header:hover {
	background-color: var(--fsk-400);
}

.faq-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.3s;
	font-size: 28px;
}

.fsk-rtl .faq-icon {
	position: absolute;
	left: 20px;
	right: auto;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.3s;
	font-size: 28px;
}

.faq-item.active .faq-icon {
	transform: translateY(-50%) rotate(0deg);
}

.faq-content {
	display: none;
	padding: 10px;
}

.faq-item.active .faq-content {
	display: block;
	animation: slide-down 0.5s ease;
	background: var(--fsk-200);
	padding: 20px;
	border-radius: 0px 0px calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2);
}

@keyframes slide-down {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sms-verify {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 336px;
	gap: 10px;
	justify-content: center;
}

.verify-title {
	font-size: 32px;
	color: var(--fsk-900)
}

.verification-screen input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0
}

.verify-small-text {
	font-size: 16px;
	color: var(--fsk-500)
}

.verify-form form {
	gap: 10px;
	display: flex;
	flex-direction: column
}

.verify-input {
	align-items: center;
	display: flex;
}

.verify-aminate {
	width: 100px
}

.error-aminate {
	animation: 3s ease-in-out forwards scaleAminate
}

.lock-animate {
	animation: .3s ease-in-out forwards lockAminate
}

.verify-input-box {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 10px
}

.verify-input {
	max-width: 20px;
	font-size: 18px;
	justify-content: center;
	background: var(--fsk-100);
	border: 1px solid var(--fsk-200);
	-moz-appearance: textfield;
	display: flex;
	align-items: center;
	text-align: center;
}

.sms-verify input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.blog-list {}

.blog-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--fsk-100);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 3);
}

.blog-title {
	color: var(--fsk-900);
	font-size: 16px;
	font-weight: 600;
}

.blog-image {
	width: 100%;
}

.blog-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.blog-text {}

.blog-box .btn {
	justify-content: center;
}

.blog-top {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
}

.blog-view-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
}

.blog-view-image img {
	width: 100%;
	object-fit: cover;
	opacity: 0.5;
	height: 100%;
}

.blog-view-title {
	z-index: 1;
	color: var(--fsk-900);
}

.blog-content {
	background: var(--fsk-100);
	padding: 15px;
	border-radius: calc(var(--fsk-site-border) * 2);
	margin-top: 20px;
	margin-bottom: 20px;
}

.announcements-box {
	position: fixed;
	width: 350px;
	right: -400px;
	bottom: -300px;
	background: var(--fsk-100);
	border: 3px solid var(--fsk-200);
	z-index: 4;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: .14s ease;
	margin: 10px;
	border-radius: calc(var(--fsk-site-border) * 4);
}

.announcements-box.active {
	right: 0;
	top: 0;
	bottom: 0;
}

.announcements-top i {
	width: 30px;
	height: 30px;
	background: var(--fsk-300);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: calc(var(--fsk-site-border));
	cursor: pointer;
}

.announcements-top i:hover {
	background: var(--fsk-400);
}

.announcements-top {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	align-items: center;
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
}

.announcements-item {
	display: flex;
	flex-direction: column;
	padding: 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 2);
	gap: 5px;
}

.announcements-item-top {
	display: flex;
	flex-direction: column;
}

.announcements-title {
	font-size: 16px;
	color: var(--fsk-700);
}

.announcements-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.announcements-date {
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border));
	background: var(--fsk-300);
}

.announcements-stats {
	background: var(--fsk-site-color);
	padding: 5px 10px;
	border-radius: calc(var(--fsk-site-border));
	color: white;
}

.notify-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: auto;
	border-radius: calc(var(--fsk-site-border) * 2);
}

.header-btn-box i {
	cursor: pointer;
}

.popupaciklama {
	background: var(--fsk-100);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
	max-height: 200px;
	overflow: auto;
}

.bottom-navigaiton {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--fsk-100);
    border-top: 1px solid var(--fsk-200);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 0;
    gap: 0;
    z-index: 3;
}


.voice-animation {
	display: none;
}

.voice-animation.active {
	position: fixed;
	inset: 0;
	z-index: 5;
}

.voice-animation.active {
	background: rgb(255 255 255 / 74%);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	display: flex;
	align-items: center;
	justify-content: center;
}

html.dark .voice-animation.active {
	background: rgb(0 0 0 / 74%);
}

.voice-animation-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.voice-text {
	font-size: 36px;
	font-weight: 600;
	color: var(--fsk-900);
}

.bottom-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: calc(var(--fsk-site-border) * 2);
	font-size: 12px;
	gap: 5px;
	line-height: 1;
	padding: 10px 0px;
}

.bottom-item i {
	font-size: 18px;
}

.bottom-item .badge {
	display: none;
}

.bottom-item.active {
	color: var(--fsk-site-color);
}

.bottom-item-name {
	white-space: nowrap;
}

#voice-text {
	transition: all 0.5s ease;
	opacity: 0;
	transform: translateY(-20px);
}

#voice-text.show {
	opacity: 1;
	transform: translateY(0);
	text-align: center;
}
.voice-loading {
  display: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--fsk-500);
  text-align: center;
  margin-top: 12px;
  font-style: normal;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.voice-loading.show {
  display: flex;
}

.voice-loading-icon {
  font-size: 20px;
  animation: iconBounce 1.2s ease-in-out infinite;
  color: var(--fsk-500);
}

#voice-text-status {
  color: var(--fsk-500);
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-6px); opacity: 1; }
}



.wallet-hevo {
	font-size: 14px;
	padding: 10px 10px;
	background: var(--fsk-200);
	border-radius: calc(var(--fsk-site-border) * 1.5);
	cursor: pointer
}


/* New CSS Codes */
.currencyHidder {
	position: absolute;
	z-index: 9;
	right: 0;
	top: 0;
	height: 100%;
	background: var(--fsk-site-color);
	border: none;
	border-radius: 0px calc(var(--fsk-site-border) * 2) calc(var(--fsk-site-border) * 2) 0px;
}

.currencyHidder .hide {
	display: none;
}

.currencyHidder span i {
	font-size: 16px;
	color: var(--fsk-700);
}

.filter_wraper a.filter_item {
	padding: 10px 15px;
    background: var(--fsk-200);
    border-radius: calc(var(--fsk-site-border)* 2);
    align-items: center;
    cursor: pointer;
    width: auto;
    display: flex;
    align-items: center;
    gap: 5px;
	text-wrap: nowrap;
}

.filter_wraper {
    display: flex;
    gap: 5px;
	overflow: auto;
}

.btn-main.bg-primary{
	background: var(--fsk-site-color);
    color: white;
}

.account-detail-box {
	max-height: 0;
	width: 0;
	overflow: hidden;
	padding: 15px;
	display: none;
	right: 10px;
	top: 0;
	margin-top: 75px;
	border-radius: calc(var(--fsk-site-border) * 4);
	background: var(--fsk-100);
	position: absolute;
	border:3px solid var(--fsk-200);
	margin-right: 10px;
	-webkit-backdrop-filter: blur(0) !important;
	z-index: 10;
}

.account-detail-box.active{
	display: block;
	height: auto;
	width: auto;
	min-width: 300px;
	max-height: inherit;
}


.account-detail-box.active img.profile-image {
	width: 40px;
	height: 40px;
	display: block ;
}

.prodile-box, .stats-balance {
	align-items: center;
	display: flex;
	gap: 8px;
}

.account-detail-box .user-name {
	display: flex;
	flex-direction: column;
	color: var(--fsk-800) ;
}

.profile-button {
    padding: 10px 15px;
    display: flex;
    background: var(--fsk-200);
    color: var(--fsk-800);
    border-radius: calc(var(--fsk-site-border)* 2);
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1;
    gap: 10px;
    /* border: 1px solid var(--fsk-400); */
}

.account-detail-box .profiler-btn .btn {
	display: flex;
	margin-top: 20px;
	font-size: 16px;
	border-radius: calc(var(--fsk-site-border * .5));
	justify-content: center;
	background: #b52626;
	color: #ffffff;
	padding: 15px 10px;
	font-weight: 500;
}


.filter_wraper::-webkit-scrollbar  {
	height: 5px;
  }

@media only screen and (max-width: 1025px){
	
	.currencyHider_btn_phn{
		display: inline-block;
		background: none;
		border: none;
		font-size: 14px;
		margin: 0;
		padding: 0;
		color: var(--fsk-700);
	}
	.currencyHider_btn_phn span{
		color: var(--fsk-700)!important;
		filter: invert(1) brightness(0)
	}
	.d-none-ph{
		display: none;
	}
	.neworder-top {
		flex-wrap: wrap;
		gap: 10px;
	}
}


@media only screen and (max-width: 1024px) {
    .account-detail-box.active {
        position: fixed;
        background: var(--fsk-100);
        padding: 20px;
        border-radius: calc(var(--fsk-site-border)* 4) calc(var(--fsk-site-border)* 4) 0 0;
        visibility: visible;
        opacity: 1;
        z-index: 10;
        bottom: 0;
        left: inherit;
        right: 0;
		top: inherit;
		margin: 0;
        gap: 10px;
		width: calc(100% - 48px);
    }
}

@media only screen and (max-width:550px) {
	.stats-box-inner .icon img {
		width: 40px;
	}
	.stats-box {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.stats-box-inner{
		width: 100%;
		padding: 0px 10px;
	}
	.stats-box-list{
		gap: 10px;
	}
	.stats-text {
		font-size: 14px;
        margin-bottom: 0px;
        margin-top: 20px;
    }
	.stats-name {
		font-size: 12px;
		margin-top: 5px;
		margin-bottom: 10px;
	}
	.filter_wraper::-webkit-scrollbar  {
		height: 3px;
	  }
	
}

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  #statistics-content {
	max-height: 50vh;
	overflow: auto;
	display: flex;
	padding-bottom: 15px;
	background: var(--fsk-100);
	padding: 10px;
	border-radius: calc(var(--fsk-site-border) * 2);
}

#statistics-content::after {
	position: absolute;
	bottom: 15px;
	width: 100%;
	height: 20px;
	margin-left: -15px;
	background: linear-gradient(360deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
	box-sizing: border-box
}

#statistics-content::before {
	position: absolute;
	width: 100%;
	height: 20px;
	z-index: 1;
	margin-left: -15px;
	background: linear-gradient(180deg, var(--fsk-50) 0, rgb(0 0 0 / 0) 100%);
	box-sizing: border-box;
	margin-top: -10px
}
  
@media only screen and (min-width: 1024px) {
  .modal-content.statistics-modal {
    width: 80%;
  }
}
		body.chat-open {
            overflow: hidden;
        }
        .chat-float-btn {
  position: fixed;
  top: 50%;
  right: 20px;
  font-size: 26px;
  transform: translateY(-50%);
  background: var(--fsk-site-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: grab;
  z-index: 9999;
  transition: transform 0.3s ease;
  touch-action: none;
}

          .chat-float-btn:active {
            cursor: grabbing; 
          }

        .chat-float-btn:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .chat-float-btn .notif {
            position: absolute;
            top: 6px;
            right: 6px;
            background: red;
            color: white;
            font-size: 12px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chat-panel {
            pointer-events: none;
            position: fixed;
            transform: scale(0.9);
            width: 280px;
            background: #f4f4f4;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            z-index: 9998;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .chat-panel.open {
            transform: scale(1);
  			pointer-events: auto;
            opacity: 1;
        }


        .chat-header {
            background: var(--fsk-site-color);
            color: white;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            background: white;
            padding: 4px;
            border: 2px solid white;
        }

        .chat-header .details {
            flex: 1;
        }

        .chat-header .details strong {
            display: block;
        }

        .chat-body {
            padding: 16px;
            background: white;
        }

        .chat-body .message {
            background: #d1eaff;
            padding: 12px;
            border-radius: 12px;
            font-size: 14px;
        }

        .chat-footer {
            text-align: center;
            padding: 12px;
            background: #fff;
        }

        .chat-footer a {
            display: inline-block;
            margin: 0 8px;
            font-size: 24px;
            color: #555;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .chat-footer a:hover {
            transform: scale(1.2);
            color: var(--fsk-site-color);
        }
      
        .chat-footer #resetPositionBtn {
            float: right;
            margin-top: 8px;
            font-size: 12px;
            padding: 6px 14px;
            border-radius: 6px;
            background: var(--fsk-site-color);
            color: white;
            border: none;
            cursor: pointer;
          }


          @media screen and (max-width: 768px) {
          .chat-float-btn {
            top: auto;
            bottom: 20px;
            left: auto;
            right: 20px;
            transform: none;
          }
        }

        .chat-header .close-btn {
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

.notify-bell-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}

.pulse-bell {
  font-size: 20px;
}

.notify-badge {
  position: absolute;
  top: -4px;
  right: 0px;
  background: #ff3b3b;
  color: white;
  font-size: 8px;
  font-weight: bold;
  padding: 3px 3px;
  border-radius: 999px;
  line-height: 1;
  min-width: 16px;
  text-align: center;
  display: none;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes bellPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px 0;
    border-radius: calc(var(--fsk-site-border) * 2);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
    background: var(--fsk-200);
    border-radius: calc(var(--fsk-site-border) * 2);
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--fsk-300);
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background: var(--fsk-100);
    padding: 0 15px;
}

.accordion-body.open {
    max-height: 300px;
    opacity: 1;
    padding: 15px;
    margin-top: 3px;
}

.addfunds-pagination {
            background: var(--fsk-200);
            padding: 5px;
            border-radius: calc(var(--fsk-site-border) * 2);
            display: flex;
            gap: 5px;
            justify-content: space-between
        }

        .addfunds-pagination button {
            border: 0;
            background: var(--fsk-300);
            color: var(--fsk-700);
            width: 100%;
            border-radius: calc(var(--fsk-site-border));
            cursor: pointer;
            padding: 4px
        }

        .addfunds-pagination button.active {
            background: var(--fsk-site-color);
            color: white
        }

.wizard-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
}


.wizard-step {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  background: #2d2d2d;
  color: #aaa;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #444;
}

.wizard-step.step-active {
  background-color: var(--fsk-site-color);
  color: #fff;
  border-color: var(--fsk-site-color);
}

.wizard-note {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--fsk-site-color);
  padding: 0.75rem 1rem;
  color: #ccc;
  border-radius: 6px;
  font-size: 13px;
  white-space: pre-line;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .modal-content.xl-modal {
    width: 80%;
  }
}
.form-upload-wrapper {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-left: 3px solid var(--fsk-site-color);
  border-radius: 6px;
  margin-top: 1rem;
}

.styled-file-input {
  background-color: #1f1f1f;
  border: 1px solid #333;
  padding: 8px;
  color: #ccc;
  border-radius: 6px;
  margin-top: 6px;
}

.payment-loader-ring {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid var(--fsk-site-color);
  border-radius: 50%;
  border-top-color: transparent;
  animation: payment-spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes payment-spin {
  to {
    transform: rotate(360deg);
  }
}

#manual-method.form-control {
  padding: 12px 15px;
  height: auto;
  background-color: var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 2);
  color: inherit;
  font: inherit;
}

.rewards-list {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 24px 24px;
	flex: 1 0 0;
	flex-wrap: wrap;
	padding: 0px;
	margin: 0px;
	animation: scrollAnimation 20s linear infinite;
}

.rewards-amount {
	color: #10b981;
	font-size: 14px;
	margin: 0px;
	font-weight: 700;
}

.rewards-box {
	height: 80px;
	flex: 1;
	overflow: hidden;
	max-width: 500px
}

.rewards-item {
	padding: 2px 5px;
	border-radius: 5px
}

.rewards-item i {
	width: 15px;
	margin-right: 5px;
	border-radius: 100%
}

.rewards-username {
	color: var(--tw);
	font-size: 14px;
	font-weight: 500;
	margin: 0px;
}

@keyframes scrollAnimation {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-100%);
	}
}

.share-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: var(--radius);
	border: 1px solid rgb(53, 10, 109, 1);
	background: #210c53;
	margin-bottom: 10px;
	padding: 24px;
	position: relative;
	overflow: hidden
}

.share-box::before {
	content: "";
	position: absolute;
	top: -60%;
	right: 100%;
	width: 60%;
	height: 50%;
	transform: translate(100%, 60%) scale(1);
	transition: .14s ease;
	background: rgb(40, 203, 105);
	background: linear-gradient(120deg, rgb(157, 0, 241, 1) 0%, transparent 100%);
	border-radius: 100px;
	filter: blur(60px);
	z-index: 0;
}

.share-box::after {
	content: "";
	position: absolute;
	top: 70%;
	right: 30%;
	width: 60%;
	height: 50%;
	transform: translate(100%, 60%) scale(1);
	transition: .14s ease;
	background: rgb(40, 203, 105);
	background: linear-gradient(120deg, rgb(157, 0, 241, 1) 0%, transparent 100%);
	border-radius: 100px;
	filter: blur(60px);
	z-index: 0;
}

.share-box h4,
.share-box p {
	position: relative;
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 0;
	z-index: 1
}

.share-box h4 {
	color: var(--tw)
}


.share-copy-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	max-width: 500px;
	width: 100%;
	margin-top: 25px
}

.scb-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 45px;
	border-radius: 10px;
	padding: 8px 8px 8px 12px;
	width: 100%;
	background: #3a0a73
}

#home-diff {
  padding: 35px 10px;
}

.diff-card {
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
}

.diff-card .card-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.diff-item {
  flex: 1 1 320px;
  max-width: 380px;
  border-radius: 20px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .3s ease;
}

.diff-item .diff-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.diff-item .title {
  font-size: 22px;
  font-weight: 700;
}

.diff-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.diff-body-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.diff-footer {
  margin-top: auto;
  text-align: center;
}

.diff-footer-result {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.diff-footer-result span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #345cff;
}

.diff-footer small {
  font-size: 13px;
}

.icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-box-danger {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4d4d;
}

.icon-box-success {
  background: rgba(0, 200, 100, 0.15);
  color: #00e676;
}

.diff-our {
  border: 2px solid #345cff;
  position: relative;
  box-shadow: 0 0 20px rgb(42 71 189 / 9%);
}

.diff-our .diff-bottom {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 6px;
  background: #345cff;
  border-radius: 3px;
}

html.dark {
  --color-bg: #12151f;
  --color-card: #1e2634;
  --color-text: #cfd5e3;
  --color-title: #ffffff;
  --color-muted: #9ba3b8;
  --color-accent: #aa56ff;
}

html.dark .diff-item {
  background: #202024;
  color: var(--color-text);
}

html.dark .diff-item .title {
  color: var(--color-title);
}

html.dark .diff-footer small {
  color: var(--color-muted);
}

html.light {
  --color-bg: #ffffff;
  --color-card: #f9f9fb;
  --color-text: #444;
  --color-title: #111;
  --color-muted: #777;
  --color-accent: #aa56ff;
}

html.light .diff-item {
  background: var(--color-card);
  color: var(--color-text);
  border: 1px solid #e1e1e1;
}

html.light .diff-item .title {
  color: var(--color-title);
}

html.light .diff-footer small {
  color: var(--color-muted);
}

.c-reviews .slick-track {
    display: flex;
    align-items: center;
    gap: 30px
}

.review-wrapper {
    background: rgb(52 92 255 / 13%);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 35px 25px;
    border-radius: 15px;
    margin-top: 50px;
    position: relative;
}

.review-wrapper .review-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

.review-wrapper .review-bg svg {
    width: 100%;
}

.review-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 75px;
    margin: 0 auto 35px auto;
    background: rgb(255, 0, 0 , .15);
    border-radius: 15px;
    width: max-content;
    padding: 10px 20px;
    border: 1px dashed var(--fsk-100);
    position: relative;
    z-index: 2;
}

.review-platforms .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.review-item {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: var(--fsk-100);
	border-radius: 15px;
	padding: 20px 15px;
	border: 1px solid var(--fsk-200);
	box-shadow: 0px 0px 50px 0px var(--fsk-50)
}

.review-item .review-top {
	display: flex;
	align-items: center;
	gap: 5px
}

.review-item .review-top .review-name {
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	color: var(--fsk-800);
	white-space: nowrap
}

.review-item .review-top .review-verify {
	font-size: 12px;
	font-weight: 300;
	color: var(--fsk-600);
	white-space: nowrap
}

.review-item .review-top .review-verify svg {
	margin-top: -2px
}

.review-item .review-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--fsk-200);
	padding-bottom: 10px
}

.review-item .review-head .review-user {
	display: flex;
	flex-direction: column
}

.review-item .review-head .review-vote {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 600;
	background: #36ff34b8;
	color: var(--fsk-800);
	padding: 2px 5px;
	border-radius: 5px;
	box-shadow: rgba(255, 255, 255, .5) 0 1px 0 0 inset
}

.review-item .review-head .review-vote i {
	font-size: 11px
}

.review-item .review-text {
	font-size: 13px;
	font-weight: 300;
	color: var(--fsk-600)
}

.review-item .review-text p {
	margin-bottom: 5px
}

.review-platforms {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 75px;
	margin: 0 auto 35px auto;
	background: rgb(52 92 255 / 13%);
	border-radius: 15px;
	width: max-content;
	padding: 10px 20px;
	border: 1px dashed var(--fsk-100);
	position: relative;
	z-index: 2
}

.review-platforms .item>div {
	height: 40px
}

.review-platforms .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px
}

.review-platforms .item span {
	color: var(--fsk-800)
}

#home-review {
    margin-top: 30px;
}

    .review-platforms {
        gap: 30px;
        padding: 10px 20px;
        font-size: 12px;
    }

  	.review {
        padding: 50px 0;
    }

.youtube-wrapper {
	display: flex;
  	align-items: center;
  	gap: 25px;
  	margin-top: 50px
}

.youtube-wrapper .well {
	width: 100%
}

.youtube-wrapper iframe {
  	border-radius: 15px
}
.integration-fixed.integration-fixed__bottom-right {
	bottom: 65px !important;
	left: 0 !important;
}
@media only screen and (max-width: 1023.99px) {
  .youtube-wrapper {
      flex-direction: column;
      margin: 25px 15px;
      gap: 15px
  }
  #userLevel .level-wrapper {
      grid-template-columns: 1fr;
      gap: 15px;
      height: 100vh;
      overflow: auto;
  }
  #userLevel  .modal-content {
        bottom: auto;
        transition: .14s ease;
        top: 0;
   }
   .home-section .home-bg {
        display: none;
    }
 .home-title {
    font-size: 18px;
  }
    .home-left-list {
        gap: 15px;
    }
.home-animations svg:nth-child(1) {
        top: 100px;
        right: 25px;
    }
      .home-animations svg:nth-child(3) {
        top: 250px;
        left: 100px;
    }
    .home-features {
        flex-direction: column;
        gap: 5px;
        margin: 15px 0 0 0;
    }
	
	.step-wrapper {
	margin-top: 25px
}

.step-card {
	background-color: var(--fsk-50) !important;
	border-radius: 15px;
	overflow: hidden;
	padding: 10px;
	display: grid !important;
	grid-template-columns: 1fr 1fr
}

.step-card .step-start {
	min-height: 530px;
	background-color: var(--fsk-100);
	border-radius: 15px 0 0 15px;
	border: 1px solid var(--fsk-200);
	border-right: none;
	position: relative;
	overflow: hidden;
	pointer-events: none;
}

.step-card .step-start-bg {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 510px;
	height: 530px;
}

.step-card .step-start-bg svg {
	width: 510px;
	height: 530px;
}

.step-item {
	border-radius: 15px;
    border: 1px solid var(--fsk-200);
    background-color: var(--fsk-100);
    display: flex;
    flex-direction: column;
    z-index: 2;
	padding: 32px 40px;
	width: 100%;
	max-width: 348px;
	border-radius: 25px;
	box-shadow: 0px 16.488px 64.446px 0px rgba(0, 0, 0, .03);
	text-align: center;
	user-select: none;
	pointer-events: none
}

.step-item .icon-box {
	background: var(--fsk-200);
	width: 52px;
	height: 52px;
	color: var(--fsk-site-color);
	font-size: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px
}

.step-item .title {
	color: var(--fsk-800);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -1px;
	margin: 0 0 12px
}

.step-item .text {
	color: var(--fsk-600);
	font-size: 12px;
	font-weight: 500;
	line-height: 120%
}

.step-item .skeleton {
	display: flex;
	flex-direction: column;
	gap: 4px
}

.step-item .skeleton-wrapper {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 48px 0 32px 0
}

.step-item .skeleton::before,
.step-item .skeleton::after {
	content: "";
	height: 14px;
	width: 100%;
	border-radius: 100px;
	background-color: var(--fsk-50)
}

.step-item .skeleton::before {
	background-color: var(--fsk-200);
	width: 40px
}

.step-item .box-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 0 32px 0
}

.step-item .step-box-2 {
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px;
	background-color: var(--fsk-200)
}

.step-item .box-icon {
	font-size: 14px;
	width: 40px
}

.step-item .box-icon svg,
.step-item .box-icon img {
	max-height: 30px;
	width: 34px
}

.step-item .box-icon i {
	font-size: 24px
}

.step-item .box-icon .fa-bitcoin {
	color: #f7931a
}

.step-item .step-box-2 .title {
	font-size: 13px;
	line-height: 20px;
	text-align: start;
	margin: 0
}

.step-item .step-box-2 .text {
	font-size: 13px;
	line-height: 18px;
	text-align: start
}

.step-card .step-end {
	border-radius: 0 15px 15px 0;
	border: 1px solid var(--fsk-200);
	padding: 50px 75px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 25px;
}

.step-card .step-end h3 {
	font-size: 32px;
  	margin: 0
}

.step-card .step-end h3 span {
	background: var(--fsk-site-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
	position: relative;
}


.text-header {
	display: inline-flex;
	padding: 4px;
	align-items: center;
	gap: 5px;
	border-radius: 100px;
	border: 1px solid var(--fsk-200);
	background: var(--fsk-100);
	box-shadow: 0px 0px 50px 0px var(--fsk-50);
	color: var(--fsk-800);
	text-align: center;
	font-size: 14px;
	font-style: normal;
	line-height: 100%;
}

.text-header .icon {
	background: rgb(52 92 255 / 15%);
	height: 32px;
	width: 32px;
	flex: 0 0 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--fsk-site-color);
	border-radius: 100px;
}

.text-header .text {
	padding: 0 10px;
	color: var(--fsk-800);
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
}

.home-glow {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 50%;
	height: 50%;
	transition: .14s ease;
	background: rgb(52 92 255 / 15%);
	border-radius: 100px;
	filter: blur(100px);
	z-index: -1
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.section-header .sh-wrapper {
    display: inline-flex;
    padding: 4px;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--fsk-200);
    background: var(--fsk-100);
    box-shadow: 0px 0px 50px 0px var(--fsk-50);
    color: var(--fsk-800);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    line-height: 100%;
}

.section-header .sh-wrapper .icon {
    background: rgb(52 92 255 / 15%);
    height: 32px;
    width: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--fsk-site-color);
    border-radius: 100px;
}

.section-header .sh-wrapper .text {
    padding: 0 10px;
    color: var(--fsk-800);
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 36px;
    letter-spacing: -1.25px;
  	margin: 0;
  	color: var(--fsk-800);
}

.section-header h2 span {
    background: var(--fsk-site-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
}

.step-card .step-end p {
	color: var(--fsk-800)
}

	.section-header h2 {
		font-size: 28px
	}
	#home-growth .growth-bg {
		padding: 10px 10px 0 10px;
	}

	#home-growth .growth-wrapper {
		margin-top: 15px
	}

	#home-growth .growth-wrapper nav {
		justify-content: flex-start;
		padding-bottom: 10px;
		overflow: auto
	}

	#home-growth .sgb-info {
		width: 100%;
	}

	#home-growth .sgb-row {
        width: 100%;
        justify-content: flex-start;
        max-width: 100%;
        gap: 15px;
	}

	#home-growth .sgb-row .sgb-avatar {
		margin-right: 0px;
	}

	.home-social-results .social-page {
		margin-top: 30px;
		box-shadow: none;
	}

	#home-growth .growth-tag {
		white-space: nowrap;
	}

	#home-growth .active {
		background: #FFF;
		color: #0D1012;
	}

	#home-growth .social-buttons {
		width: 100%;
        max-width: 250px;
        height: 40px;
		border-color: transparent;
	}

	#home-growth .before,
	#home-growth .after {
		width: 100%;
		text-align: center;
		border-radius: 83px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#home-growth .sgb-avatar {
		width: 54px;
		height: 54px;
		border-radius: 50%;
		background: #f09433;
		background: -moz-linear-gradient(45deg, #ffc107 25%, #dc2743 50%, #d100c3 100%);
		background: -webkit-linear-gradient(45deg, #ffc107 25%, #dc2743 50%, #d100c3 100%);
		background: linear-gradient(45deg, #ffc107 25%, #dc2743 50%, #d100c3 100%);
		padding: 3px;
		flex-shrink: 0
	}

	#home-growth .sgb-avatar img {
		width: 48px;
		height: 48px;
		margin-left: -.02px;
	}

	#home-growth .social-growth-box {
		width: 100%;
		max-width: 93%;
		padding-top: 16px;
		padding-left: 10px;
		padding-right: 10px;
		align-items: flex-start;
		border-radius: 10px;
		margin-top: 15px
	}

	#home-growth .sgb-buttons {
		width: 100%;
	}

	#home-growth .btn-message button,
	#home-growth .btn-start-growth button {
		width: 100%;
	}

	#home-growth .btn-start-growth,
	#home-growth .btn-message {
		flex: 1;
	}

	#home-growth .btn-arrow {
		display: flex;
		align-items: center;
	}

	#home-growth .sgb-toolbar ul {
		justify-content: flex-start;
	}

	#home-growth .sgb-stats {
		gap: 26px;
	}

	#home-growth .growth-tag:focus,
	#home-growth .growth-tag:hover {
		background: #FFFFFF;
		color: #0D1012;
	}

	#home-growth .btn-start-growth {
		width: 100%
	}
  
    .services-faq .faq-wrapper {
        gap: 5px;
    }
  
  .container {
      padding-right: var(--bs-gutter-x, .65rem);
      padding-left: var(--bs-gutter-x, .65rem);
      width: auto
  }  
  
  .main-header .container {
      width: 100%
  }  
    .review-platforms {
        gap: 30px;
        padding: 10px 20px;
        font-size: 12px;
    }

  .faq-list {
      grid-template-columns: 1fr
  }
}

.step-swiper {
	max-height: 530px;
}


.step-swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px
}

.features-box {
	display: flex;
	gap: 15px;
	background: var(--fsk-100);
	border-radius: 15px;
	padding: 25px 15px;
	border: 1px solid var(--fsk-200);
	box-shadow: 0px 0px 50px 0px var(--fsk-50)
}

.services-faq {
	margin-top: 50px
}

.services-faq .faq-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	align-self: stretch;
	flex-wrap: wrap;
}

.services-faq .faq-wrapper .faq-item {
	background: var(--fsk-100)!important;
	border: 1px solid var(--fsk-200);
	max-width: 360px;
	width: 100%;
	margin-bottom: 0;
	position: relative;
    cursor: pointer;
    background: transparent;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    color: var(--fsk-800);
    border-radius: 10px;  
}

.services-faq .faq-wrapper .faq-item .faq-content {
	background: var(--fsk-100);
	padding: 10px
}

.services-faq .faq-wrapper .faq-item .faq-head .faq-arrow {
	height: auto;
	line-height: unset
}

.services-faq .faq-wrapper .faq-item .faq-head .faq-arrow i {
	font-weight: 400
}

.faq-wrapper .faq-item.active .fa-angle-down,
.faq-wrapper .faq-item .fa-angle-up {
    display: none;
}

.faq-wrapper .faq-item.active .fa-angle-up {
    display: block;
}

.services-faq .faq-head,
.services-faq .faq-head h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
    font-weight: 400;
    color: var(--fsk-800);
    padding: 10px;
    line-height: 18px;
  	margin: 0
}

.services-faq .faq-head .fh-left {
	display: flex;
	align-items: center
}

.services-faq .faq-head .fh-left .icon i {
	min-width: 15px
}

.services-faq .faq-drop {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px
}

.services-faq .faq-drop a {
	display: flex;
	padding: 5px 10px;
	align-items: center;
	color: var(--fsk-800);
	font-size: 13px;
	border-radius: 8px;
	border: 1px solid var(--fsk-200);
	background: var(--fsk-50);
}

.services-faq .faq-drop a:hover {
	border: 1px solid var(--fsk-site-color);
}

.features-box .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	background: rgb(52 92 255 / 15%);
	color: var(--fsk-site-color);
	border-radius: 10px
}

.features-box .text h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--fsk-800);
  	margin: 0
}

.features-box .text p {
	font-size: 15px;
	font-weight: 300;
	color: var(--fsk-600);
	margin-bottom: 0
}

.features-swiper {
	margin-top: 0px;
}

.slider-controls .slide-pagination .swiper-pagination-bullet {
	width: 13px;
	height: 10px;
	display: inline-block;
	background: var(--fsk-site-color) !important;
	opacity: 0.2;
	margin: 0 5px;
	border-radius: 20px;
	transition: opacity 0.5s, background-color 0.5s, width 0.5s;
	transition-delay: 0.5s, 0.5s, 0s;
}

.slider-controls .swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.slider-controls .slide-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--fsk-800);
	width: 100px;
	transition-delay: 0s;
}












#home-works {
    position: relative;
    padding-top: 75px;
    padding-bottom: 75px;
    overflow: hidden;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 0 auto 50px;
    position: relative;
    z-index: 3;
}

.section-header .sh-wrapper {
        display: inline-flex;
        padding: 4px;
        align-items: center;
        border-radius: 100px;
        border: 1px solid var(--fsk-200, #dcdfe3);
        background: var(--fsk-100, #ebecee);
        color: var(--fsk-800, #3d3d43);
        font-size: 14px;
        line-height: 100%;
    }
    .section-header .sh-wrapper .icon {
        background: rgb(52 92 255 / 18%);
        height: 32px;
        width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--fsk-site-color, #345cff);
        border-radius: 100px;
    }
    .section-header .sh-wrapper .text {
        padding: 0 10px;
        font-weight: 600;
    }
    .section-header h2 {
        font-size: 36px;
        letter-spacing: -1.25px;
        margin: 0;
        color: var(--fsk-800, #3d3d43);
    }
    .section-header h2 span {
        background: var(--fsk-site-gradient, linear-gradient(90deg, #ff0000, #990000));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }
}

.step-wrapper { margin-top: 25px; }
.step-card {
    background-color: var(--fsk-50, #f9fafb) !important;
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.step-start {
    min-height: 530px;
    background-color: var(--fsk-100, #ebecee);
    border-radius: 15px 0 0 15px;
    border: 1px solid var(--fsk-200, #dcdfe3);
    border-right: none;
    position: relative;
    overflow: hidden;
    pointer-events: none;
}
.step-start-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 510px;
    height: 530px;
}
.step-start-bg svg {
    width: 510px;
    height: 530px;
}

/* Swiper vertical */
.step-swiper {
    max-height: 530px;
}
.step-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 530px !important;
}

.step-item {
    border-radius: 25px;
    border: 1px solid var(--fsk-200, #dcdfe3);
    background-color: var(--fsk-100, #ebecee);
    display: flex;
    flex-direction: column;
    padding: 32px 40px;
    width: 100%;
    max-width: 348px;
    box-shadow: 0px 16.488px 64.446px 0px rgba(0, 0, 0, .03);
    text-align: center;
    user-select: none;
}
.step-item .icon-box {
    background: var(--fsk-200, #dcdfe3);
    width: 52px;
    height: 52px;
    color: var(--fsk-site-color, #345cff);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.step-item .title {
    color: var(--fsk-800, #3d3d43);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -1px;
    margin: 0 0 12px;
}
.step-item .text {
    color: var(--fsk-600, #687282);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 20px;
}
.box-wrapper { display: flex; flex-direction: column; gap: 10px; padding: 20px 0 32px 0; }
.step-box-2 {
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px;
    background-color: var(--fsk-200, #dcdfe3);
}
.step-box-2 .box-icon { font-size: 14px; width: 40px; text-align: center; }
.step-box-2 .box-icon svg, .step-box-2 .box-icon img { max-height: 30px; width: 34px; }
.step-box-2 .box-icon i { font-size: 24px; }
.step-box-2 .title { font-size: 13px; line-height: 20px; text-align: start; margin: 0; }
.step-box-2 .text { font-size: 13px; line-height: 18px; text-align: start; }
.step-item .btn {
    margin-top: auto;
    width: 100%;
    background: var(--fsk-site-gradient, linear-gradient(90deg, #ff0000, #990000));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
}

.skeleton-wrapper { display: flex; flex-direction: column; gap: 32px; padding: 48px 0 32px 0; }
.skeleton { height: 14px; border-radius: 100px; background-color: var(--fsk-200, #dcdfe3); }
.skeleton:first-child { width: 40px; background-color: var(--fsk-200); }
.step-end */
.step-end {
    border-radius: 0 15px 15px 0;
    border: 1px solid var(--fsk-200, #dcdfe3);
    padding: 50px 75px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    background: var(--fsk-50, #f9fafb);
}
.step-end .text-header {
    display: inline-flex;
    padding: 4px;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    border: 1px solid var(--fsk-200);
    background: var(--fsk-100);
    color: var(--fsk-800);
    font-size: 14px;
}
.step-end .text-header .icon {
    background: rgb(52 92 255 / 15%);
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--fsk-site-color, #345cff);
    border-radius: 100px;
}
.step-end .text-header .text { padding: 0 10px; font-weight: 500; }
.step-end h3 {
    font-size: 32px;
    margin: 0;
}
.step-end h3 span {
    background: var(--fsk-site-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.step-end p {
    color: var(--fsk-800);
    line-height: 1.6;
    margin-bottom: 0;
}
.step-end a {
    align-self: flex-start;
    background: var(--fsk-site-gradient);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1023.99px) {
    .step-card { grid-template-columns: 1fr; }
    .step-start {
        min-height: 400px;
        border-radius: 15px;
        border-bottom: none;
    }
    .step-end {
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        margin-top: 20px;
    }
    .step-end a { align-self: center; }
    .section-header h2 { font-size: 28px; }
    #home-works { padding: 50px 15px; }
}
.step-end a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(52 92 255 / 25%);
    transition: all .3s ease;
}


.sidebar-menu-wrapper .sidebar-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    background: var(--fsk-50);
    border-left: none;
    border-right: none;
    padding: 6px 0;
    cursor: pointer;
    margin-bottom: 3px;
}

.sidebar-menu-wrapper .sidebar-category p {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fsk-800);
    letter-spacing: 0.6px;
    margin: 0;
  	padding-left: 10px
}

.sidebar-menu-wrapper .sidebar-category .btn-chevron {
	background: var(--fsk-100);
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	transition: transform 0.3s ease;
	color: var(--color-700);
  	margin-right: 10px
}

.sidebar-menu-wrapper .sidebar-category .btn-chevron.rotate {
	transform: rotate(180deg);
}

.sidebar-menu-wrapper li {
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.sidebar-player {
	background-color: var(--fsk-200);
	padding: 10px;
	width: max-content;
	margin: auto auto 15px auto;
	text-align: center;
	border-radius: 15px
}

.fs-25 {
	font-size: 25px
}

.player-content {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 1;
	width: 100%;
	justify-content: center
}

.album-cover {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transition: 0.14s ease
}

.volume-wrapper { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  margin-top: 10px; 
}

.volume-wrapper input[type="range"] {
  -webkit-appearance: none;
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(90deg, #677fdc, #2d49b5);
  outline: none;
  cursor: pointer;
}

.volume-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.volume-wrapper input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.volume-wrapper input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: none;
}

.player-right {
	flex: 1
}

.album-cover img {
	object-fit: cover;
	max-width: 100%;
	height: 100%;
	border-radius: 100px;
}

.sidebar-player.playing .album-cover img {
	animation: spin 6s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.player-right .song-name {
	font-size: 12px;
	color: var(--fsk-800);
	font-weight: 400;
	margin: 0;
	text-align: left;
}

.sidebar-player .control-wrapper {
	display: flex;
	align-items: center;
	gap: 6px
}

.sidebar-player .control-btn {
	outline: none;
	border: none;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--fsk-800);
	border-radius: 50%;
	background: var(--fsk-site-color);
	margin-top: 5px;
}

.sidebar-player .a-of-total {
	font-size: 12px;
	color: rgba(255, 255, 255, .5)
}

.control-btn i {
	font-size: 16px;
	color: #fff
}

.control-btn .i-off {
	display: flex
}

.control-btn .i-on {
	display: none
}

.sidebar-player.playing .control-btn .i-play {
	display: none
}

.sidebar-player .control-btn .i-pause {
	display: none
}

.sidebar-player.playing .control-btn .i-pause {
	display: flex
}

.control-btn.enabled .i-off {
	display: none
}

.control-btn .i-off {
	display: flex
}

.control-btn.enabled .i-on {
	display: flex
}

.custom-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--fsk-100);
    border-radius: calc(var(--fsk-site-border) * 4);
}
  
.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--fsk-300);
    background: var(--fsk-200);
  	border-radius: calc(var(--fsk-site-border) * 4) calc(var(--fsk-site-border) * 4) 0 0
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    border-right: 1px solid var(--fsk-300);
  	color: var(--fsk-800);
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.active {
    background: var(--fsk-site-gradient);
    border-bottom: 2px solid var(--fsk-site-color);
}

.tab-btn:first-child.active {
    border-radius: calc(var(--fsk-site-border) * 4) 0 0 0
}

.tab-btn:last-child.active {
    border-radius: 0 calc(var(--fsk-site-border) * 4)  0 0
}

.tab-content {
    display: none;
    padding: 15px;
}

.tab-content.active {
    display: block;
}

.form-group {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.form .form-group {
    margin-bottom: 15px;
}

.form .w-100 {
    width: 100%;
    justify-content: center;
}

.gift-alert {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%
}

.gift-alert .alert {
	text-align: center
}

.timer-wrapper {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 10px auto;
}

.timer-wrapper svg {
	transform: rotate(-90deg);
}

.timer-wrapper circle {
	fill: none;
	stroke-width: 8;
	stroke-linecap: round;
}

.timer-wrapper .bg {
	stroke: var(--fsk-300);
}

.timer-wrapper .progress {
	stroke: var(--fsk-site-color);
	transition: stroke-dashoffset 1s linear;
}

.timer-wrapper .time-text {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	color: var(--fsk-800)
}

@media (max-width: 991.98px) {
  .tab-btn {
      padding: 10px 5px;
      font-size: 12px;
  }
}

.point-data {
    background: linear-gradient(180deg, rgba(48, 83, 218, .25) 0%, rgba(48, 83, 218, .10) 100%);
    border-color: rgba(48, 83, 218, .30);
    padding: 10px;
    text-align: center;
    width: max-content;
    margin: 0 auto 15px auto;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
  	color: #fff
}

.point-note ol li {
	color: var(--fsk-800)
}

.point-note ol li::marker {
   color: var(--fsk-site-color)
}

@media only screen and (min-width: 1024px) {
    #userPoint .modal-content {
        max-width: 991.98px;
        width: 991.98px;
    }
}





.header-extra {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 10px;
}

.topb-total,
.topb-date {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--fsk-200), var(--fsk-100));
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    white-space: nowrap;
}

.stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.stat-label {
    font-size: 10px;
    opacity: 0.7;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
}

.topb-date {
    font-size: 12px;
    text-transform: capitalize;
}

.topb-date i {
    color: var(--fsk-site-color);
}

@media (max-width: 768px) {
    .header-extra {
        display: none !important;
    }
}
@media (max-width: 1200px) {
    .header-extra {
        display: none !important;
    }
}

.dlx-page{
  --dlx-border: rgba(255,255,255,0.08);
  --dlx-border-soft: rgba(255,255,255,0.05);
  --dlx-shadow: 0 24px 50px rgba(0,0,0,0.24);
  --dlx-shadow-hover: 0 30px 60px rgba(0,0,0,0.34);
  --dlx-bg-card: linear-gradient(180deg, rgba(37,46,67,0.96) 0%, rgba(31,39,57,0.96) 100%);
  --dlx-bg-panel: linear-gradient(90deg, #0c1f42 0%, #0d3552 100%);
  --dlx-bg-soft: linear-gradient(180deg, rgba(29,41,66,0.96) 0%, rgba(22,32,48,0.96) 100%);
  --dlx-text-soft: #cbd5e1;
  --dlx-text-muted: #94a3b8;
}

.dlx-wrap{
  max-width: 1160px;
  margin: auto;
  padding: 30px 15px 40px;
}

.dlx-hero{
  padding: 56px 32px;
  border-radius: 28px;
  background: var(--dlx-bg-panel);
  border: 1px solid var(--dlx-border);
  box-shadow: var(--dlx-shadow);
  text-align: center;
  margin-bottom: 28px;
  color: #fff;
}

.dlx-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #dbeafe;
}

.dlx-badge i{
  color: #60a5fa;
}

.dlx-title{
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.3px;
  color: #fff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #fff !important;
}

.dlx-subtitle{
  color: #dbeafe !important;
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.7;
}

.dlx-feature{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  margin-bottom: 30px;
  align-items: stretch;
}

.dlx-feature-video,
.dlx-feature-content{
  background: var(--dlx-bg-soft);
  border: 1px solid var(--dlx-border-soft);
  border-radius: 24px;
  box-shadow: var(--dlx-shadow);
}

.dlx-feature-video{
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.dlx-feature-video iframe{
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  display: block;
}

.dlx-feature-content{
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dlx-kicker{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #9ec5ff;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.dlx-feature-content h2{
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
  color: #fff;
  font-weight: 800;
}

.dlx-feature-content p{
  margin: 0;
  color: var(--dlx-text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.dlx-section-head{
  margin-bottom: 18px;
}

.dlx-section-space{
  margin-top: 34px;
}

.dlx-section-title{
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.dlx-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dlx-card{
  overflow: hidden;
  border-radius: 22px;
  background: var(--dlx-bg-card);
  border: 1px solid var(--dlx-border-soft);
  box-shadow: var(--dlx-shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.dlx-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--dlx-shadow-hover);
  border-color: rgba(59,130,246,0.28);
}

.dlx-video{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0f172a;
}

.dlx-video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.dlx-card-content{
  padding: 18px;
}

.dlx-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.dlx-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d9e7ff;
  font-size: 12px;
  font-weight: 600;
}

.dlx-card-content h3{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.dlx-card-content p{
  margin: 0;
  color: var(--dlx-text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.dlx-faq-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dlx-faq-card{
  padding: 24px;
  border-radius: 22px;
  background: var(--dlx-bg-soft);
  border: 1px solid var(--dlx-border-soft);
  box-shadow: var(--dlx-shadow);
}

.dlx-faq-card h3{
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.dlx-faq-body{
  display: grid;
  gap: 12px;
}

.dlx-faq-body p{
  margin: 0;
  color: var(--dlx-text-soft);
  line-height: 1.7;
}

.dlx-download{
  margin-top: 34px;
  padding: 30px 24px;
  text-align: center;
  border-radius: 24px;
  background: var(--dlx-bg-soft);
  border: 1px solid var(--dlx-border-soft);
  box-shadow: var(--dlx-shadow);
}

.dlx-download h2{
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.dlx-download p{
  margin: 0;
  color: var(--dlx-text-soft);
  font-size: 15px;
}

.dlx-download-buttons{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.dlx-actions{
  margin-top: 14px;
}

.dlx-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: .22s ease;
  border: 1px solid transparent;
}

.dlx-btn-primary{
  color: #fff;
  background: var(--fsk-site-gradient);
  box-shadow: 0 14px 30px rgba(48, 83, 218, 0.22);
}

.dlx-btn-primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}

.dlx-btn-secondary{
  color: #e8eefc;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

.dlx-btn-secondary:hover{
  background: rgba(255,255,255,0.10);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 992px){
  .dlx-feature{
    grid-template-columns: 1fr;
  }

  .dlx-grid,
  .dlx-faq-grid{
    grid-template-columns: 1fr;
  }

  .dlx-feature-video iframe{
    min-height: 260px;
  }
}

@media (max-width: 576px){
  .dlx-wrap{
    padding: 18px 12px 30px;
  }

  .dlx-hero{
    padding: 30px 18px;
    border-radius: 22px;
  }

  .dlx-title{
    letter-spacing: -0.7px;
  }

  .dlx-feature-content,
  .dlx-card-content,
  .dlx-faq-card,
  .dlx-download{
    padding-left: 16px;
    padding-right: 16px;
  }

  .dlx-download-buttons{
    flex-direction: column;
  }

  .dlx-btn{
    width: 100%;
  }
}

.lvlxv4-page{
  --lvlxv4-bg: #f5f7fc;
  --lvlxv4-bg-2: #edf2fb;
  --lvlxv4-panel: rgba(255,255,255,.72);
  --lvlxv4-panel-2: rgba(248,250,255,.78);
  --lvlxv4-panel-3: #ffffff;
  --lvlxv4-border: rgba(15,23,42,.08);
  --lvlxv4-border-soft: rgba(15,23,42,.05);
  --lvlxv4-text: #0f172a;
  --lvlxv4-text-soft: #5b6b84;
  --lvlxv4-text-faint: #7a8aa4;
  --lvlxv4-accent: #4c6fff;
  --lvlxv4-accent-2: #78a9ff;
  --lvlxv4-accent-3: #8b7cff;
  --lvlxv4-success: #22c55e;
  --lvlxv4-shadow: 0 18px 42px rgba(2,6,23,.12);
  --lvlxv4-shadow-hover: 0 28px 60px rgba(2,6,23,.18);
  --lvlxv4-hero-bg:
    radial-gradient(circle at 14% 20%, rgba(120,169,255,.22), transparent 23%),
    radial-gradient(circle at 86% 22%, rgba(76,111,255,.18), transparent 20%),
    radial-gradient(circle at 72% 100%, rgba(139,124,255,.12), transparent 24%),
    linear-gradient(135deg, #f7faff 0%, #eef4ff 45%, #e9f0fc 100%);
  padding: 18px 0 60px;
  background: transparent;
}

html[data-theme="dark"] .lvlxv4-page,
.dark .lvlxv4-page,
body.dark .lvlxv4-page,
body.dark-mode .lvlxv4-page{
  --lvlxv4-bg: #0d1017;
  --lvlxv4-bg-2: #121826;
  --lvlxv4-panel: rgba(20,27,41,.72);
  --lvlxv4-panel-2: rgba(16,23,34,.82);
  --lvlxv4-panel-3: #121927;
  --lvlxv4-border: rgba(255,255,255,.07);
  --lvlxv4-border-soft: rgba(255,255,255,.05);
  --lvlxv4-text: #f4f7fc;
  --lvlxv4-text-soft: #aab5ca;
  --lvlxv4-text-faint: #96a5c2;
  --lvlxv4-accent: #4c6fff;
  --lvlxv4-accent-2: #78a9ff;
  --lvlxv4-accent-3: #8b7cff;
  --lvlxv4-success: #67e8a5;
  --lvlxv4-shadow: 0 18px 42px rgba(0,0,0,.32);
  --lvlxv4-shadow-hover: 0 28px 60px rgba(0,0,0,.44);
  --lvlxv4-hero-bg:
    radial-gradient(circle at 14% 20%, rgba(120,169,255,.16), transparent 23%),
    radial-gradient(circle at 86% 22%, rgba(76,111,255,.13), transparent 20%),
    radial-gradient(circle at 72% 100%, rgba(139,124,255,.10), transparent 24%),
    linear-gradient(135deg, #131a29 0%, #101724 45%, #0d141f 100%);
}

.lvlxv4-wrap{
  max-width: 1240px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lvlxv4-reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.lvlxv4-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.lvlxv4-stagger{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.lvlxv4-reveal.is-visible .lvlxv4-stagger{
  opacity: 1;
  transform: translateY(0);
}

.lvlxv4-reveal.is-visible .lvlxv4-stagger:nth-child(1){ transition-delay: .05s; }
.lvlxv4-reveal.is-visible .lvlxv4-stagger:nth-child(2){ transition-delay: .12s; }
.lvlxv4-reveal.is-visible .lvlxv4-stagger:nth-child(3){ transition-delay: .19s; }
.lvlxv4-reveal.is-visible .lvlxv4-stagger:nth-child(4){ transition-delay: .26s; }
.lvlxv4-reveal.is-visible .lvlxv4-stagger:nth-child(5){ transition-delay: .33s; }
.lvlxv4-reveal.is-visible .lvlxv4-stagger:nth-child(6){ transition-delay: .40s; }

.lvlxv4-hero{
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  background: var(--lvlxv4-hero-bg);
  border: 1px solid var(--lvlxv4-border);
  box-shadow: var(--lvlxv4-shadow);
  isolation: isolate;
}

.lvlxv4-hero-bg{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 35%, rgba(255,255,255,.03));
  pointer-events: none;
}

html[data-theme="dark"] .lvlxv4-hero-bg,
.dark .lvlxv4-hero-bg,
body.dark .lvlxv4-hero-bg,
body.dark-mode .lvlxv4-hero-bg{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 35%, rgba(255,255,255,.02));
}

.lvlxv4-hero-grid{
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(15,23,42,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
}

html[data-theme="dark"] .lvlxv4-hero-grid,
.dark .lvlxv4-hero-grid,
body.dark .lvlxv4-hero-grid,
body.dark-mode .lvlxv4-hero-grid{
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
}

.lvlxv4-hero-noise{
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image:
    radial-gradient(circle at 20% 20%, currentColor 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, currentColor 1px, transparent 1px),
    radial-gradient(circle at 30% 80%, currentColor 1px, transparent 1px);
  background-size: 140px 140px;
  color: #50607a;
  pointer-events: none;
}

html[data-theme="dark"] .lvlxv4-hero-noise,
.dark .lvlxv4-hero-noise,
body.dark .lvlxv4-hero-noise,
body.dark-mode .lvlxv4-hero-noise{
  color: #a8b8d6;
}

.lvlxv4-spotlight{
  position: absolute;
  width: 420px;
  height: 420px;
  left: var(--lvlxv4-mx, 50%);
  top: var(--lvlxv4-my, 50%);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(120,169,255,.18) 0%, rgba(120,169,255,.08) 30%, transparent 70%);
  filter: blur(1px);
  pointer-events: none;
  opacity: .6;
}

html[data-theme="dark"] .lvlxv4-spotlight,
.dark .lvlxv4-spotlight,
body.dark .lvlxv4-spotlight,
body.dark-mode .lvlxv4-spotlight{
  background: radial-gradient(circle, rgba(120,169,255,.14) 0%, rgba(120,169,255,.06) 30%, transparent 70%);
  opacity: .55;
}

.lvlxv4-orb{
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .28;
  pointer-events: none;
}

.lvlxv4-orb-a{
  width: 240px;
  height: 240px;
  left: -70px;
  top: -70px;
  background: rgba(76,111,255,.18);
  animation: lvlxv4Float 9s ease-in-out infinite;
}

.lvlxv4-orb-b{
  width: 260px;
  height: 260px;
  right: -90px;
  top: 0;
  background: rgba(120,169,255,.14);
  animation: lvlxv4Float 11s ease-in-out infinite reverse;
}

.lvlxv4-orb-c{
  width: 220px;
  height: 220px;
  right: 25%;
  bottom: -110px;
  background: rgba(139,124,255,.12);
  animation: lvlxv4Float 10s ease-in-out infinite;
}

.lvlxv4-particles{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lvlxv4-particles span{
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  box-shadow: 0 0 12px rgba(120,169,255,.34);
  animation: lvlxv4Particle 10s linear infinite;
}

.lvlxv4-particles span:nth-child(1){ left: 9%; top: 82%; animation-delay: 0s; }
.lvlxv4-particles span:nth-child(2){ left: 19%; top: 77%; animation-delay: 1s; }
.lvlxv4-particles span:nth-child(3){ left: 31%; top: 88%; animation-delay: 2s; }
.lvlxv4-particles span:nth-child(4){ left: 44%; top: 79%; animation-delay: 3s; }
.lvlxv4-particles span:nth-child(5){ left: 57%; top: 87%; animation-delay: 4s; }
.lvlxv4-particles span:nth-child(6){ left: 70%; top: 80%; animation-delay: 5s; }
.lvlxv4-particles span:nth-child(7){ left: 83%; top: 89%; animation-delay: 6s; }
.lvlxv4-particles span:nth-child(8){ left: 91%; top: 83%; animation-delay: 7s; }
.lvlxv4-particles span:nth-child(9){ left: 62%; top: 74%; animation-delay: 2.4s; }
.lvlxv4-particles span:nth-child(10){ left: 14%; top: 70%; animation-delay: 5.7s; }

.lvlxv4-topbar{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.lvlxv4-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(15,23,42,.08);
  color: var(--lvlxv4-text);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(1px);
}

html[data-theme="dark"] .lvlxv4-chip,
.dark .lvlxv4-chip,
body.dark .lvlxv4-chip,
body.dark-mode .lvlxv4-chip{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #dce6fe;
}

.lvlxv4-chip-soft{
  background: rgba(76,111,255,.08);
  color: var(--lvlxv4-accent);
}

html[data-theme="dark"] .lvlxv4-chip-soft,
.dark .lvlxv4-chip-soft,
body.dark .lvlxv4-chip-soft,
body.dark-mode .lvlxv4-chip-soft{
  color: #d4e1ff;
}

.lvlxv4-hero-layout{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.lvlxv4-emblem{
  width: 104px;
  height: 104px;
  padding: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.16));
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 0 30px rgba(120,169,255,.14);
  margin-bottom: 18px;
  animation: lvlxv4Pulse 3.8s ease-in-out infinite;
}

html[data-theme="dark"] .lvlxv4-emblem,
.dark .lvlxv4-emblem,
body.dark .lvlxv4-emblem,
body.dark-mode .lvlxv4-emblem{
  background: linear-gradient(135deg, rgba(255,255,255,.30), rgba(255,255,255,.05));
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 0 30px rgba(120,169,255,.14);
}

.lvlxv4-emblem-core{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.42), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.18));
  border: 1px solid rgba(255,255,255,.28);
  color: var(--lvlxv4-text);
  font-size: 36px;
}

html[data-theme="dark"] .lvlxv4-emblem-core,
.dark .lvlxv4-emblem-core,
body.dark .lvlxv4-emblem-core,
body.dark-mode .lvlxv4-emblem-core{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.06);
  color: var(--lvlxv4-text);
}

.lvlxv4-title{
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -1.6px;
  font-weight: 900;
  color: var(--lvlxv4-text);
}

.lvlxv4-subtitle{
  max-width: 720px;
  color: var(--lvlxv4-text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.lvlxv4-stat-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
  max-width: 760px;
}

.lvlxv4-stat-card{
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.36));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  backdrop-filter: blur(1px);
}

html[data-theme="dark"] .lvlxv4-stat-card,
.dark .lvlxv4-stat-card,
body.dark .lvlxv4-stat-card,
body.dark-mode .lvlxv4-stat-card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.lvlxv4-stat-card span{
  display: block;
  font-size: 12px;
  color: var(--lvlxv4-text-faint);
  margin-bottom: 6px;
}

.lvlxv4-stat-card strong{
  color: var(--lvlxv4-text);
  font-size: 18px;
  font-weight: 800;
}

.lvlxv4-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lvlxv4-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.lvlxv4-btn:hover{
  transform: translateY(-3px);
}

.lvlxv4-btn-primary{
  color: #fff;
  background: linear-gradient(90deg, var(--lvlxv4-accent), var(--lvlxv4-accent-2));
  border: 1px solid rgba(120,169,255,.22);
  box-shadow: 0 10px 28px rgba(54,79,190,.24);
}

.lvlxv4-btn-secondary{
  color: var(--lvlxv4-text);
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(15,23,42,.08);
}

html[data-theme="dark"] .lvlxv4-btn-secondary,
.dark .lvlxv4-btn-secondary,
body.dark .lvlxv4-btn-secondary,
body.dark-mode .lvlxv4-btn-secondary{
  color: #dce7ff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.lvlxv4-progress-card,
.lvlxv4-tier,
.lvlxv4-plaque,
.lvlxv4-info-card{
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .16s ease, box-shadow .3s ease, border-color .3s ease, opacity .3s ease, filter .3s ease;
}

.lvlxv4-progress-card{
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(120,169,255,.12), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 18px 40px rgba(2,6,23,.12);
  backdrop-filter: blur(1px);
}

html[data-theme="dark"] .lvlxv4-progress-card,
.dark .lvlxv4-progress-card,
body.dark .lvlxv4-progress-card,
body.dark-mode .lvlxv4-progress-card{
  background:
    radial-gradient(circle at top right, rgba(120,169,255,.08), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 40px rgba(0,0,0,.24);
}

.lvlxv4-progress-head{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.lvlxv4-label{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lvlxv4-text-faint);
}

.lvlxv4-progress-head h3{
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--lvlxv4-text);
}

.lvlxv4-live-wrap{
  padding-top: 8px;
}

.lvlxv4-live-dot{
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lvlxv4-success);
  box-shadow: 0 0 0 0 rgba(34,197,94,.52);
  animation: lvlxv4Ping 2s infinite;
}

html[data-theme="dark"] .lvlxv4-live-dot,
.dark .lvlxv4-live-dot,
body.dark .lvlxv4-live-dot,
body.dark-mode .lvlxv4-live-dot{
  box-shadow: 0 0 0 0 rgba(103,232,165,.58);
}

.lvlxv4-progress-text{
  margin: 12px 0 18px;
  color: var(--lvlxv4-text-soft);
  line-height: 1.7;
}

.lvlxv4-progress-text strong{
  color: var(--lvlxv4-text);
}

.lvlxv4-progress-grid{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
}

.lvlxv4-radial-box{
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
}

.lvlxv4-radial{
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.lvlxv4-radial-bg,
.lvlxv4-radial-bar{
  fill: none;
  stroke-width: 9;
}

.lvlxv4-radial-bg{
  stroke: rgba(15,23,42,.10);
}

html[data-theme="dark"] .lvlxv4-radial-bg,
.dark .lvlxv4-radial-bg,
body.dark .lvlxv4-radial-bg,
body.dark-mode .lvlxv4-radial-bg{
  stroke: rgba(255,255,255,.07);
}

.lvlxv4-radial-bar{
  stroke: var(--lvlxv4-accent-2);
  stroke-linecap: round;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  filter: drop-shadow(0 0 8px rgba(76,111,255,.30));
  transition: stroke-dashoffset 1.2s ease;
}

.lvlxv4-radial-center{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lvlxv4-radial-center strong{
  font-size: 24px;
  font-weight: 900;
  color: var(--lvlxv4-text);
}

.lvlxv4-radial-center span{
  font-size: 11px;
  color: var(--lvlxv4-text-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lvlxv4-linear-box{
  width: 100%;
}

.lvlxv4-linear-track{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.08);
  border: 1px solid rgba(15,23,42,.06);
}

html[data-theme="dark"] .lvlxv4-linear-track,
.dark .lvlxv4-linear-track,
body.dark .lvlxv4-linear-track,
body.dark-mode .lvlxv4-linear-track{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
}

.lvlxv4-linear-fill{
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
  width: 0%;
  min-width: 0;
  max-width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3652d9 0%, #4c6fff 45%, #78a9ff 100%);
  box-shadow: 0 0 18px rgba(76,111,255,.34);
  transition: width 1.2s ease;
}

.lvlxv4-linear-track.is-zero .lvlxv4-linear-fill{
  box-shadow: none;
}

.lvlxv4-linear-gloss{
  position: absolute;
  top: 0;
  left: -30%;
  width: 26%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  animation: lvlxv4Shine 3s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.lvlxv4-linear-meta{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lvlxv4-text-soft);
}

.lvlxv4-mini-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 20px;
}

.lvlxv4-mini-card{
  padding: 16px 14px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(15,23,42,.08);
}

html[data-theme="dark"] .lvlxv4-mini-card,
.dark .lvlxv4-mini-card,
body.dark .lvlxv4-mini-card,
body.dark-mode .lvlxv4-mini-card{
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.lvlxv4-mini-card span{
  display: block;
  font-size: 11px;
  color: var(--lvlxv4-text-faint);
  margin-bottom: 6px;
}

.lvlxv4-mini-card strong{
  font-size: 24px;
  font-weight: 900;
  color: var(--lvlxv4-text);
}

.lvlxv4-mini-card em{
  font-style: normal;
  color: var(--lvlxv4-text);
  font-weight: 800;
  margin-left: 2px;
}

.lvlxv4-section-head{
  margin-bottom: 18px;
}

.lvlxv4-kicker{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--lvlxv4-accent);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.lvlxv4-section-head h2{
  margin: 0;
  color: var(--lvlxv4-text);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.lvlxv4-tier-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.lvlxv4-tier{
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42)),
    #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--lvlxv4-shadow);
  backdrop-filter: blur(1px);
}

html[data-theme="dark"] .lvlxv4-tier,
.dark .lvlxv4-tier,
body.dark .lvlxv4-tier,
body.dark-mode .lvlxv4-tier{
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015)),
    #121927;
  border: 1px solid var(--lvlxv4-border);
}

.lvlxv4-tier:hover,
.lvlxv4-plaque:hover,
.lvlxv4-info-card:hover,
.lvlxv4-progress-card:hover{
  box-shadow: var(--lvlxv4-shadow-hover);
}

.lvlxv4-tier.active{
  border-color: rgba(76,111,255,.34);
  box-shadow: 0 0 0 1px rgba(76,111,255,.12), var(--lvlxv4-shadow-hover);
}

.lvlxv4-tier.locked{
  opacity: .82;
  filter: saturate(.82);
}

.lvlxv4-tier-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lvlxv4-tier-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76,111,255,.10);
  border: 1px solid rgba(76,111,255,.18);
  color: #5e7eff;
  font-size: 22px;
}

html[data-theme="dark"] .lvlxv4-tier-icon,
.dark .lvlxv4-tier-icon,
body.dark .lvlxv4-tier-icon,
body.dark-mode .lvlxv4-tier-icon{
  color: #7ea6ff;
}

.lvlxv4-state{
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid transparent;
}

.lvlxv4-state.unlocked{
  color: #137a3d;
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.18);
}

html[data-theme="dark"] .lvlxv4-state.unlocked,
.dark .lvlxv4-state.unlocked,
body.dark .lvlxv4-state.unlocked,
body.dark-mode .lvlxv4-state.unlocked{
  color: #cfe8db;
  background: rgba(103,232,165,.10);
  border-color: rgba(103,232,165,.20);
}

.lvlxv4-state.locked{
  color: var(--lvlxv4-text-soft);
  background: rgba(15,23,42,.05);
  border-color: rgba(15,23,42,.08);
}

html[data-theme="dark"] .lvlxv4-state.locked,
.dark .lvlxv4-state.locked,
body.dark .lvlxv4-state.locked,
body.dark-mode .lvlxv4-state.locked{
  color: #d3d9e9;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

.lvlxv4-tier h3{
  margin: 0;
  font-size: 24px;
  color: var(--lvlxv4-text);
  font-weight: 800;
}

.lvlxv4-tier-range{
  margin: 6px 0 14px;
  color: var(--lvlxv4-text-soft);
  font-size: 14px;
}

.lvlxv4-tier ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lvlxv4-tier li{
  position: relative;
  padding-left: 22px;
  color: var(--lvlxv4-text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.lvlxv4-tier li::before{
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lvlxv4-accent-2);
  font-weight: 900;
}

.lvlxv4-tier.bronze .lvlxv4-tier-icon{ color: #cf925c; border-color: rgba(207,146,92,.20); background: rgba(207,146,92,.08); }
.lvlxv4-tier.silver .lvlxv4-tier-icon{ color: #93a0b8; border-color: rgba(147,160,184,.20); background: rgba(147,160,184,.08); }
.lvlxv4-tier.gold .lvlxv4-tier-icon{ color: #d4a33b; border-color: rgba(212,163,59,.20); background: rgba(212,163,59,.08); }
.lvlxv4-tier.diamond .lvlxv4-tier-icon{ color: #4ebeff; border-color: rgba(78,190,255,.20); background: rgba(78,190,255,.08); }
.lvlxv4-tier.master .lvlxv4-tier-icon{ color: #8b6dff; border-color: rgba(139,109,255,.20); background: rgba(139,109,255,.08); }

html[data-theme="dark"] .lvlxv4-tier.silver .lvlxv4-tier-icon,
.dark .lvlxv4-tier.silver .lvlxv4-tier-icon,
body.dark .lvlxv4-tier.silver .lvlxv4-tier-icon,
body.dark-mode .lvlxv4-tier.silver .lvlxv4-tier-icon{ color: #b8c6dc; }

html[data-theme="dark"] .lvlxv4-tier.gold .lvlxv4-tier-icon,
.dark .lvlxv4-tier.gold .lvlxv4-tier-icon,
body.dark .lvlxv4-tier.gold .lvlxv4-tier-icon,
body.dark-mode .lvlxv4-tier.gold .lvlxv4-tier-icon{ color: #e0b84a; }

html[data-theme="dark"] .lvlxv4-tier.diamond .lvlxv4-tier-icon,
.dark .lvlxv4-tier.diamond .lvlxv4-tier-icon,
body.dark .lvlxv4-tier.diamond .lvlxv4-tier-icon,
body.dark-mode .lvlxv4-tier.diamond .lvlxv4-tier-icon{ color: #67c7ff; }

html[data-theme="dark"] .lvlxv4-tier.master .lvlxv4-tier-icon,
.dark .lvlxv4-tier.master .lvlxv4-tier-icon,
body.dark .lvlxv4-tier.master .lvlxv4-tier-icon,
body.dark-mode .lvlxv4-tier.master .lvlxv4-tier-icon{ color: #ae8bff; }

.lvlxv4-plaque-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.lvlxv4-plaque{
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42)),
    #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--lvlxv4-shadow);
  backdrop-filter: blur(1px);
}

html[data-theme="dark"] .lvlxv4-plaque,
.dark .lvlxv4-plaque,
body.dark .lvlxv4-plaque,
body.dark-mode .lvlxv4-plaque{
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015)),
    #121927;
  border: 1px solid var(--lvlxv4-border);
}

.lvlxv4-plaque-glow{
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(76,111,255,.12);
  filter: blur(1px);
}

.lvlxv4-plaque img{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 180px;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.25));
  transition: transform .3s ease;
}

html[data-theme="dark"] .lvlxv4-plaque img,
.dark .lvlxv4-plaque img,
body.dark .lvlxv4-plaque img,
body.dark-mode .lvlxv4-plaque img{
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
}

.lvlxv4-plaque:hover img{
  transform: scale(1.04);
}

.lvlxv4-plaque h3{
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  color: var(--lvlxv4-text);
  font-size: 22px;
  font-weight: 900;
}

.lvlxv4-plaque p{
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--lvlxv4-text-soft);
}

.lvlxv4-info-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lvlxv4-info-card{
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42)),
    #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--lvlxv4-shadow);
  backdrop-filter: blur(1px);
}

html[data-theme="dark"] .lvlxv4-info-card,
.dark .lvlxv4-info-card,
body.dark .lvlxv4-info-card,
body.dark-mode .lvlxv4-info-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015)),
    #121927;
  border: 1px solid var(--lvlxv4-border);
}

.lvlxv4-info-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(76,111,255,.10);
  border: 1px solid rgba(76,111,255,.18);
  color: var(--lvlxv4-accent);
  font-size: 22px;
}

html[data-theme="dark"] .lvlxv4-info-icon,
.dark .lvlxv4-info-icon,
body.dark .lvlxv4-info-icon,
body.dark-mode .lvlxv4-info-icon{
  color: #7ea6ff;
}

.lvlxv4-info-card h3{
  margin: 0 0 14px;
  color: var(--lvlxv4-text);
  font-size: 24px;
  font-weight: 900;
}

.lvlxv4-info-lines{
  display: grid;
  gap: 10px;
}

.lvlxv4-info-lines div{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--lvlxv4-border-soft);
}

.lvlxv4-info-lines div:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.lvlxv4-info-lines span{
  color: var(--lvlxv4-text-soft);
  font-size: 14px;
}

.lvlxv4-info-lines strong{
  color: var(--lvlxv4-text);
  font-size: 14px;
  text-align: right;
  font-weight: 800;
}

@keyframes lvlxv4Float{
  0%,100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(-16px) translateX(10px); }
}

@keyframes lvlxv4Pulse{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.03); }
}

@keyframes lvlxv4Particle{
  0%{ transform: translateY(0) scale(.9); opacity: 0; }
  12%{ opacity: .9; }
  100%{ transform: translateY(-220px) scale(1.2); opacity: 0; }
}

@keyframes lvlxv4Ping{
  0%{ box-shadow: 0 0 0 0 rgba(34,197,94,.52); }
  70%{ box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

@keyframes lvlxv4Shine{
  0%{ left: -30%; }
  100%{ left: 120%; }
}

@media (max-width: 1100px){
  .lvlxv4-hero-layout{
    grid-template-columns: 1fr;
  }

  .lvlxv4-tier-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .lvlxv4-plaque-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .lvlxv4-hero{
    padding: 22px 18px;
    border-radius: 24px;
  }

  .lvlxv4-title{
    font-size: 34px;
    letter-spacing: -.7px;
  }

  .lvlxv4-stat-grid,
  .lvlxv4-tier-grid,
  .lvlxv4-info-grid,
  .lvlxv4-mini-grid{
    grid-template-columns: 1fr;
  }

  .lvlxv4-progress-grid{
    grid-template-columns: 1fr;
  }

  .lvlxv4-section-head h2{
    font-size: 24px;
  }
}

 .neoytv4-page{

    --neo-bg: #f5f7ff;
    --neo-bg2: #ffffff;

    --neo-card: #ffffff;

    --neo-border:
        rgba(15,23,42,.06);

    --neo-text:
        #0f172a;

    --neo-text-soft:
        #667085;

    --neo-primary:
        #345cff;

    --neo-primary2:
        #5b7cff;

    --neo-shadow:
        0 8px 28px rgba(15,23,42,.06);

    --neo-shadow-hover:
        0 18px 40px rgba(15,23,42,.10);

    padding: 24px 0 50px;
}


html.dark .neoytv4-page,
html[data-theme="dark"] .neoytv4-page,
body.dark .neoytv4-page{

    --neo-bg: #0f1728;
    --neo-bg2: #131d31;

    --neo-card: #172033;

    --neo-border:
        rgba(255,255,255,.06);

    --neo-text:
        #f5f9ff;

    --neo-text-soft:
        #9fb0cb;

    --neo-shadow:
        0 10px 35px rgba(0,0,0,.28);

    --neo-shadow-hover:
        0 18px 50px rgba(0,0,0,.38);
}


.neoytv4-wrap{
    max-width: 1180px;
    margin: auto;
    padding: 0 14px;
}


.neoytv4-hero{

    position: relative;
    overflow: hidden;

    padding: 60px 34px;

    border-radius: 32px;

    background:
        linear-gradient(135deg,
        var(--neo-bg) 0%,
        var(--neo-bg2) 100%);

    border: 1px solid var(--neo-border);

    box-shadow: var(--neo-shadow);

    margin-bottom: 28px;

    text-align: center;
}


.neoytv4-hero::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
        rgba(52,92,255,.10),
        transparent 28%),

        radial-gradient(circle at bottom left,
        rgba(130,170,255,.08),
        transparent 28%);

    pointer-events: none;
}


.neoytv4-badge{

    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    border-radius: 999px;

    background:
        rgba(52,92,255,.08);

    border:
        1px solid rgba(52,92,255,.10);

    color: var(--neo-primary);

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 20px;
}

.neoytv4-badge i{
    color: #ff3b3b;
}


.neoytv4-title{

    position: relative;
    z-index: 2;

    margin: 0 0 16px;

    font-size:
        clamp(38px,6vw,68px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 900;

    color: var(--neo-text);
}

.neoytv4-title span{

    background:
        linear-gradient(90deg,
        #5b7cff,
        #345cff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.neoytv4-sub{

    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: auto;

    color: var(--neo-text-soft);

    font-size: 16px;

    line-height: 1.85;
}


.neoytv4-stats{

    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}

.neoytv4-stat{

    min-width: 140px;

    padding: 16px 18px;

    border-radius: 22px;

    background: var(--neo-card);

    border: 1px solid var(--neo-border);

    transition: .25s ease;
}

.neoytv4-stat:hover{
    transform: translateY(-4px);
}

.neoytv4-stat strong{

    display: block;

    color: var(--neo-text);

    font-size: 22px;
    font-weight: 900;
}

.neoytv4-stat span{

    color: var(--neo-text-soft);

    font-size: 13px;
}


.neoytv4-head{
    margin-bottom: 18px;
}

.neoytv4-kicker{

    display: inline-block;

    margin-bottom: 8px;

    color: var(--neo-primary);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.neoytv4-head h2{

    margin: 0;

    color: var(--neo-text);

    font-size: 32px;
    font-weight: 900;

    letter-spacing: -.04em;
}


.neoytv4-grid{

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 22px;
}


.neoytv4-card{

    overflow: hidden;

    border-radius: 28px;

    background: var(--neo-card);

    border: 1px solid var(--neo-border);

    box-shadow: var(--neo-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.neoytv4-card:hover{

    transform:
        translateY(-6px);

    border-color:
        rgba(52,92,255,.14);

    box-shadow:
        var(--neo-shadow-hover);
}


.neoytv4-video-wrap{
    padding: 16px 16px 0;
}

.neoytv4-video{

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    aspect-ratio: 16/9;

    background: #000;
}

.neoytv4-video iframe{

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


.neoytv4-play{

    position: absolute;

    right: 24px;
    bottom: 24px;

    width: 56px;
    height: 56px;

    border-radius: 50%;

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

    background:
        linear-gradient(135deg,
        #ff3b3b,
        #ff1f6a);

    border:
        4px solid rgba(255,255,255,.12);

    box-shadow:
        0 10px 24px rgba(255,59,59,.24);
}

.neoytv4-play i{

    color: #fff;

    font-size: 16px;

    margin-left: 2px;
}


.neoytv4-content{
    padding: 20px;
}

.neoytv4-tags{

    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 14px;
}

.neoytv4-tag{

    padding: 7px 12px;

    border-radius: 999px;

    background:
        rgba(52,92,255,.08);

    border:
        1px solid rgba(52,92,255,.10);

    color: var(--neo-primary);

    font-size: 12px;
    font-weight: 800;
}

.neoytv4-content h3{

    margin: 0 0 12px;

    color: var(--neo-text);

    font-size: 23px;
    font-weight: 900;

    letter-spacing: -.03em;
}

.neoytv4-content p{

    margin: 0;

    color: var(--neo-text-soft);

    font-size: 14px;

    line-height: 1.8;
}

.neoytv4-content strong{
    color: var(--neo-text);
}


@media (max-width: 900px){

    .neoytv4-grid{
        grid-template-columns: 1fr;
    }

    .neoytv4-title{
        font-size: 42px;
        letter-spacing: -1px;
    }

}

@media (max-width: 576px){

    .neoytv4-hero{
        padding: 42px 20px;
        border-radius: 26px;
    }

    .neoytv4-content{
        padding: 18px;
    }

    .neoytv4-play{
        width: 50px;
        height: 50px;
    }

}

.revseller-page{
  --revseller-surface: color-mix(in srgb, var(--fsk-100, #ffffff) 78%, transparent);
  --revseller-surface-2: color-mix(in srgb, var(--fsk-200, #f3f4f6) 84%, transparent);
  --revseller-border: color-mix(in srgb, var(--fsk-300, #e5e7eb) 82%, transparent);
  --revseller-text: var(--fsk-800, #1f2937);
  --revseller-text-soft: var(--fsk-500, #6b7280);
  --revseller-title: var(--fsk-900, #111827);
  --revseller-green: var(--fsk-green, #22c55e);
  --revseller-site-color: var(--fsk-site-color, #4f46e5);
  --revseller-site-color-hover: var(--fsk-site-color-hover, #4338ca);
  --revseller-shadow: 0 18px 48px rgba(15,23,42,.10);
  --revseller-shadow-soft: 0 10px 28px rgba(15,23,42,.07);
  --revseller-radius-xl: calc(var(--fsk-site-border, 6px) * 7);
  --revseller-radius-lg: calc(var(--fsk-site-border, 6px) * 4);
  --revseller-radius-md: calc(var(--fsk-site-border, 6px) * 3);
  color:var(--revseller-text);
}

html[data-theme="dark"] .revseller-page,
html.dark .revseller-page,
body.dark .revseller-page,
body.dark-mode .revseller-page{
  --revseller-surface: color-mix(in srgb, var(--fsk-100, #111827) 90%, transparent);
  --revseller-surface-2: color-mix(in srgb, var(--fsk-200, #1f2937) 88%, transparent);
  --revseller-border: color-mix(in srgb, var(--fsk-300, #374151) 76%, transparent);
  --revseller-text: var(--fsk-800, #f9fafb);
  --revseller-text-soft: var(--fsk-500, #cbd5e1);
  --revseller-title: var(--fsk-900, #ffffff);
  --revseller-shadow: 0 18px 48px rgba(0,0,0,.28);
  --revseller-shadow-soft: 0 10px 28px rgba(0,0,0,.22);
}

.revseller-page .revseller-wrap{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:24px 16px 48px;
}

.revseller-page .revseller-hero{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:24px;
  padding:30px;
  border-radius:var(--revseller-radius-xl);
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.18), transparent 24%),
    radial-gradient(circle at 85% 82%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--revseller-site-color) 82%, #08101a) 0%,
      color-mix(in srgb, var(--revseller-site-color-hover) 78%, #111827) 48%,
      #0a1020 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--revseller-shadow);
  isolation:isolate;
}

.revseller-page .revseller-hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), transparent 40%);
  z-index:0;
}

.revseller-page .revseller-gridfx{
  position:absolute;
  inset:0;
  opacity:.08;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size:30px 30px;
  mask-image:radial-gradient(circle at center, #000 42%, transparent 100%);
  z-index:0;
}

.revseller-page .revseller-glow{
  position:absolute;
  border-radius:999px;
  filter:blur(1px);
  pointer-events:none;
  z-index:0;
}

.revseller-page .revseller-glow-a{
  width:200px;
  height:200px;
  left:-40px;
  top:-50px;
  background:rgba(255,255,255,.15);
}

.revseller-page .revseller-glow-b{
  width:230px;
  height:230px;
  right:-70px;
  bottom:-70px;
  background:rgba(255,255,255,.12);
}

.revseller-page .revseller-hero-content,
.revseller-page .revseller-hero-side{
  position:relative;
  z-index:1;
}

.revseller-page .revseller-top-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.revseller-page .revseller-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.revseller-page .revseller-badge img{
  width:18px;
  height:18px;
  object-fit:contain;
}

.revseller-page .revseller-badge-soft{
  background:rgba(255,255,255,.08);
}

.revseller-page .revseller-title{
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(34px,4.4vw,60px);
  line-height:1.03;
  font-weight:900;
  letter-spacing:-1.3px;
}

.revseller-page .revseller-title span{
  text-shadow:0 0 24px rgba(255,255,255,.15);
}

.revseller-page .revseller-subtitle{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.86);
  font-size:17px;
  line-height:1.85;
}

.revseller-page .revseller-subtitle strong{
  color:#fff;
}

.revseller-page .revseller-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.revseller-page .revseller-actions-center{
  justify-content:center;
}

.revseller-page .revseller-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 22px;
  border-radius:16px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  transition:transform .22s ease, background .22s ease, box-shadow .22s ease;
  border:1px solid transparent;
}

.revseller-page .revseller-btn-primary{
  background:#fff;
  color:var(--revseller-site-color);
  box-shadow:0 14px 32px rgba(0,0,0,.12);
}

.revseller-page .revseller-btn-primary:hover{
  transform:translateY(-2px);
  color:var(--revseller-site-color);
}

.revseller-page .revseller-btn-secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}

.revseller-page .revseller-btn-secondary:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.12);
  color:#fff;
}

.revseller-page .revseller-hero-points{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}

.revseller-page .revseller-point{
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.revseller-page .revseller-point strong{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.4;
  font-weight:800;
  margin-bottom:4px;
}

.revseller-page .revseller-point span{
  display:block;
  color:rgba(255,255,255,.70);
  font-size:12px;
}

.revseller-page .revseller-hero-side{
  display:flex;
  flex-direction:column;
  gap:16px;
  justify-content:center;
}

.revseller-page .revseller-main-card{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(1px);
  box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.revseller-page .revseller-main-card-top small{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:12px;
  margin-bottom:8px;
}

.revseller-page .revseller-main-card-top h3{
  margin:0;
  color:#fff;
  font-size:26px;
  line-height:1.2;
  font-weight:900;
}

.revseller-page .revseller-main-flow{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.revseller-page .revseller-main-step{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}

.revseller-page .revseller-main-step b{
  width:38px;
  height:38px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--revseller-site-color);
  font-size:14px;
  font-weight:900;
}

.revseller-page .revseller-main-step p{
  margin:0;
  color:#fff;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
}

.revseller-page .revseller-mini-profit{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.revseller-page .revseller-mini-profit-item{
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  text-align:center;
}

.revseller-page .revseller-mini-profit-item span{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:12px;
  margin-bottom:6px;
}

.revseller-page .revseller-mini-profit-item strong{
  display:block;
  color:#fff;
  font-size:18px;
  font-weight:900;
}

.revseller-page .revseller-mini-profit-item.is-profit strong{
  color:#96f2b0;
}

.revseller-page .revseller-social-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.revseller-page .revseller-social-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.revseller-page .revseller-social-card img{
  width:34px;
  height:34px;
  object-fit:contain;
  flex-shrink:0;
}

.revseller-page .revseller-social-card strong{
  display:block;
  font-size:15px;
  line-height:1.3;
  font-weight:800;
}

.revseller-page .revseller-social-card span{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.70);
  margin-top:2px;
}

.revseller-page .revseller-brandbar{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:20px;
}

.revseller-page .revseller-brand-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:62px;
  padding:14px 16px;
  border-radius:18px;
  text-align:center;
  background:var(--revseller-surface);
  border:1px solid var(--revseller-border);
  box-shadow:var(--revseller-shadow-soft);
  color:var(--revseller-title);
  font-size:14px;
  font-weight:700;
}

.revseller-page .revseller-brand-item img{
  width:24px;
  height:24px;
  object-fit:contain;
  flex-shrink:0;
}

.revseller-page .revseller-showcase,
.revseller-page .revseller-proof,
.revseller-page .revseller-cta{
  margin-top:24px;
  border-radius:24px;
  background:var(--revseller-surface);
  border:1px solid var(--revseller-border);
  box-shadow:var(--revseller-shadow-soft);
}

.revseller-page .revseller-showcase,
.revseller-page .revseller-cta{
  padding:24px;
}

.revseller-page .revseller-section-head{
  text-align:center;
  max-width:860px;
  margin:0 auto 20px;
}

.revseller-page .revseller-kicker{
  display:inline-flex;
  align-items:center;
  min-height:35px;
  padding:0 14px;
  border-radius:999px;
  background:color-mix(in srgb, var(--revseller-site-color) 10%, transparent);
  color:var(--revseller-site-color);
  border:1px solid color-mix(in srgb, var(--revseller-site-color) 16%, transparent);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.revseller-page .revseller-kicker-light{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}

.revseller-page .revseller-section-head h2{
  margin:0 0 10px;
  color:var(--revseller-title);
  font-size:32px;
  line-height:1.15;
  font-weight:900;
}

.revseller-page .revseller-section-head p{
  margin:0;
  color:var(--revseller-text-soft);
  font-size:15px;
  line-height:1.8;
}

.revseller-page .revseller-showcase-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.revseller-page .revseller-show-card{
  padding:20px 18px;
  border-radius:20px;
  background:var(--revseller-surface-2);
  border:1px solid var(--revseller-border);
}

.revseller-page .revseller-show-card-featured{
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--revseller-site-color) 10%, transparent), transparent 34%),
    var(--revseller-surface-2);
}

.revseller-page .revseller-show-icon{
  width:64px;
  height:64px;
  margin-bottom:14px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:color-mix(in srgb, var(--revseller-site-color) 10%, transparent);
  border:1px solid color-mix(in srgb, var(--revseller-site-color) 16%, transparent);
}

.revseller-page .revseller-show-icon img{
  width:32px;
  height:32px;
  object-fit:contain;
}

.revseller-page .revseller-show-card h4{
  margin:0 0 8px;
  color:var(--revseller-title);
  font-size:17px;
  font-weight:800;
}

.revseller-page .revseller-show-card p{
  margin:0;
  color:var(--revseller-text-soft);
  font-size:14px;
  line-height:1.75;
}

/* PROCESS */
.revseller-page .revseller-process{
  margin-top:24px;
}

.revseller-page .revseller-process-card{
  display:grid;
  grid-template-columns:.96fr 1.04fr;
  gap:18px;
  padding:24px;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--revseller-site-color) 78%, #09111f) 0%,
      #0d1524 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--revseller-shadow);
}

.revseller-page .revseller-process-left h3{
  margin:0 0 10px;
  color:#fff;
  font-size:32px;
  line-height:1.15;
  font-weight:900;
}

.revseller-page .revseller-process-left p{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:15px;
  line-height:1.85;
}

.revseller-page .revseller-process-right{
  display:grid;
  gap:12px;
}

.revseller-page .revseller-process-step{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}

.revseller-page .revseller-process-step span{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--revseller-site-color);
  font-size:14px;
  font-weight:900;
}

.revseller-page .revseller-process-step strong{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.4;
  font-weight:800;
  margin-bottom:4px;
}

.revseller-page .revseller-process-step p{
  margin:0;
  color:rgba(255,255,255,.74);
  font-size:13px;
  line-height:1.7;
}

.revseller-page .revseller-profit-section{
  margin-top:24px;
}

.revseller-page .revseller-profit-card{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:18px;
  padding:24px;
  border-radius:24px;
  background:var(--revseller-surface);
  border:1px solid var(--revseller-border);
  box-shadow:var(--revseller-shadow-soft);
}

.revseller-page .revseller-profit-left h3{
  margin:0 0 10px;
  color:var(--revseller-title);
  font-size:32px;
  line-height:1.15;
  font-weight:900;
}

.revseller-page .revseller-profit-left p{
  margin:0;
  color:var(--revseller-text-soft);
  font-size:15px;
  line-height:1.85;
}

.revseller-page .revseller-profit-right{
  padding:18px;
  border-radius:20px;
  background:var(--revseller-surface-2);
  border:1px solid var(--revseller-border);
}

.revseller-page .revseller-profit-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--revseller-border);
  color:var(--revseller-text);
  font-size:14px;
}

.revseller-page .revseller-profit-row:first-child{
  padding-top:0;
}

.revseller-page .revseller-profit-row:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.revseller-page .revseller-profit-row strong{
  color:var(--revseller-title);
  font-weight:900;
}

.revseller-page .revseller-profit-final strong{
  color:var(--revseller-green);
}

.revseller-page .revseller-proof{
  overflow:hidden;
}

.revseller-page .revseller-proof-inner{
  padding:32px 24px;
  text-align:center;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--revseller-site-color) 78%, #0b0f19) 0%,
      #0e1728 100%);
}

.revseller-page .revseller-proof-inner h3{
  margin:0 0 12px;
  color:#fff;
  font-size:34px;
  line-height:1.1;
  font-weight:900;
}

.revseller-page .revseller-proof-inner p{
  max-width:840px;
  margin:0 auto;
  color:rgba(255,255,255,.84);
  font-size:15px;
  line-height:1.85;
}

.revseller-page .revseller-proof-tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.revseller-page .revseller-proof-tags span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.revseller-page .revseller-cta{
  padding:24px;
}

@media (max-width: 992px){
  .revseller-page .revseller-hero,
  .revseller-page .revseller-process-card,
  .revseller-page .revseller-profit-card{
    grid-template-columns:1fr;
  }

  .revseller-page .revseller-hero-points,
  .revseller-page .revseller-brandbar,
  .revseller-page .revseller-showcase-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 700px){
  .revseller-page .revseller-wrap{
    padding:16px 10px 34px;
  }

  .revseller-page .revseller-hero,
  .revseller-page .revseller-showcase,
  .revseller-page .revseller-process-card,
  .revseller-page .revseller-profit-card,
  .revseller-page .revseller-proof-inner,
  .revseller-page .revseller-cta{
    padding:20px 14px;
    border-radius:20px;
  }

  .revseller-page .revseller-hero-points,
  .revseller-page .revseller-brandbar,
  .revseller-page .revseller-showcase-grid,
  .revseller-page .revseller-mini-profit{
    grid-template-columns:1fr;
  }

  .revseller-page .revseller-actions{
    flex-direction:column;
  }

  .revseller-page .revseller-btn{
    width:100%;
  }

  .revseller-page .revseller-title{
    font-size:31px;
    line-height:1.08;
    letter-spacing:-1px;
  }

  .revseller-page .revseller-subtitle{
    font-size:15px;
    line-height:1.75;
  }

  .revseller-page .revseller-section-head h2,
  .revseller-page .revseller-process-left h3,
  .revseller-page .revseller-profit-left h3,
  .revseller-page .revseller-proof-inner h3{
    font-size:24px;
  }

  .revseller-page .revseller-profit-row{
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  .revseller-page .revseller-process-step{
    grid-template-columns:46px 1fr;
  }

  .revseller-page .revseller-process-step span{
    width:46px;
    height:46px;
    border-radius:14px;
  }
}

.appv4-page{
  --appv4-blue-1: #4c6fff;
  --appv4-blue-2: #6585ff;
  --appv4-blue-3: #7fa7ff;
  --appv4-blue-4: #38bdf8;
  --appv4-blue-5: #bcd4ff;
  --appv4-glow-1: rgba(76,111,255,.22);
  --appv4-glow-2: rgba(101,133,255,.16);
  --appv4-glow-3: rgba(56,189,248,.14);
  --appv4-shadow: 0 12px 30px rgba(0,0,0,.07);
  --appv4-shadow-soft: 0 8px 22px rgba(0,0,0,.05);
  padding: 12px 0 30px;
  color: var(--fsk-800);
}

.appv4-wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.appv4-card{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent),
    var(--fsk-100);
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 3);
  box-shadow: var(--appv4-shadow);
}

.appv4-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent 32%);
  pointer-events: none;
}

.appv4-hero{
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  isolation: isolate;
}

.appv4-topline{
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--appv4-blue-1), var(--appv4-blue-4), transparent);
  opacity: .95;
}

.appv4-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, var(--appv4-glow-1), transparent 26%),
    radial-gradient(circle at 88% 14%, var(--appv4-glow-2), transparent 24%),
    radial-gradient(circle at 76% 86%, var(--appv4-glow-3), transparent 22%);
  pointer-events: none;
}

.appv4-grid{
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, #000 42%, transparent 100%);
  pointer-events: none;
}

.appv4-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.appv4-lines::before,
.appv4-lines::after{
  content: "";
  position: absolute;
  height: 1px;
  width: 240px;
  background: linear-gradient(90deg, transparent, rgba(127,167,255,.42), transparent);
  opacity: .7;
}

.appv4-lines::before{
  top: 78px;
  right: 84px;
}

.appv4-lines::after{
  bottom: 92px;
  left: 36px;
}

.appv4-orb{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.appv4-orb-a{
  width: 210px;
  height: 210px;
  left: -60px;
  top: -55px;
  background: var(--appv4-glow-1);
  animation: appv4Float 8s ease-in-out infinite;
}

.appv4-orb-b{
  width: 185px;
  height: 185px;
  right: -46px;
  bottom: -55px;
  background: var(--appv4-glow-2);
  animation: appv4Float 10s ease-in-out infinite reverse;
}

.appv4-orb-c{
  width: 150px;
  height: 150px;
  right: 30%;
  top: 10%;
  background: var(--appv4-glow-3);
  animation: appv4Float 9s ease-in-out infinite;
}

.appv4-left,
.appv4-right{
  position: relative;
  z-index: 1;
}

.appv4-topbar{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.appv4-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(101,133,255,.18);
  font-size: 12px;
  font-weight: 700;
  color: var(--fsk-700);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.appv4-chip i{
  color: var(--appv4-blue-2);
}

.appv4-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(76,111,255,.14), rgba(56,189,248,.10));
  border: 1px solid rgba(101,133,255,.22);
  font-size: 12px;
  font-weight: 700;
  color: var(--fsk-800);
}

.appv4-badge i{
  color: var(--appv4-blue-1);
}

.appv4-title{
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.95px;
  color: var(--fsk-800);
}

.appv4-title span{
  background: linear-gradient(90deg, var(--appv4-blue-1), var(--appv4-blue-2), var(--appv4-blue-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.appv4-desc{
  margin: 0 0 18px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--fsk-600);
}

.appv4-feature-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.appv4-feature{
  position: relative;
  padding: 14px 14px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(101,133,255,.16);
  font-size: 13px;
  color: var(--fsk-700);
  transition: .25s ease;
}

.appv4-feature:hover{
  transform: translateY(-2px);
  border-color: rgba(76,111,255,.34);
  box-shadow: var(--appv4-shadow-soft);
}

.appv4-feature::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(101,133,255,.65), transparent);
  opacity: .8;
}

.appv4-feature-icon{
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(76,111,255,.16), rgba(56,189,248,.10));
  border: 1px solid rgba(101,133,255,.22);
  color: var(--appv4-blue-1);
  font-size: 14px;
}

.appv4-feature strong{
  display: block;
  margin-bottom: 4px;
  color: var(--fsk-800);
  font-size: 13px;
}

.appv4-feature span{
  display: block;
  line-height: 1.6;
}

.appv4-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.appv4-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: calc(var(--fsk-site-border) * 2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  transition: .22s ease;
}

.appv4-btn:hover{
  transform: translateY(-2px);
}

.appv4-btn-primary{
  color: #fff;
  background: linear-gradient(90deg, var(--appv4-blue-1), var(--appv4-blue-2));
  box-shadow: 0 10px 24px rgba(76,111,255,.22);
}

.appv4-btn-primary::after{
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: appv4Shine 3.8s linear infinite;
}

.appv4-btn-secondary{
  color: var(--fsk-800);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(101,133,255,.16);
}

.appv4-statbar{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin-top: 18px;
}

.appv4-stat{
  position: relative;
  padding: 15px 12px;
  text-align: center;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(101,133,255,.16);
}

.appv4-stat::after{
  content: "";
  position: absolute;
  inset: auto 10px 0 10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(76,111,255,.70), transparent);
}

.appv4-stat strong{
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--fsk-800);
  margin-bottom: 4px;
}

.appv4-stat span{
  font-size: 12px;
  color: var(--fsk-600);
}

.appv4-preview{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.appv4-ring{
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px dashed rgba(101,133,255,.24);
  animation: appv4Spin 30s linear infinite;
  pointer-events: none;
}

.appv4-ring::before{
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px dashed rgba(56,189,248,.14);
}

.appv4-ring::after{
  content: "";
  position: absolute;
  inset: 46px;
  border-radius: 50%;
  border: 1px dashed rgba(127,167,255,.14);
}

.appv4-phone{
  position: relative;
  width: min(100%, 310px);
  padding: 11px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(76,111,255,.10), rgba(56,189,248,.05)),
    linear-gradient(180deg, var(--fsk-200), #ffffff08);
  border: 1px solid rgba(101,133,255,.20);
  box-shadow: 0 20px 40px rgba(0,0,0,.16);
}

.appv4-phone::before{
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 10px;
  border-radius: 0 0 10px 10px;
  background: rgba(0,0,0,.18);
}

.appv4-phone::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%);
  pointer-events: none;
}

.appv4-phone img{
  display: block;
  width: 100%;
  border-radius: 20px;
}

.appv4-float{
  position: absolute;
  z-index: 2;
  min-width: 138px;
  padding: 10px 12px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(101,133,255,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  font-size: 12px;
  line-height: 1.4;
  color: var(--fsk-700);
  animation: appv4Float 7s ease-in-out infinite;
}

.appv4-float strong{
  display: block;
  font-size: 13px;
  color: var(--fsk-800);
  margin-bottom: 2px;
}

.appv4-float i{
  color: var(--appv4-blue-1);
  margin-right: 6px;
}

.appv4-float-a{
  top: 14px;
  left: -8px;
}

.appv4-float-b{
  right: -4px;
  bottom: 16px;
  animation-delay: 1.2s;
}

.appv4-float-c{
  top: 46%;
  left: -18px;
  animation-delay: .6s;
}

.appv4-section{
  position: relative;
  padding: 22px;
}

.appv4-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101,133,255,.22), transparent);
}

.appv4-section-ios{
  background:
    radial-gradient(circle at top right, rgba(101,133,255,.10), transparent 24%),
    var(--fsk-100);
}

.appv4-section-android{
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.10), transparent 24%),
    var(--fsk-100);
}

.appv4-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.appv4-head h3{
  margin: 0 0 4px;
  font-size: 23px;
  font-weight: 800;
  color: var(--fsk-800);
}

.appv4-head p{
  margin: 0;
  font-size: 13px;
  color: var(--fsk-600);
}

.appv4-head-right{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(101,133,255,.18);
  font-size: 12px;
  font-weight: 700;
  color: var(--fsk-700);
}

.appv4-head-right i{
  color: var(--appv4-blue-1);
}

.appv4-steps{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.appv4-step{
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(101,133,255,.16);
  transition: .24s ease;
}

.appv4-step:hover{
  transform: translateY(-3px);
  border-color: rgba(76,111,255,.28);
  box-shadow: var(--appv4-shadow-soft);
}

.appv4-step::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--appv4-blue-1), var(--appv4-blue-4));
  opacity: 0;
  transition: .24s ease;
}

.appv4-step:hover::after{
  opacity: 1;
}

.appv4-step-top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.appv4-step-number{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--appv4-blue-1), var(--appv4-blue-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 34px;
  box-shadow: 0 8px 16px rgba(76,111,255,.20);
}

.appv4-step h4{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--fsk-800);
}

.appv4-step p{
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--fsk-600);
}

.appv4-tip{
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(101,133,255,.18);
  font-size: 13px;
  line-height: 1.7;
  color: var(--fsk-700);
}

.appv4-tip strong{
  color: var(--fsk-800);
}

@keyframes appv4Float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

@keyframes appv4Spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

@keyframes appv4Shine{
  0%{ left: -35%; }
  100%{ left: 120%; }
}

@media (max-width: 980px){
  .appv4-hero{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .appv4-feature-grid{
    grid-template-columns: 1fr;
  }

  .appv4-actions{
    justify-content: center;
  }

  .appv4-statbar{
    grid-template-columns: repeat(2, 1fr);
  }

  .appv4-float,
  .appv4-lines{
    display: none;
  }
}

@media (max-width: 768px){
  .appv4-hero,
  .appv4-section{
    padding: 18px;
  }

  .appv4-title{
    font-size: 27px;
  }

  .appv4-steps,
  .appv4-statbar{
    grid-template-columns: 1fr;
  }

  .appv4-topbar{
    justify-content: center;
  }
}


.supx-page{

    position: relative;

    z-index: 1;

    width: 100%;

    isolation: isolate;

    overflow: hidden;

    --supx-border:
    rgba(255,255,255,.08);

    --supx-border-soft:
    rgba(255,255,255,.05);

    --supx-shadow:
    0 8px 30px rgba(0,0,0,.08);

    --supx-shadow-hover:
    0 16px 40px rgba(0,0,0,.14);

    --supx-text:
    var(--fsk-900,#0f172a);

    --supx-text-soft:
    #64748b;

    --supx-panel:
    rgba(255,255,255,.96);

    --supx-panel-2:
    rgba(248,250,252,.98);

    --supx-accent:
    var(--fsk-site-color,#345cff);

    --supx-gradient:
    linear-gradient(135deg,
    #345cff 0%,
    #5d7cff 100%);
}


html[data-theme="dark"] .supx-page,
.dark .supx-page,
body.dark .supx-page{

    --supx-text:
    #f8fbff;

    --supx-text-soft:
    #9fb0cb;

    --supx-panel:
    rgba(18,27,44,.98);

    --supx-panel-2:
    rgba(22,33,52,.98);

    --supx-border:
    rgba(255,255,255,.08);

    --supx-border-soft:
    rgba(255,255,255,.05);

    --supx-shadow:
    0 14px 40px rgba(0,0,0,.28);

    --supx-shadow-hover:
    0 20px 55px rgba(0,0,0,.42);
}


.supx-wrap{

    max-width: 1380px;

    margin: auto;

    padding: 22px 14px 50px;
}


.supx-grid{

    display: grid;

    grid-template-columns:
    minmax(0,1.45fr)
    minmax(300px,.50fr);

    gap: 24px;

    align-items: start;
}


.supx-main{
    min-width: 0;
}


.supx-side{

    position: sticky;

    top: 90px;

    min-width: 0;
}


.supx-section-head{

    margin-bottom: 16px;
}

.supx-kicker{

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 13px;

    border-radius: 999px;

    background:
    rgba(52,92,255,.08);

    border:
    1px solid rgba(52,92,255,.10);

    color:
    var(--supx-accent);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;

    margin-bottom: 12px;
}


.supx-section-title{

    margin: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 34px;
    font-weight: 900;

    letter-spacing: -.04em;

    color:
    var(--supx-text);
}

.supx-section-title i{

    width: 50px;
    height: 50px;

    border-radius: 18px;

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

    background:
    var(--supx-gradient);

    color: #fff;

    font-size: 18px;

    box-shadow:
    0 10px 24px rgba(52,92,255,.18);
}


.supx-chat-card{

    position: relative;

    overflow: hidden;

    border-radius: 34px;

    background:
    linear-gradient(180deg,
    var(--supx-panel) 0%,
    var(--supx-panel-2) 100%);

    border:
    1px solid var(--supx-border-soft);

    box-shadow:
    var(--supx-shadow);
}

.supx-chat-top{

    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    border-bottom:
    1px solid var(--supx-border);

    background:
    rgba(255,255,255,.02);
}


.supx-chat-status{

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

    gap: 10px;

    color:
    var(--supx-text);

    font-size: 14px;
    font-weight: 700;
}


.supx-dot{

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background:
    #22c55e;

    box-shadow:
    0 0 0 5px rgba(34,197,94,.12);
}


.supx-chat-iframe{

    width: 100%;
    height: 760px;

    border: 0;

    background:
    transparent;

    position: relative;

    z-index: 1;
}


.supx-side-card{

    border-radius: 30px;

    background:
    linear-gradient(180deg,
    var(--supx-panel) 0%,
    var(--supx-panel-2) 100%);

    border:
    1px solid var(--supx-border-soft);

    box-shadow:
    var(--supx-shadow);

    padding: 18px;
}


.supx-menu{

    display: flex;
    flex-direction: column;

    gap: 14px;
}


.supx-item{

    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 16px;

    border-radius: 22px;

    text-decoration: none;

    background:
    rgba(255,255,255,.02);

    border:
    1px solid transparent;

    transition:
    .24s ease;
}

.supx-item:hover{

    transform:
    translateY(-4px);

    background:
    rgba(52,92,255,.05);

    border-color:
    rgba(52,92,255,.12);

    box-shadow:
    var(--supx-shadow-hover);

    text-decoration: none;
}


.supx-item-icon{

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 18px;

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

    background:
    var(--supx-gradient);

    color: #fff;

    font-size: 18px;

    box-shadow:
    0 10px 22px rgba(52,92,255,.18);
}


.supx-item-text{

    min-width: 0;
}

.supx-item-text strong{

    display: block;

    color:
    var(--supx-text);

    font-size: 15px;
    font-weight: 800;

    margin-bottom: 4px;
}

.supx-item-text span{

    color:
    var(--supx-text-soft);

    font-size: 13px;

    line-height: 1.7;
}


.supx-help-box{

    margin-top: 18px;

    padding: 18px;

    border-radius: 24px;

    background:
    rgba(52,92,255,.05);

    border:
    1px solid rgba(52,92,255,.08);
}

.supx-help-box h3{

    margin: 0 0 10px;

    color:
    var(--supx-text);

    font-size: 16px;
    font-weight: 900;
}

.supx-help-box p{

    margin: 0;

    color:
    var(--supx-text-soft);

    line-height: 1.85;

    font-size: 14px;
}

@media (max-width: 1100px){

    .supx-grid{
        grid-template-columns: 1fr;
    }

    .supx-side{

        position: relative;

        top: 0;
    }

}

@media (max-width: 768px){

    .supx-wrap{

        padding: 16px 12px 40px;
    }

    .supx-section-title{

        font-size: 28px;
    }

    .supx-section-title i{

        width: 44px;
        height: 44px;

        font-size: 16px;
    }

    .supx-chat-card,
    .supx-side-card{

        border-radius: 24px;
    }

    .supx-chat-iframe{

        height: 620px;
    }

}

@media (max-width: 576px){

    .supx-chat-iframe{

        height: 560px;
    }

    .supx-item{

        padding: 14px;
    }

    .supx-item-icon{

        width: 46px;
        height: 46px;

        flex: 0 0 46px;

        font-size: 16px;
    }

    .supx-section-title{

        font-size: 24px;
    }

}

.rev-gifts-page{
  scroll-behavior:smooth;
}

.rev-gifts-page{
  --rev-blue-1: var(--fsk-site-color);
  --rev-blue-2: #4f73f0;
  --rev-blue-3: #81a4ff;
  --rev-cyan: #38bdf8;
  --rev-green: #22c55e;
  --rev-gold: #f5c04e;
  --rev-pink: #a855f7;
  --rev-red: #ef4444;
  --rev-dark: #0f172a;
  --rev-shadow: 0 12px 28px rgba(0,0,0,.07);
  --rev-shadow-soft: 0 10px 20px rgba(0,0,0,.05);
  --rev-shadow-hover: 0 20px 40px rgba(0,0,0,.12);
  color: var(--fsk-800);
}

.rev-gifts-wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rev-card{
  position: relative;
  overflow: hidden;
  background: var(--fsk-100);
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 3);
  box-shadow: var(--rev-shadow);
}

.rev-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent 35%);
  pointer-events: none;
}

.rev-hero{
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 26px;
  align-items: center;
  padding: 28px;
  isolation: isolate;
}

.rev-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(48,83,218,.16), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(56,189,248,.12), transparent 22%),
    radial-gradient(circle at 72% 82%, rgba(129,164,255,.10), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.03), transparent 45%);
  pointer-events: none;
}

.rev-hero-topline{
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rev-blue-1), var(--rev-cyan), transparent);
}

.rev-hero-grid{
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, #000 42%, transparent 100%);
  pointer-events: none;
}

.rev-hero-left,
.rev-hero-right{
  position: relative;
  z-index: 1;
}

.rev-chip-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.rev-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(79,115,240,.18);
  font-size: 12px;
  font-weight: 700;
  color: var(--fsk-700);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.rev-chip i{
  color: var(--rev-blue-1);
}

.rev-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(48,83,218,.12), rgba(56,189,248,.08));
  border: 1px solid rgba(79,115,240,.18);
  font-size: 12px;
  font-weight: 700;
  color: var(--fsk-800);
}

.rev-badge i{
  color: var(--rev-blue-1);
}

.rev-title{
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.03;
  letter-spacing: -.95px;
  font-weight: 900;
  color: var(--fsk-800);
}

.rev-title span{
  background: linear-gradient(90deg, var(--rev-blue-1), var(--rev-blue-2), var(--rev-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rev-desc{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--fsk-600);
  max-width: 690px;
}

.rev-highlight-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

.rev-highlight{
  padding: 14px 15px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(79,115,240,.16);
  font-size: 13px;
  color: var(--fsk-700);
  backdrop-filter: blur(1px);
}

.rev-highlight i{
  color: var(--rev-blue-1);
  margin-right: 8px;
}

.rev-hero-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.rev-hero-ring{
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(79,115,240,.22);
  animation: revSpin 28s linear infinite;
}

.rev-hero-ring::before{
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(56,189,248,.14);
}

.rev-hero-ring::after{
  content: "";
  position: absolute;
  inset: 46px;
  border-radius: 50%;
  border: 1px dashed rgba(168,85,247,.10);
}

.rev-gift-box{
  position: relative;
  width: min(100%, 318px);
  padding: 22px;
  border-radius: calc(var(--fsk-site-border) * 4);
  background:
    radial-gradient(circle at top left, rgba(129,164,255,.16), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    var(--fsk-100);
  border: 1px solid rgba(79,115,240,.18);
  box-shadow: 0 20px 44px rgba(0,0,0,.13);
  text-align: center;
}

.rev-gift-icon{
  width: 82px;
  height: 82px;
  margin: 0 auto 12px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rev-blue-1), var(--rev-cyan));
  color: #fff;
  font-size: 31px;
  box-shadow: 0 14px 28px rgba(48,83,218,.24);
}

.rev-gift-box h3{
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--fsk-800);
  font-weight: 800;
}

.rev-gift-box p{
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--fsk-600);
}

.rev-floating-note{
  position: absolute;
  min-width: 132px;
  padding: 10px 12px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(79,115,240,.16);
  box-shadow: var(--rev-shadow-soft);
  font-size: 12px;
  color: var(--fsk-700);
  animation: revFloat 7s ease-in-out infinite;
}

.rev-floating-note strong{
  display: block;
  font-size: 13px;
  color: var(--fsk-800);
  margin-bottom: 3px;
}

.rev-floating-note i{
  color: var(--rev-blue-1);
  margin-right: 6px;
}

.rev-floating-a{
  top: 10px;
  left: -6px;
}

.rev-floating-b{
  right: -6px;
  bottom: 14px;
  animation-delay: 1.2s;
}

.rev-section{
  padding: 18px;
}

.rev-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.rev-task-card{
  position: relative;
  overflow: hidden;
  padding: 16px 14px 14px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    var(--fsk-100);
  border: 1px solid var(--fsk-200);
  transition: .26s ease;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.rev-task-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 35%);
  pointer-events: none;
}

.rev-task-card::after{
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79,115,240,.65), transparent);
  opacity: .75;
}

.rev-task-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--rev-shadow-hover);
}

.rev-rank{
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(48,83,218,.18);
}

.rank-on{
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.rank-off{
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.rev-task-card.youtube{ border-color: rgba(239,68,68,.20); }
.rev-task-card.youtube:hover{ border-color: rgba(239,68,68,.35); }
.rev-task-card.youtube .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(239,68,68,.12), rgba(239,68,68,.05));
  border-color: rgba(239,68,68,.18);
}
.rev-task-card.youtube::after{ background: linear-gradient(90deg, transparent, rgba(239,68,68,.75), transparent); }

.rev-task-card.tiktok{ border-color: rgba(34,197,94,.16); }
.rev-task-card.tiktok:hover{ border-color: rgba(56,189,248,.30); }
.rev-task-card.tiktok .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(56,189,248,.12), rgba(168,85,247,.05));
  border-color: rgba(56,189,248,.18);
}
.rev-task-card.tiktok::after{ background: linear-gradient(90deg, transparent, rgba(56,189,248,.75), transparent); }

.rev-task-card.reddit{ border-color: rgba(249,115,22,.18); }
.rev-task-card.reddit:hover{ border-color: rgba(249,115,22,.34); }
.rev-task-card.reddit .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(249,115,22,.12), rgba(249,115,22,.04));
  border-color: rgba(249,115,22,.18);
}
.rev-task-card.reddit::after{ background: linear-gradient(90deg, transparent, rgba(249,115,22,.75), transparent); }

.rev-task-card.google{ border-color: rgba(66,133,244,.18); }
.rev-task-card.google:hover{ border-color: rgba(66,133,244,.34); }
.rev-task-card.google .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(66,133,244,.12), rgba(52,168,83,.05));
  border-color: rgba(66,133,244,.18);
}
.rev-task-card.google::after{ background: linear-gradient(90deg, transparent, rgba(66,133,244,.75), transparent); }

.rev-task-card.trustpilot{ border-color: rgba(34,197,94,.18); }
.rev-task-card.trustpilot:hover{ border-color: rgba(34,197,94,.34); }
.rev-task-card.trustpilot .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(34,197,94,.12), rgba(34,197,94,.04));
  border-color: rgba(34,197,94,.18);
}
.rev-task-card.trustpilot::after{ background: linear-gradient(90deg, transparent, rgba(34,197,94,.75), transparent); }

.rev-task-card.twitter{ border-color: rgba(15,23,42,.16); }
.rev-task-card.twitter:hover{ border-color: rgba(15,23,42,.28); }
.rev-task-card.twitter .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.02));
  border-color: rgba(15,23,42,.12);
}
.rev-task-card.twitter::after{ background: linear-gradient(90deg, transparent, rgba(15,23,42,.65), transparent); }

.rev-task-card.facebook{ border-color: rgba(24,119,242,.18); }
.rev-task-card.facebook:hover{ border-color: rgba(24,119,242,.34); }
.rev-task-card.facebook .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(24,119,242,.12), rgba(24,119,242,.04));
  border-color: rgba(24,119,242,.18);
}
.rev-task-card.facebook::after{ background: linear-gradient(90deg, transparent, rgba(24,119,242,.75), transparent); }

.rev-task-card.discord{ border-color: rgba(88,101,242,.18); }
.rev-task-card.discord:hover{ border-color: rgba(88,101,242,.34); }
.rev-task-card.discord .rev-task-icon-wrap{
  background: linear-gradient(180deg, rgba(88,101,242,.12), rgba(88,101,242,.04));
  border-color: rgba(88,101,242,.18);
}
.rev-task-card.discord::after{ background: linear-gradient(90deg, transparent, rgba(88,101,242,.75), transparent); }

.rev-task-icon-wrap{
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.rev-task-icon{
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.rev-task-title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--fsk-800);
}

.rev-task-reward{
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--rev-green);
}

.rev-task-text{
  min-height: 52px;
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--fsk-600);
}

.rev-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: calc(var(--fsk-site-border) * 2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: .2s ease;
}

.rev-btn:hover{
  transform: translateY(-1px);
}

.rev-btn-primary{
  color: #fff;
  background: var(--fsk-site-gradient);
  box-shadow: 0 8px 16px rgba(48,83,218,.16);
}

.rev-steps-banner{
  position: relative;
  overflow: hidden;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at left center, rgba(56,189,248,.10), transparent 22%),
    radial-gradient(circle at right center, rgba(48,83,218,.14), transparent 22%),
    linear-gradient(90deg, rgba(48,83,218,.85), rgba(35,72,193,.95));
  color: #fff;
  border-radius: calc(var(--fsk-site-border) * 3);
}

.rev-steps-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at center, rgba(255,255,255,.05) 0 8px, transparent 8px 18px);
  opacity: .15;
  pointer-events: none;
}

.rev-steps-banner h3{
  position: relative;
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
}

.rev-steps-banner p{
  position: relative;
  margin: 0 0 20px;
  font-size: 13px;
  color: rgba(255,255,255,.86);
}

.rev-steps-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.rev-step-item{
  text-align: center;
}

.rev-step-circle{
  width: 82px;
  height: 82px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 26px;
}

.rev-step-item:nth-child(1) .rev-step-circle{ color: #d7ff52; }
.rev-step-item:nth-child(2) .rev-step-circle{ color: #67ffd7; }
.rev-step-item:nth-child(3) .rev-step-circle{ color: #ffe15b; }

.rev-step-item h4{
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.rev-step-item p{
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.88);
}

.rev-rules{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: start;
}

.rev-rules-visual{
  display: flex;
  justify-content: center;
  align-items: center;
}

.rev-rules-badge{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.18), transparent 55%),
    linear-gradient(135deg, rgba(48,83,218,.16), rgba(56,189,248,.08));
  border: 1px solid rgba(79,115,240,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rev-rules-badge i{
  font-size: 58px;
  color: var(--rev-blue-1);
}

.rev-rules-text h3{
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
  color: var(--fsk-800);
}

.rev-rules-text > p{
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--fsk-600);
}

.rev-rules-list{
  margin: 0;
  padding-left: 18px;
}

.rev-rules-list li{
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--fsk-600);
}

.rev-rules-list b{
  color: var(--fsk-800);
}

.rev-faq-wrap{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rev-faq-title{
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 900;
  color: var(--fsk-800);
}

.rev-faq-subtitle{
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--fsk-600);
}

.faq-item{
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  overflow: hidden;
  scroll-margin-top: 90px;
}

.faq-header{
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--fsk-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: .2s ease;
}

.faq-header:hover{
  background: rgba(255,255,255,.03);
}

.faq-title-left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-title-left i{
  color: var(--rev-blue-1);
  font-size: 16px;
}

.faq-icon{
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--fsk-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fsk-site-color);
  font-weight: 900;
  transition: .2s ease;
}

.faq-item.active .faq-icon{
  transform: rotate(45deg);
}

.faq-content{
  display: none;
  padding: 0 18px 18px;
  border-top: 1px solid var(--fsk-200);
}

.faq-block__body-description{
  padding-top: 14px;
}

.faq-block__body-description p,
.faq-block__body-description li{
  font-size: 13px;
  line-height: 1.85;
  color: var(--fsk-600);
}

.faq-block__body-description strong,
.faq-block__body-description b{
  color: var(--fsk-800);
}

.faq-block__body-description ul,
.faq-block__body-description ol{
  padding-left: 18px;
  margin-bottom: 0;
}

.faq-meta{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 14px 0;
}

.faq-meta-box{
  padding: 12px 12px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--fsk-200);
}

.faq-meta-box span{
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--fsk-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.faq-meta-box strong{
  display: block;
  font-size: 14px;
  color: var(--fsk-800);
  font-weight: 800;
}

.faq-highlight-note{
  margin-top: 14px;
  padding: 14px 15px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: linear-gradient(180deg, rgba(79,115,240,.08), rgba(56,189,248,.04));
  border: 1px solid rgba(79,115,240,.18);
}

.faq-highlight-note p{
  margin: 0;
}

@keyframes revSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

@keyframes revFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

@media (max-width: 1100px){
  .rev-grid{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .rev-hero{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rev-highlight-list{
    grid-template-columns: 1fr;
  }

  .rev-floating-note{
    display: none;
  }

  .rev-rules{
    grid-template-columns: 1fr;
  }

  .rev-rules-visual{
    justify-content: center;
  }

  .faq-meta{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .rev-grid,
  .rev-steps-grid{
    grid-template-columns: 1fr;
  }

  .rev-hero,
  .rev-section{
    padding: 18px;
  }

  .rev-title{
    font-size: 26px;
  }
}

.revreqv2-page{
  scroll-behavior:smooth;
}

.revreqv2-page{
  --rq2-accent: var(--fsk-site-color);
  --rq2-accent-2: #8b5cf6;
  --rq2-accent-3: #38bdf8;
  --rq2-accent-4: #22c55e;
  --rq2-text: var(--fsk-800);
  --rq2-text-soft: var(--fsk-600);
  --rq2-border: var(--fsk-200);
  --rq2-panel: var(--fsk-100);
  --rq2-shadow: 0 18px 44px rgba(0,0,0,.08);
  --rq2-shadow-soft: 0 12px 28px rgba(0,0,0,.05);
  --rq2-shadow-hover: 0 24px 56px rgba(0,0,0,.12);
  color: var(--rq2-text);
}

.revreqv2-wrap{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.revreqv2-card{
  position:relative;
  overflow:hidden;
  background:var(--rq2-panel);
  border:1px solid var(--rq2-border);
  border-radius:calc(var(--fsk-site-border) * 3);
  box-shadow:var(--rq2-shadow);
}

.revreqv2-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.05), transparent 34%);
  pointer-events:none;
}

.revreqv2-hero{
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:calc(var(--fsk-site-border) * 3);
  background:
    radial-gradient(circle at 8% 18%, rgba(139,92,246,.18), transparent 22%),
    radial-gradient(circle at 92% 16%, rgba(56,189,248,.14), transparent 24%),
    radial-gradient(circle at 72% 90%, rgba(34,197,94,.10), transparent 22%),
    linear-gradient(135deg, #0d1426 0%, #111c35 44%, #111827 100%);
  color:#fff;
  box-shadow:var(--rq2-shadow);
  isolation:isolate;
}

.revreqv2-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:34px 34px;
  opacity:.35;
  mask-image:radial-gradient(circle at center, #000 52%, transparent 100%);
  pointer-events:none;
}

.revreqv2-topline{
  position:absolute;
  inset:0 0 auto 0;
  height:3px;
  background:linear-gradient(90deg, transparent, var(--rq2-accent), var(--rq2-accent-2), var(--rq2-accent-3), transparent);
}

.revreqv2-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:26px;
  align-items:center;
}

.revreqv2-badgebar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.revreqv2-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 13px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  color:#edf4ff;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(1px);
}

.revreqv2-badge i{
  color:#c7dcff;
}

.revreqv2-hero-title{
  margin:0 0 12px;
  font-size:clamp(30px, 5vw, 50px);
  line-height:1.02;
  letter-spacing:-.04em;
  font-weight:900;
  color:#fff;
}

.revreqv2-hero-title span{
  background:linear-gradient(90deg, #fff, #b7cfff, #8ce3ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.revreqv2-hero-desc{
  margin:0 0 18px;
  max-width:760px;
  font-size:14px;
  line-height:1.9;
  color:rgba(255,255,255,.86);
}

.revreqv2-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.revreqv2-point{
  padding:14px 15px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  color:#eef4ff;
  font-size:13px;
  font-weight:700;
}

.revreqv2-point i{
  color:#a9cfff;
  margin-right:8px;
}

.revreqv2-visual{
  position:relative;
  min-height:320px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.revreqv2-ring{
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  border:1px dashed rgba(255,255,255,.14);
  animation:rq2Spin 24s linear infinite;
}

.revreqv2-ring::before{
  content:"";
  position:absolute;
  inset:24px;
  border-radius:50%;
  border:1px dashed rgba(255,255,255,.09);
}

.revreqv2-ring::after{
  content:"";
  position:absolute;
  inset:54px;
  border-radius:50%;
  border:1px dashed rgba(255,255,255,.06);
}

.revreqv2-mainpanel{
  position:relative;
  width:min(100%, 320px);
  padding:22px;
  border-radius:28px;
  background:
    radial-gradient(circle at top left, rgba(139,92,246,.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(1px);
  box-shadow:0 22px 46px rgba(0,0,0,.24);
  text-align:center;
}

.revreqv2-mainicon{
  width:88px;
  height:88px;
  margin:0 auto 14px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--rq2-accent), var(--rq2-accent-2), var(--rq2-accent-3));
  color:#fff;
  font-size:34px;
  box-shadow:0 16px 30px rgba(56,189,248,.18);
}

.revreqv2-mainpanel h3{
  margin:0 0 8px;
  font-size:23px;
  font-weight:900;
  color:#fff;
}

.revreqv2-mainpanel p{
  margin:0;
  font-size:13px;
  line-height:1.8;
  color:rgba(255,255,255,.84);
}

.revreqv2-float{
  position:absolute;
  padding:11px 13px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  color:#eef4ff;
  font-size:12px;
  font-weight:700;
  backdrop-filter:blur(1px);
  box-shadow:0 12px 24px rgba(0,0,0,.16);
  animation:rq2Float 6.5s ease-in-out infinite;
}

.revreqv2-float i{
  margin-right:6px;
  color:#c7dcff;
}

.revreqv2-float-a{ left:0; top:24px; }
.revreqv2-float-b{ right:0; top:54px; animation-delay:1s; }
.revreqv2-float-c{ right:10px; bottom:20px; animation-delay:1.8s; }

.revreqv2-dual{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.revreqv2-mode{
  position:relative;
  overflow:hidden;
  padding:22px;
  border-radius:calc(var(--fsk-site-border) * 3);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    var(--rq2-panel);
  border:1px solid var(--rq2-border);
  box-shadow:var(--rq2-shadow-soft);
  transition:.25s ease;
}

.revreqv2-mode:hover{
  transform:translateY(-4px);
  box-shadow:var(--rq2-shadow);
}

.revreqv2-mode.provider{
  border-color:rgba(139,92,246,.22);
}

.revreqv2-mode.client{
  border-color:rgba(56,189,248,.22);
}

.revreqv2-modehead{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
}

.revreqv2-modeicon{
  width:60px;
  height:60px;
  border-radius:18px;
  flex:0 0 60px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:23px;
}

.revreqv2-mode.provider .revreqv2-modeicon{
  background:linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow:0 12px 24px rgba(168,85,247,.22);
}

.revreqv2-mode.client .revreqv2-modeicon{
  background:linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow:0 12px 24px rgba(56,189,248,.22);
}

.revreqv2-mode h3{
  margin:0 0 6px;
  font-size:23px;
  font-weight:900;
  color:var(--rq2-text);
}

.revreqv2-mode p{
  margin:0;
  font-size:13px;
  line-height:1.85;
  color:var(--rq2-text-soft);
}

.revreqv2-tags{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:16px;
}

.revreqv2-tag{
  padding:12px 13px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--rq2-border);
  font-size:12px;
  color:var(--rq2-text-soft);
  font-weight:700;
}

.revreqv2-tag i{
  color:var(--rq2-accent);
  margin-right:7px;
}

.revreqv2-columns{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}

.revreqv2-panel{
  position:relative;
  overflow:hidden;
  padding:22px;
  border-radius:calc(var(--fsk-site-border) * 3);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    var(--rq2-panel);
  border:1px solid var(--rq2-border);
}

.revreqv2-paneltitle{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.revreqv2-paneltitle i{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:17px;
  background:linear-gradient(135deg, var(--rq2-accent), var(--rq2-accent-2));
  box-shadow:0 12px 24px rgba(79,115,240,.16);
}

.revreqv2-paneltitle h4{
  margin:0;
  font-size:24px;
  font-weight:900;
  color:var(--rq2-text);
}

.revreqv2-list{
  display:grid;
  gap:12px;
}

.revreqv2-row{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:start;
}

.revreqv2-num{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:13px;
  font-weight:900;
  background:linear-gradient(135deg, var(--rq2-accent), var(--rq2-accent-2));
  box-shadow:0 10px 20px rgba(79,115,240,.15);
}

.revreqv2-row p{
  margin:0;
  font-size:13px;
  line-height:1.85;
  color:var(--rq2-text-soft);
}

.revreqv2-row b{
  color:var(--rq2-text);
}

.revreqv2-infobar{
  margin-top:16px;
  padding:14px 15px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(79,115,240,.08), rgba(56,189,248,.04));
  border:1px solid rgba(79,115,240,.16);
}

.revreqv2-infobar p{
  margin:0;
  font-size:13px;
  line-height:1.8;
  color:var(--rq2-text-soft);
}

.revreqv2-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.revreqv2-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:0 18px;
  border-radius:16px;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  transition:.22s ease;
}

.revreqv2-btn:hover{
  transform:translateY(-2px);
}

.revreqv2-btn-primary{
  color:#fff;
  background:var(--fsk-site-gradient);
  box-shadow:0 12px 22px rgba(79,115,240,.18);
}

.revreqv2-btn-soft{
  color:var(--rq2-text);
  background:rgba(255,255,255,.04);
  border:1px solid var(--rq2-border);
}

.revreqv2-illustration{
  position:relative;
  min-height:100%;
  padding:20px;
  border-radius:calc(var(--fsk-site-border) * 3);
  background:
    radial-gradient(circle at 16% 16%, rgba(139,92,246,.12), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(56,189,248,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--rq2-border);
  display:flex;
  align-items:center;
  justify-content:center;
}

.revreqv2-illustration{
    display:flex;
    align-items:center;
    justify-content:center;
}

.revreqv2-stackcard{

    position:absolute;

    width:280px;

    border-radius:28px;
}


.revreqv2-stackcard.main{

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    z-index:3;
}


.revreqv2-stackcard.side-a{

    top:20px;
    right:0;

    transform:
    rotate(8deg);

    opacity:.92;

    z-index:2;
}


.revreqv2-stackcard.side-b{

    bottom:10px;
    left:0;

    transform:
    rotate(-8deg);

    opacity:.88;

    z-index:1;
}

.revreqv2-stack{
    position:relative;

    width:100%;
    max-width:420px;

    height:420px;

    margin:auto;
}

.revreqv2-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(1px);
  opacity:.34;
}

.revreqv2-orb.a{
  width:120px;
  height:120px;
  left:0;
  top:8px;
  background:rgba(139,92,246,.26);
}

.revreqv2-orb.b{
  width:132px;
  height:132px;
  right:0;
  top:42px;
  background:rgba(56,189,248,.24);
}

.revreqv2-orb.c{
  width:110px;
  height:110px;
  left:116px;
  bottom:6px;
  background:rgba(79,115,240,.20);
}

.revreqv2-stackcard{
  position:absolute;
  border-radius:24px;
  padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(1px);
  box-shadow:0 18px 34px rgba(0,0,0,.12);
}

.revreqv2-stackcard i{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
  margin-bottom:10px;
}

.revreqv2-stackcard h5{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
  color:var(--rq2-text);
}

.revreqv2-stackcard p{
  margin:0;
  font-size:12px;
  line-height:1.75;
  color:var(--rq2-text-soft);
}

.revreqv2-stackcard.main{
  left:28px;
  top:84px;
  width:246px;
}

.revreqv2-stackcard.main i{
  background:linear-gradient(135deg, #8b5cf6, #a855f7);
}

.revreqv2-stackcard.side-a{
  right:10px;
  top:26px;
  width:156px;
}

.revreqv2-stackcard.side-a i{
  background:linear-gradient(135deg, #2563eb, #38bdf8);
}

.revreqv2-stackcard.side-b{
  right:0;
  bottom:18px;
  width:172px;
}

.revreqv2-stackcard.side-b i{
  background:linear-gradient(135deg, #0ea5e9, #6366f1);
}

.revreqv2-faqgrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.revreqv2-faqbox{
  padding:22px;
  border-radius:calc(var(--fsk-site-border) * 3);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    var(--rq2-panel);
  border:1px solid var(--rq2-border);
}

.revreqv2-faqbox-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px;
}

.revreqv2-faqbox-title i{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--rq2-accent), var(--rq2-accent-2));
  color:#fff;
  font-size:16px;
}

.revreqv2-faqbox-title h4{
  margin:0;
  font-size:22px;
  font-weight:900;
  color:var(--rq2-text);
}

.revreqv2-faq{
  display:grid;
  gap:12px;
}

.revreqv2-faqitem{
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--rq2-border);
  background:rgba(255,255,255,.03);
}

.revreqv2-faqhead{
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
}

.revreqv2-faqleft{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:800;
  color:var(--rq2-text);
}

.revreqv2-faqleft i{
  color:var(--rq2-accent);
}

.revreqv2-faqtoggle{
  width:28px;
  height:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--fsk-200);
  color:var(--rq2-accent);
  font-weight:900;
  transition:.2s ease;
}

.revreqv2-faqitem.active .revreqv2-faqtoggle{
  transform:rotate(45deg);
}

.revreqv2-faqbody{
  display:none;
  padding:0 18px 18px;
  border-top:1px solid var(--rq2-border);
}

.revreqv2-faqbody p,
.revreqv2-faqbody li{
  margin:0 0 8px;
  font-size:13px;
  line-height:1.85;
  color:var(--rq2-text-soft);
}

.revreqv2-faqbody ul{
  padding-left:18px;
  margin:12px 0 0;
}

@keyframes rq2Spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes rq2Float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

@media (max-width: 1100px){
  .revreqv2-hero-grid,
  .revreqv2-columns,
  .revreqv2-faqgrid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .revreqv2-dual,
  .revreqv2-tags,
  .revreqv2-points{
    grid-template-columns:1fr;
  }

  .revreqv2-hero,
  .revreqv2-section{
    padding:18px;
  }

  .revreqv2-hero-title{
    font-size:28px;
  }

  .revreqv2-float{
    display:none;
  }

  .revreqv2-stack{
    min-height:345px;
  }

  .revreqv2-stackcard.main{
    left:10px;
    width:226px;
  }

  .revreqv2-stackcard.side-a{
    width:142px;
  }

  .revreqv2-stackcard.side-b{
    width:150px;
  }
}

.apsx-page{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.apsx-hero,
.apsx-section,
.apsx-panel,
.apsx-important,
.apsx-cta,
.apsx-stat-card{
  border:1px solid rgba(255,255,255,.06)
  background:var(--fsk-100);
  border-radius:24px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.04),
    0 1px 0 rgba(255,255,255,.03) inset;
}

.apsx-hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  padding:32px;
}

.apsx-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--fsk-50);
  border:1px solid var(--fsk-200);
  color:var(--fsk-800);
  font-size:13px;
  font-weight:700;
  margin-bottom:16px;
}

.apsx-hero__left h1{
  margin:0 0 14px;
  color:var(--fsk-900);
  font-size:48px;
  line-height:1.02;
  letter-spacing:-0.035em;
  max-width:720px;
}

.apsx-hero__left p{
  margin:0;
  color:var(--fsk-600);
  font-size:16px;
  line-height:1.85;
  max-width:680px;
}

.apsx-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.apsx-inline-info{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:22px;
}

.apsx-inline-info__item{
  padding:16px 18px;
  border-radius:18px;
  background:var(--fsk-50);
  border:1px solid var(--fsk-200);
}

.apsx-inline-info__label{
  display:block;
  color:var(--fsk-500);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  margin-bottom:8px;
}

.apsx-inline-info__item strong{
  color:var(--fsk-900);
  font-size:18px;
  line-height:1.4;
}

.apsx-focus-card{
  height:100%;
  padding:22px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    var(--fsk-50);
  border:1px solid var(--fsk-200);
}

.apsx-focus-card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
}

.apsx-eyebrow{
  display:block;
  color:var(--fsk-500);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  margin-bottom:4px;
}

.apsx-focus-card__top h3{
  margin:0;
  color:var(--fsk-900);
  font-size:24px;
}

.apsx-live{
  display:flex;
  align-items:center;
  gap:8px;
}

.apsx-live small{
  color:var(--fsk-500);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.apsx-live-dot{
  width:10px;
  height:10px;
  min-width:10px;
  border-radius:50%;
  background:#22c55e;
  position:relative;
  animation: apsxPulseDot 1.8s infinite ease-out;
}

.apsx-live-dot::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:50%;
  background:rgba(34,197,94,.18);
  animation: apsxPulseRing 1.8s infinite ease-out;
}

@keyframes apsxPulseDot{
  0%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(34,197,94,.25);
  }
  50%{
    transform:scale(1.08);
    box-shadow:0 0 0 6px rgba(34,197,94,.06);
  }
  100%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(34,197,94,0);
  }
}

@keyframes apsxPulseRing{
  0%{
    transform:scale(.65);
    opacity:.55;
  }
  70%{
    transform:scale(1.45);
    opacity:0;
  }
  100%{
    transform:scale(1.45);
    opacity:0;
  }
}

.apsx-main-metrics{
  display:grid;
  gap:14px;
}

.apsx-main-metric{
  padding:20px 20px 18px;
  border-radius:20px;
  border:1px solid var(--fsk-200);
  background:var(--fsk-100);
  position:relative;
  overflow:hidden;
}

.apsx-main-metric::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  opacity:.95;
}

.apsx-main-metric--points::before{
  background:var(--fsk-site-gradient);
}

.apsx-main-metric--balance::before{
  background:linear-gradient(90deg, #22c55e, #16a34a);
}

.apsx-main-metric__label{
  display:block;
  color:var(--fsk-500);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  margin-bottom:10px;
}

.apsx-main-metric__value{
  display:flex;
  align-items:flex-end;
  gap:10px;
  color:var(--fsk-900);
  font-size:52px;
  line-height:1;
  letter-spacing:-0.045em;
  font-weight:800;
  margin:0 0 8px;
  white-space:nowrap;
}

.apsx-main-metric__value small{
  font-size:.32em;
  color:var(--fsk-600);
  font-weight:700;
  letter-spacing:0;
  margin-bottom:8px;
}

.apsx-main-metric__value--money{
  gap:8px;
}

.apsx-money-prefix{
  font-size:.42em !important;
  color:var(--fsk-600) !important;
  font-weight:700;
  margin-bottom:8px;
}

.apsx-main-metric__sub{
  display:block;
  color:var(--fsk-600);
  font-size:13px;
  line-height:1.6;
}

/* STATUS */
.apsx-status-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}

.apsx-status-box{
  padding:15px 16px;
  border-radius:18px;
  background:var(--fsk-100);
  border:1px solid var(--fsk-200);
}

.apsx-status-box span{
  display:block;
  color:var(--fsk-600);
  font-size:12px;
  margin-bottom:6px;
}

.apsx-status-box strong{
  color:var(--fsk-900);
  font-size:19px;
  line-height:1.2;
}

/* PROGRESS */
.apsx-progress-card{
  margin-top:14px;
  padding:18px;
  border-radius:18px;
  background:var(--fsk-100);
  border:1px solid var(--fsk-200);
}

.apsx-progress-card__head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.apsx-progress-card__head span{
  color:var(--fsk-600);
  font-size:13px;
}

.apsx-progress-card__head strong{
  color:var(--fsk-900);
  font-size:14px;
}

.apsx-progress-track{
  height:12px;
  border-radius:999px;
  overflow:hidden;
  background:color-mix(in srgb, var(--fsk-200) 85%, transparent);
}

.apsx-progress-fill{
  height:100%;
  border-radius:999px;
  background:var(--fsk-site-gradient);
  transition:width .45s ease;
}

.apsx-progress-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:10px;
  flex-wrap:wrap;
}

.apsx-progress-meta span{
  color:var(--fsk-600);
  font-size:13px;
}

/* STATS */
.apsx-stats-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.apsx-stat-card{
  display:flex;
  gap:16px;
  padding:22px;
  transition:.22s ease;
}

.apsx-stat-card:hover,
.apsx-level-card:hover,
.apsx-panel:hover{
  transform:translateY(-3px);
  border-color:var(--fsk-300);
  box-shadow:0 16px 36px rgba(0,0,0,.06);
}

.apsx-stat-card__icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--fsk-site-gradient);
  color:#fff;
  font-size:18px;
}

.apsx-stat-card span{
  display:block;
  color:var(--fsk-500);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  margin-bottom:8px;
}

.apsx-stat-card strong{
  display:block;
  color:var(--fsk-900);
  font-size:18px;
  line-height:1.35;
  margin-bottom:6px;
}

.apsx-stat-card p{
  margin:0;
  color:var(--fsk-600);
  font-size:14px;
  line-height:1.75;
}

/* SECTIONS */
.apsx-section,
.apsx-panel,
.apsx-important,
.apsx-cta{
  padding:24px;
}

.apsx-section__head,
.apsx-panel__head{
  margin-bottom:18px;
}

.apsx-section__tag{
  display:inline-block;
  margin-bottom:8px;
  color:var(--fsk-site-color);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.09em;
}

.apsx-section__head h2,
.apsx-panel__head h2,
.apsx-important h2,
.apsx-cta h2{
  margin:0 0 6px;
  color:var(--fsk-900);
  font-size:30px;
  line-height:1.08;
  letter-spacing:-0.03em;
}

.apsx-section__head p,
.apsx-panel__head p,
.apsx-cta p{
  margin:0;
  color:var(--fsk-600);
  font-size:14px;
  line-height:1.7;
}

.apsx-levels-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:16px;
}

.apsx-level-card{
  position:relative;
  text-align:center;
  padding:22px 14px;
  border-radius:20px;
  border:1px solid var(--fsk-200);
  background:var(--fsk-50);
  transition:.22s ease;
}

.apsx-level-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  border-radius:20px 20px 0 0;
}

.apsx-level-card.is-active{
  border-color:color-mix(in srgb, var(--fsk-site-color) 42%, var(--fsk-200));
  box-shadow:0 0 0 3px color-mix(in srgb, var(--fsk-site-color) 14%, transparent);
  background:linear-gradient(180deg, color-mix(in srgb, var(--fsk-site-color) 6%, var(--fsk-50)), var(--fsk-50));
}

.apsx-level-name{
  display:block;
  color:var(--fsk-600);
  font-size:14px;
  margin-bottom:10px;
}

.apsx-level-card strong{
  display:block;
  color:var(--fsk-900);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-0.03em;
  margin-bottom:6px;
}

.apsx-level-card small{
  color:var(--fsk-500);
  font-size:12px;
}

/* GRID 2 */
.apsx-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.apsx-form{
  display:grid;
  gap:14px;
}

.apsx-field{
  display:grid;
  gap:8px;
}

.apsx-field label{
  color:var(--fsk-700);
  font-size:13px;
  font-weight:700;
}

.apsx-panel .form-control{
  min-height:50px;
  border-radius:16px;
  border:1px solid var(--fsk-200);
  background:var(--fsk-50);
  color:var(--fsk-900);
  box-shadow:none;
}

.apsx-panel .form-control:focus{
  border-color:var(--fsk-site-color);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--fsk-site-color) 16%, transparent);
}

.apsx-result-card{
  margin-top:18px;
  padding:20px;
  border-radius:20px;
  background:var(--fsk-50);
  border:1px solid var(--fsk-200);
}

.apsx-result-card > span{
  display:block;
  color:var(--fsk-600);
  font-size:13px;
}

.apsx-result-value{
  display:flex;
  align-items:flex-end;
  gap:8px;
  flex-wrap:nowrap;
  white-space:nowrap;
  color:var(--fsk-900);
  font-size:40px;
  line-height:1;
  letter-spacing:-0.03em;
  margin:8px 0 6px;
  font-weight:800;
}

.apsx-result-value small{
  font-size:.42em;
  color:var(--fsk-600);
  font-weight:700;
  line-height:1;
  margin-bottom:4px;
}

.apsx-result-value span{
  display:inline-block;
  line-height:1;
}

.apsx-result-card > small{
  color:var(--fsk-500);
  font-size:12px;
}

/* STEPS */
.apsx-steps{
  display:grid;
  gap:14px;
}

.apsx-step{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border-radius:18px;
  background:var(--fsk-50);
  border:1px solid var(--fsk-200);
}

.apsx-step__num{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--fsk-site-gradient);
  color:#fff;
  font-size:16px;
  font-weight:800;
}

.apsx-step__content h3{
  margin:0 0 6px;
  color:var(--fsk-900);
  font-size:17px;
}

.apsx-step__content p{
  margin:0;
  color:var(--fsk-600);
  font-size:14px;
  line-height:1.75;
}

/* IMPORTANT */
.apsx-important{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    var(--fsk-100);
}

.apsx-important__icon{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--fsk-site-gradient);
  color:#fff;
  font-size:20px;
}

.apsx-important__content p{
  margin:0;
  color:var(--fsk-700);
  font-size:14px;
  line-height:1.85;
}

/* CTA */
.apsx-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

/* RESPONSIVE */
@media (max-width: 1180px){
  .apsx-hero{
    grid-template-columns:1fr;
  }

  .apsx-levels-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .apsx-grid-2{
    grid-template-columns:1fr;
  }
}

@media (max-width: 860px){
  .apsx-stats-grid{
    grid-template-columns:1fr;
  }

  .apsx-inline-info,
  .apsx-status-row{
    grid-template-columns:1fr;
  }

  .apsx-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .apsx-hero,
  .apsx-section,
  .apsx-panel,
  .apsx-important,
  .apsx-cta,
  .apsx-stat-card{
    padding:20px;
  }

  .apsx-hero__left h1{
    font-size:34px;
  }

  .apsx-main-metric__value{
    font-size:40px;
  }

  .apsx-result-value{
    font-size:30px;
  }

  .apsx-levels-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .apsx-levels-grid{
    grid-template-columns:1fr;
  }

  .apsx-hero__left h1{
    font-size:28px;
  }

  .apsx-main-metric__value{
    font-size:34px;
  }

  .apsx-result-value{
    font-size:28px;
  }
}

/* =========================================================
   TERMS CLEAN V3 — SAFE VERSION
   Zero conflito / Leve / Dark-Light
========================================================= */

.term-and-faq{

    --tf-bg:
    rgba(255,255,255,.96);

    --tf-bg2:
    rgba(248,250,252,.98);

    --tf-border:
    rgba(15,23,42,.06);

    --tf-border-soft:
    rgba(15,23,42,.04);

    --tf-text:
    #111827;

    --tf-soft:
    #64748b;

    --tf-primary:
    var(--fsk-site-color,#345cff);

    --tf-shadow:
    0 10px 35px rgba(15,23,42,.06);

    position: relative;

    overflow: hidden;

    padding: 28px 24px !important;

    border-radius: 28px !important;

    background:
    linear-gradient(180deg,
    var(--tf-bg),
    var(--tf-bg2)) !important;

    border:
    1px solid var(--tf-border) !important;

    box-shadow:
    var(--tf-shadow);

    isolation: isolate;
}

/* DARK */

html.dark .term-and-faq,
html[data-theme="dark"] .term-and-faq{

    --tf-bg:
    rgba(18,27,44,.98);

    --tf-bg2:
    rgba(22,33,52,.98);

    --tf-border:
    rgba(255,255,255,.06);

    --tf-border-soft:
    rgba(255,255,255,.04);

    --tf-text:
    #f8fbff;

    --tf-soft:
    #9fb0cb;

    --tf-shadow:
    0 14px 40px rgba(0,0,0,.34);
}

/* HERO */

.term-and-faq .terms-hero{

    margin-bottom: 22px;

    padding: 24px;

    border-radius: 24px;

    background:
    linear-gradient(135deg,
    rgba(52,92,255,.08),
    rgba(52,92,255,.03));

    border:
    1px solid rgba(52,92,255,.10);
}

/* BADGE */

.term-and-faq .terms-hero-badge{

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

    gap: 8px;

    padding: 8px 14px;

    border-radius: 999px;

    background:
    rgba(52,92,255,.08);

    border:
    1px solid rgba(52,92,255,.12);

    color:
    var(--tf-primary);

    font-size: 12px;
    font-weight: 800;

    margin-bottom: 12px;
}

/* TITLE */

.term-and-faq .terms-hero-title{

    margin: 0 0 10px;

    font-size:
    clamp(26px,4vw,42px);

    line-height: 1.06;

    font-weight: 900;

    letter-spacing: -.7px;

    color:
    var(--tf-text);
}

/* TEXT */

.term-and-faq .terms-hero-text{

    margin: 0;

    max-width: 900px;

    color:
    var(--tf-soft);

    font-size: 14px;

    line-height: 1.8;
}

/* DESCRIPTION */

.term-and-faq .text-block__description{

    position: relative;

    z-index: 2;

    color:
    var(--tf-soft);

    font-size: 14px;

    line-height: 1.85;
}

/* P */

.term-and-faq .text-block__description p{

    margin: 0 0 16px;

    color: inherit;
}

/* HEADINGS */

.term-and-faq .text-block__description strong{

    color:
    var(--tf-text);

    font-weight: 800;
}

/* SPECIAL */

.term-and-faq .text-block__description p:has(strong){

    margin-top: 26px;

    margin-bottom: 12px;

    padding-left: 14px;

    border-left:
    4px solid rgba(52,92,255,.75);
}

/* LIST */

.term-and-faq .text-block__description ul{

    margin: 0 0 18px;

    padding: 0;

    list-style: none;
}

/* ITEM */

.term-and-faq .text-block__description ul li{

    position: relative;

    margin-bottom: 12px;

    padding: 14px 14px 14px 42px;

    border-radius: 18px;

    background:
    rgba(52,92,255,.04);

    border:
    1px solid rgba(52,92,255,.08);

    color:
    inherit;

    transition:
    .18s ease;
}

.term-and-faq .text-block__description ul li:hover{

    transform:
    translateY(-2px);

    background:
    rgba(52,92,255,.06);
}

/* DOT */

.term-and-faq .text-block__description ul li::before{

    content: "";

    position: absolute;

    left: 16px;
    top: 18px;

    width: 10px;
    height: 10px;

    border-radius: 999px;

    background:
    linear-gradient(180deg,
    #6f97ff,
    #315efb);
}

/* LINKS */

.term-and-faq .text-block__description a{

    color:
    var(--tf-primary) !important;

    font-weight: 700;

    text-decoration: none !important;
}

/* HR */

.term-and-faq .text-block__description hr{

    border: 0;

    height: 1px;

    margin: 22px 0;

    background:
    linear-gradient(to right,
    transparent,
    rgba(15,23,42,.10),
    transparent);
}

html.dark .term-and-faq .text-block__description hr{

    background:
    linear-gradient(to right,
    transparent,
    rgba(255,255,255,.08),
    transparent);
}

/* MOBILE */

@media only screen and (max-width: 992px){

    .term-and-faq{

        padding: 22px 18px !important;

        border-radius: 22px !important;
    }

    .term-and-faq .terms-hero{

        padding: 20px;

        border-radius: 20px;
    }

}

@media only screen and (max-width: 640px){

    .term-and-faq{

        padding: 18px 14px !important;

        border-radius: 18px !important;
    }

    .term-and-faq .terms-hero{

        padding: 18px 14px;

        border-radius: 18px;
    }

    .term-and-faq .terms-hero-title{

        font-size: 28px;
    }

    .term-and-faq .text-block__description{

        font-size: 13px;
    }

    .term-and-faq .text-block__description ul li{

        padding:
        12px 12px 12px 36px;
    }

    .term-and-faq .text-block__description ul li::before{

        left: 14px;
        top: 17px;

        width: 9px;
        height: 9px;
    }

}

.blogx7-page{
  --bx7-bg:#f7f9fc;
  --bx7-bg-soft:#eef3fb;
  --bx7-panel:rgba(255,255,255,.86);
  --bx7-panel-strong:#ffffff;
  --bx7-border:rgba(15,23,42,.08);
  --bx7-border-soft:rgba(15,23,42,.05);
  --bx7-text:#0f172a;
  --bx7-text-soft:#5b677d;
  --bx7-accent:#4c6fff;
  --bx7-accent-2:#78a9ff;
  --bx7-accent-3:#a78bfa;
  --bx7-shadow:0 24px 70px rgba(15,23,42,.10);
  --bx7-shadow-soft:0 12px 30px rgba(15,23,42,.08);
  --bx7-hero-mask:linear-gradient(to bottom, rgba(15,23,42,.22), rgba(15,23,42,.66));
}

html.dark .blogx7-page,
body.dark .blogx7-page,
body.dark-mode .blogx7-page,
html[data-theme="dark"] .blogx7-page{
  --bx7-bg:#0d1118;
  --bx7-bg-soft:#121927;
  --bx7-panel:rgba(17,24,39,.92);
  --bx7-panel-strong:#121927;
  --bx7-border:rgba(255,255,255,.08);
  --bx7-border-soft:rgba(255,255,255,.05);
  --bx7-text:#f8fafc;
  --bx7-text-soft:#aab4c8;
  --bx7-accent:#5b7cff;
  --bx7-accent-2:#8cb8ff;
  --bx7-accent-3:#a78bfa;
  --bx7-shadow:0 24px 70px rgba(0,0,0,.34);
  --bx7-shadow-soft:0 14px 30px rgba(0,0,0,.24);
  --bx7-hero-mask:linear-gradient(to bottom, rgba(2,6,23,.30), rgba(2,6,23,.80));
}

.blogx7-progress{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:4px;
  z-index:9999;
  pointer-events:none;
}

.blogx7-progress-bar{
  width:0%;
  height:100%;
  background:linear-gradient(90deg,var(--bx7-accent),var(--bx7-accent-2),var(--bx7-accent-3));
  box-shadow:0 0 18px rgba(76,111,255,.35);
  transition:width .08s linear;
}

.blogx7-hero{
  position:relative;
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
  padding:86px 20px 210px;
  background:linear-gradient(180deg,var(--bx7-bg-soft),transparent);
}

.blogx7-hero-media{
  position:absolute;
  inset:0;
}

.blogx7-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
  filter:saturate(1.08) brightness(.82);
}

.blogx7-hero-overlay{
  position:absolute;
  inset:0;
  background:
    var(--bx7-hero-mask),
    radial-gradient(circle at top, rgba(76,111,255,.22), transparent 50%);
  z-index:1;
}

.blogx7-hero-noise{
  position:absolute;
  inset:0;
  z-index:1;
  opacity:.06;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.9) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.8) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,.8) 0 1px, transparent 1px);
  background-size:140px 140px;
}

.blogx7-hero-grid{
  position:absolute;
  inset:0;
  z-index:1;
  opacity:.10;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:radial-gradient(circle at center, black 42%, transparent 100%);
}

.blogx7-hero-content{
  position:relative;
  z-index:2;
  max-width:1020px;
}

.blogx7-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  backdrop-filter:blur(1px);
}

.blogx7-title{
  margin:18px 0 0;
  font-size:clamp(38px,5vw,68px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-1.8px;
  color:#fff;
  text-wrap:balance;
  text-shadow:0 10px 30px rgba(0,0,0,.28);
}

.blogx7-meta{
  margin-top:18px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.blogx7-meta-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:13px;
  font-weight:700;
  backdrop-filter:blur(1px);
}

.blogx7-wrapper{
  position:relative;
  z-index:3;
  margin-top:-120px;
}

.blogx7-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:30px;
}

.blogx7-main{
  min-width:0;
}

.blogx7-sidebar{
  min-width:0;
}

.blogx7-article{
  position:relative;
  border-radius:28px;
  padding:38px;
  background:
    linear-gradient(180deg, var(--bx7-panel) 0%, var(--bx7-panel-strong) 100%);
  border:1px solid var(--bx7-border);
  box-shadow:var(--bx7-shadow);
  backdrop-filter:blur(1px);
  animation:blogx7FadeUp .7s ease both;
}

.blogx7-topline{
  width:88px;
  height:5px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bx7-accent),var(--bx7-accent-2),var(--bx7-accent-3));
  box-shadow:0 0 18px rgba(76,111,255,.22);
  margin-bottom:22px;
}

.blogx7-content{
  color:var(--bx7-text);
  font-size:16px;
  line-height:1.95;
  word-break:break-word;
}

.blogx7-content h1,
.blogx7-content h2,
.blogx7-content h3,
.blogx7-content h4{
  color:var(--bx7-text);
  font-weight:900;
  line-height:1.18;
  margin-top:36px;
  margin-bottom:14px;
  letter-spacing:-.02em;
  scroll-margin-top:110px;
}

.blogx7-content h1{font-size:2.05rem;}
.blogx7-content h2{font-size:1.7rem;}
.blogx7-content h3{font-size:1.32rem;}
.blogx7-content h4{font-size:1.1rem;}

.blogx7-content p{
  margin:0 0 18px;
  color:var(--bx7-text-soft);
}

.blogx7-content strong,
.blogx7-content b{
  color:var(--bx7-text);
  font-weight:800;
}

.blogx7-content a{
  color:var(--bx7-accent);
  text-decoration:none;
  border-bottom:1px solid rgba(76,111,255,.28);
}

.blogx7-content a:hover{
  border-bottom-color:rgba(76,111,255,.55);
}

.blogx7-content ul,
.blogx7-content ol{
  margin:0 0 18px 22px;
  color:var(--bx7-text-soft);
}

.blogx7-content li{
  margin-bottom:8px;
}

.blogx7-content blockquote{
  margin:28px 0;
  padding:18px 20px;
  border-left:4px solid var(--bx7-accent);
  background:rgba(76,111,255,.06);
  border-radius:0 14px 14px 0;
  color:var(--bx7-text);
}

html.dark .blogx7-content blockquote,
body.dark .blogx7-content blockquote,
body.dark-mode .blogx7-content blockquote,
html[data-theme="dark"] .blogx7-content blockquote{
  background:rgba(91,124,255,.08);
}

.blogx7-content img{
  max-width:100%;
  height:auto;
  display:block;
  margin:30px auto;
  border-radius:18px;
  box-shadow:var(--bx7-shadow-soft);
}

.blogx7-content table{
  width:100%;
  border-collapse:collapse;
  margin:24px 0;
  overflow:hidden;
  border-radius:14px;
  border:1px solid var(--bx7-border);
}

.blogx7-content th,
.blogx7-content td{
  padding:12px 14px;
  border-bottom:1px solid var(--bx7-border-soft);
  text-align:left;
  color:var(--bx7-text-soft);
}

.blogx7-content th{
  color:var(--bx7-text);
  background:rgba(76,111,255,.05);
  font-weight:800;
}

.blogx7-sidecard{
  position:sticky;
  top:100px;
  background:
    linear-gradient(180deg, var(--bx7-panel) 0%, var(--bx7-panel-strong) 100%);
  border:1px solid var(--bx7-border);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--bx7-shadow-soft);
  margin-bottom:20px;
  backdrop-filter:blur(1px);
}

.blogx7-sidecard h3{
  margin:0 0 14px;
  color:var(--bx7-text);
  font-size:15px;
  font-weight:900;
}

.blogx7-share{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.blogx7-share-btn{
  width:48px;
  height:48px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid var(--bx7-border);
  background:rgba(255,255,255,.66);
  box-shadow:0 10px 20px rgba(15,23,42,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

html.dark .blogx7-share-btn,
body.dark .blogx7-share-btn,
body.dark-mode .blogx7-share-btn,
html[data-theme="dark"] .blogx7-share-btn{
  background:rgba(255,255,255,.04);
  box-shadow:0 10px 20px rgba(0,0,0,.18);
}

.blogx7-share-btn:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 16px 26px rgba(15,23,42,.12);
}

html.dark .blogx7-share-btn:hover,
body.dark .blogx7-share-btn:hover,
body.dark-mode .blogx7-share-btn:hover,
html[data-theme="dark"] .blogx7-share-btn:hover{
  box-shadow:0 16px 26px rgba(0,0,0,.28);
}

.blogx7-share-btn svg{
  width:22px;
  height:22px;
  fill:currentColor;
}

.blogx7-share-x{color:#111;}
.blogx7-share-facebook{color:#1877f2;}
.blogx7-share-whatsapp{color:#25d366;}
.blogx7-share-telegram{color:#27a7e7;}
.blogx7-share-linkedin{color:#0a66c2;}
.blogx7-share-reddit{color:#ff4500;}

html.dark .blogx7-share-x,
body.dark .blogx7-share-x,
body.dark-mode .blogx7-share-x,
html[data-theme="dark"] .blogx7-share-x{
  color:#fff;
}

.blogx7-toc{
  list-style:none;
  padding:0;
  margin:0;
}

.blogx7-toc li + li{
  margin-top:8px;
}

.blogx7-toc a{
  display:block;
  padding:9px 10px;
  border-radius:10px;
  color:var(--bx7-text-soft);
  text-decoration:none;
  font-size:14px;
  line-height:1.45;
  transition:background .2s ease, color .2s ease;
}

.blogx7-toc a:hover,
.blogx7-toc a.is-active{
  background:rgba(76,111,255,.08);
  color:var(--bx7-text);
}

.blogx7-footer{
  margin-top:38px;
  padding-top:24px;
  border-top:1px solid var(--bx7-border);
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.blogx7-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 20px;
  border:none;
  border-radius:14px;
  background:linear-gradient(90deg,var(--bx7-accent),var(--bx7-accent-2));
  color:#fff;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(76,111,255,.28);
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  cursor:pointer;
}

.blogx7-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(76,111,255,.34);
}

.blogx7-btn-alt{
  background:linear-gradient(90deg,#111827,#1f2937);
}

html.dark .blogx7-btn-alt,
body.dark .blogx7-btn-alt,
body.dark-mode .blogx7-btn-alt,
html[data-theme="dark"] .blogx7-btn-alt{
  background:linear-gradient(90deg,#1e293b,#334155);
}

.blogx7-btn-copy{
  background:linear-gradient(90deg,#0ea5e9,#22c55e);
}

.blogx7-related{
  margin-top:28px;
  padding:28px;
  border-radius:26px;
  background:
    linear-gradient(180deg, var(--bx7-panel) 0%, var(--bx7-panel-strong) 100%);
  border:1px solid var(--bx7-border);
  box-shadow:var(--bx7-shadow-soft);
}

.blogx7-related-head h2{
  margin:0;
  color:var(--bx7-text);
  font-size:28px;
  font-weight:900;
}

.blogx7-related-head p{
  margin:8px 0 0;
  color:var(--bx7-text-soft);
}

.blogx7-related-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:20px;
}

.blogx7-related-card{
  display:block;
  text-decoration:none;
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.54);
  border:1px solid var(--bx7-border);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

html.dark .blogx7-related-card,
body.dark .blogx7-related-card,
body.dark-mode .blogx7-related-card,
html[data-theme="dark"] .blogx7-related-card{
  background:rgba(255,255,255,.03);
}

.blogx7-related-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--bx7-shadow-soft);
}

.blogx7-related-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  margin-bottom:14px;
  background:rgba(76,111,255,.10);
  color:var(--bx7-accent);
  font-size:20px;
}

.blogx7-related-card h3{
  margin:0 0 8px;
  color:var(--bx7-text);
  font-size:18px;
  font-weight:800;
}

.blogx7-related-card p{
  margin:0;
  color:var(--bx7-text-soft);
  line-height:1.65;
}

.blogx7-toast{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:99999;
  padding:12px 16px;
  border-radius:12px;
  background:#111827;
  color:#fff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 14px 30px rgba(0,0,0,.25);
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}

.blogx7-toast.show{
  opacity:1;
  transform:translateY(0);
}

.blogx7-hero-content,
.blogx7-article,
.blogx7-sidecard,
.blogx7-related{
  animation:blogx7FadeUp .7s ease both;
}

@keyframes blogx7FadeUp{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

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

  .blogx7-sidecard{
    position:static;
  }

  .blogx7-related-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:992px){
  .blogx7-hero{
    min-height:390px;
    padding:60px 18px 145px;
  }

  .blogx7-wrapper{
    margin-top:-88px;
  }

  .blogx7-article{
    padding:24px;
  }

  .blogx7-related{
    padding:22px;
  }
}

@media (max-width:768px){
  .blogx7-hero{
    min-height:330px;
    padding:42px 16px 115px;
  }

  .blogx7-wrapper{
    margin-top:-70px;
  }

  .blogx7-title{
    font-size:31px;
    letter-spacing:-.7px;
  }

  .blogx7-article{
    border-radius:18px;
    padding:20px;
  }

  .blogx7-content{
    font-size:15px;
    line-height:1.84;
  }

  .blogx7-share-btn{
    width:42px;
    height:42px;
  }
}

.affiliate-v3-wrap {
  padding-top: 16px;
  padding-bottom: 30px;
}

.affiliate-v3-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.affiliate-v3-alert {
  background: var(--fsk-100);
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 4);
  box-shadow: 0 12px 28px rgba(0,0,0,.04);
}

/* HERO */
.affiliate-v3-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 20px;
}

.affiliate-v3-hero-main,
.affiliate-v3-hero-side {
  background: var(--fsk-100);
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 5);
  box-shadow: 0 18px 38px rgba(0,0,0,.05);
}

.affiliate-v3-hero-main {
  padding: 28px;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--fsk-site-color) 8%, transparent), transparent 35%),
    linear-gradient(180deg, color-mix(in srgb, var(--fsk-site-color) 2%, var(--fsk-100)), var(--fsk-100));
}

.affiliate-v3-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: rgba(52,92,255,.08);
  color: var(--fsk-site-color);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.affiliate-v3-title {
  margin: 0 0 10px;
  color: var(--fsk-900);
  font-size: 36px;
  line-height: 1.08;
  font-weight: 900;
  max-width: 780px;
}

.affiliate-v3-subtitle {
  margin: 0 0 20px;
  color: var(--fsk-600);
  font-size: 15px;
  line-height: 1.85;
  max-width: 760px;
}

.affiliate-v3-link-card {
  background: var(--fsk-200);
  border: 1px solid var(--fsk-300);
  border-radius: calc(var(--fsk-site-border) * 4);
  padding: 16px;
}

.affiliate-v3-link-head {
  margin-bottom: 10px;
}

.affiliate-v3-link-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fsk-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.affiliate-v3-link-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.affiliate-v3-link-value {
  flex: 1;
  min-width: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--fsk-100);
  border: 1px solid var(--fsk-300);
  border-radius: calc(var(--fsk-site-border) * 3);
  color: var(--fsk-800);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.affiliate-v3-link-value:hover {
  border-color: var(--fsk-site-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--fsk-site-color) 10%, transparent);
}

.affiliate-v3-link-value span {
  display: block;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.affiliate-v3-copy-btn {
  width: 56px;
  min-width: 56px;
  border: 0;
  border-radius: calc(var(--fsk-site-border) * 3);
  background: var(--fsk-site-gradient);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
  transition: .2s ease;
}

.affiliate-v3-copy-btn:hover {
  transform: translateY(-1px);
}

.affiliate-v3-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.affiliate-v3-share-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: calc(var(--fsk-site-border) * 2);
  border: 1px solid var(--fsk-300);
  background: var(--fsk-100);
  color: var(--fsk-800) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s ease;
}

.affiliate-v3-share-btn:hover {
  transform: translateY(-1px);
}

.affiliate-v3-share-btn.whatsapp i { color: #16a34a; }
.affiliate-v3-share-btn.telegram i { color: #0ea5e9; }
.affiliate-v3-share-btn.twitter i { color: #111827; }
.affiliate-v3-share-btn.facebook i { color: #1877f2; }
.affiliate-v3-share-btn.discord i { color: #5865f2; }

.affiliate-v3-hero-side {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.affiliate-v3-progress-card,
.affiliate-v3-activity-card,
.affiliate-v3-insights-card,
.affiliate-v3-table,
.affiliate-v3-guide-hero,
.affiliate-v3-guide-card {
  background: var(--fsk-100);
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 4);
  box-shadow: 0 12px 28px rgba(0,0,0,.04);
}

.affiliate-v3-progress-card {
  padding: 18px;
}

.affiliate-v3-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.affiliate-v3-progress-label {
  display: block;
  color: var(--fsk-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.affiliate-v3-progress-head h3 {
  margin: 0;
  color: var(--fsk-900);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.affiliate-v3-progress-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--fsk-site-border) * 3);
  background: var(--fsk-site-gradient);
  color: #fff;
  font-size: 20px;
}

.affiliate-v3-progress-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--fsk-600);
  font-size: 13px;
  margin-bottom: 12px;
}

.affiliate-v3-progress-bar {
  height: 12px;
  border-radius: 999px;
  background: var(--fsk-200);
  overflow: hidden;
  border: 1px solid var(--fsk-300);
}

.affiliate-v3-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--fsk-site-gradient);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
  transition: width .5s ease;
}

.affiliate-v3-progress-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.affiliate-v3-progress-footer span {
  color: var(--fsk-800);
  font-size: 13px;
  font-weight: 900;
}

.affiliate-v3-payout-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: var(--fsk-site-gradient);
  color: #fff !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

.affiliate-v3-activity-card {
  padding: 14px;
  overflow: hidden;
}

.affiliate-v3-activity-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fsk-800);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.affiliate-v3-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,.25);
  animation: affiliateLiveBlink 1.4s linear infinite;
}

@keyframes affiliateLiveBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .45;
    transform: scale(.92);
  }
}

.affiliate-v3-activity-viewport {
  background: var(--fsk-200);
  border: 1px solid var(--fsk-300);
  border-radius: calc(var(--fsk-site-border) * 3);
  height: 280px;
  overflow: hidden;
}

.affiliate-v3-activity-track {
  height: 100%;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: none;
}

.affiliate-v3-activity-track::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.affiliate-v3-reward-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: var(--fsk-100);
  border: 1px solid transparent;
  color: var(--fsk-700);
  font-size: 13px;
  font-weight: 800;
}

.affiliate-v3-reward-item strong {
  color: #16a34a;
  font-weight: 900;
}

/* KPI */
.affiliate-v3-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.affiliate-v3-kpi-card {
  background: var(--fsk-100);
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 4);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.04);
  transition: .2s ease;
}

.affiliate-v3-kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.06);
}

.affiliate-v3-kpi-card.highlight {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--fsk-site-color) 6%, var(--fsk-100)), var(--fsk-100));
  border-color: rgba(52,92,255,.16);
}

.affiliate-v3-kpi-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: calc(var(--fsk-site-border) * 3);
  background: var(--fsk-200);
  border: 1px solid var(--fsk-300);
  color: var(--fsk-site-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.affiliate-v3-kpi-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.affiliate-v3-kpi-content span {
  color: var(--fsk-600);
  font-size: 13px;
  font-weight: 800;
}

.affiliate-v3-kpi-content strong {
  color: var(--fsk-900);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

/* INSIGHTS */
.affiliate-v3-insights-card {
  padding: 20px;
}

.affiliate-v3-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fsk-900);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}

.affiliate-v3-section-title.large {
  font-size: 28px;
}

.affiliate-v3-section-title i {
  color: var(--fsk-site-color);
}

.affiliate-v3-insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.affiliate-v3-insight-box {
  background: var(--fsk-200);
  border: 1px solid var(--fsk-300);
  border-radius: calc(var(--fsk-site-border) * 3);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 130px;
  justify-content: center;
}

.affiliate-v3-insight-box.highlight {
  background: color-mix(in srgb, var(--fsk-site-color) 8%, var(--fsk-100));
  border-color: color-mix(in srgb, var(--fsk-site-color) 18%, var(--fsk-300));
}

.affiliate-v3-insight-box small {
  color: var(--fsk-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.affiliate-v3-insight-box strong {
  color: var(--fsk-900);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.affiliate-v3-insight-box span {
  color: var(--fsk-600);
  font-size: 13px;
  line-height: 1.7;
}

/* TABLE */
.affiliate-v3-table {
  background: var(--fsk-100);
  border: 1px solid var(--fsk-200);
  border-radius: calc(var(--fsk-site-border) * 5);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.04);
}

.affiliate-v3-table-head,
.affiliate-v3-table-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.affiliate-v3-table-head {
  background: var(--fsk-200);
  border-bottom: 1px solid var(--fsk-300);
  color: var(--fsk-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.affiliate-v3-table-row {
  border-bottom: 1px solid var(--fsk-200);
  color: var(--fsk-800);
  font-weight: 800;
}

.affiliate-v3-table-row:last-child {
  border-bottom: 0;
}

.affiliate-v3-table-row .amount {
  color: #16a34a;
  font-weight: 900;
}

.affiliate-v3-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--fsk-200);
  border: 1px solid var(--fsk-300);
  color: var(--fsk-800);
  font-size: 13px;
  font-weight: 900;
}

/* PAGINATION */
.affiliate-v3-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.affiliate-v3-pagination li {
  list-style: none;
}

.affiliate-v3-pagination li a,
.affiliate-v3-pagination li span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: calc(var(--fsk-site-border) * 2);
  background: var(--fsk-100);
  border: 1px solid var(--fsk-200);
  color: var(--fsk-800);
  text-decoration: none !important;
  font-weight: 800;
  transition: .2s ease;
}

.affiliate-v3-pagination li a:hover {
  background: rgba(52,92,255,.08);
  border-color: rgba(52,92,255,.16);
}

.affiliate-v3-pagination li.active a {
  background: var(--fsk-site-gradient);
  color: #fff !important;
  border-color: transparent;
}

/* GUIDE */
.affiliate-v3-guide-hero {
  padding: 24px;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--fsk-site-color) 7%, transparent), transparent 35%),
    var(--fsk-100);
}

.affiliate-v3-guide-lead {
  margin: 0;
  color: var(--fsk-600);
  font-size: 15px;
  line-height: 1.85;
}

.affiliate-v3-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.affiliate-v3-guide-card {
  padding: 20px;
}

.affiliate-v3-guide-card.full {
  grid-column: 1 / -1;
}

.affiliate-v3-guide-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--fsk-900);
}

.affiliate-v3-guide-head.youtube i { color: #ef4444; }
.affiliate-v3-guide-head.groups i { color: #3b82f6; }
.affiliate-v3-guide-head.blog i { color: #06b6d4; }
.affiliate-v3-guide-head.friends i { color: #f59e0b; }
.affiliate-v3-guide-head.social i { color: #8b5cf6; }

.affiliate-v3-guide-card p {
  margin: 0;
  color: var(--fsk-600);
  font-size: 15px;
  line-height: 1.85;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .affiliate-v3-hero {
    grid-template-columns: 1fr;
  }

  .affiliate-v3-kpi-grid,
  .affiliate-v3-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .affiliate-v3-title {
    font-size: 26px;
  }

  .affiliate-v3-link-row {
    flex-direction: column;
  }

  .affiliate-v3-copy-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .affiliate-v3-share-btn {
    width: 100%;
    justify-content: center;
  }

  .affiliate-v3-kpi-grid,
  .affiliate-v3-insights-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-v3-progress-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .affiliate-v3-payout-btn {
    width: 100%;
    justify-content: center;
  }

  .affiliate-v3-table-head {
    display: none;
  }

  .affiliate-v3-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: flex-start;
  }

  .affiliate-v3-guide-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-v3-guide-card.full {
    grid-column: auto;
  }

  .affiliate-v3-section-title.large {
    font-size: 24px;
  }
}