*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body {
	font-family: "Cairo", "Noto Sans Arabic", "Segoe UI", Tahoma, sans-serif;
	background: #9fd8ec;
	color: #1a1a1a;
	line-height: 1.55;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(190, 236, 250, 0.55) 0%, rgba(184, 232, 244, 0.35) 40%, rgba(255, 220, 235, 0.4) 100%),
		url("images/kurdlov-bg.jpg") center / cover no-repeat fixed;
	pointer-events: none;
}

.kl-aurora {
	position: fixed;
	inset: -20%;
	z-index: 0;
	pointer-events: none;
	background:
		conic-gradient(from 120deg at 30% 40%, rgba(255, 95, 162, 0.12), transparent 35%, rgba(106, 167, 255, 0.14), transparent 70%, rgba(255, 215, 106, 0.08), transparent);
	animation: klAuroraDrift 18s ease-in-out infinite alternate;
	filter: blur(40px);
}

.kl-mesh {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.18;
	background-image:
		radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.7) 1px, transparent 0);
	background-size: 22px 22px;
	mask-image: radial-gradient(ellipse at center, #000 35%, transparent 85%);
}

@keyframes klAuroraDrift {
	from { transform: rotate(0deg) scale(1); }
	to { transform: rotate(28deg) scale(1.08); }
}

.kl-wrap {
	max-width: 520px;
	margin: 0 auto;
	padding: 18px 14px 36px;
	position: relative;
	z-index: 2;
}

.kl-ornament {
	position: absolute;
	font-size: 14px;
	opacity: 0.55;
	pointer-events: none;
	animation: klOrnamentPulse 3.5s ease-in-out infinite;
	filter: drop-shadow(0 0 8px rgba(255, 95, 162, 0.45));
}

.kl-ornament-tl { top: 6px; right: 10px; color: #ff5fa2; }
.kl-ornament-tr { top: 6px; left: 10px; color: #6aa7ff; animation-delay: 0.6s; }
.kl-ornament-bl { bottom: 10px; right: 12px; color: #ff8fc4; animation-delay: 1.2s; }
.kl-ornament-br { bottom: 10px; left: 12px; color: #93c5ff; animation-delay: 1.8s; }

@keyframes klOrnamentPulse {
	0%, 100% { opacity: 0.35; transform: scale(1); }
	50% { opacity: 0.85; transform: scale(1.15); }
}

.kl-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	padding: 10px 12px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
	border: 1px solid rgba(255, 255, 255, 0.65);
	box-shadow:
		0 10px 28px rgba(80, 140, 190, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
}

.kl-logo {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(145deg, #ff7eb3, #e91e63 55%, #ff5fa2);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	box-shadow:
		0 0 0 3px rgba(255, 255, 255, 0.7),
		0 0 0 5px rgba(255, 95, 162, 0.35),
		0 8px 18px rgba(233, 30, 99, 0.4);
	animation: klHeartPulse 2.8s ease-in-out infinite;
}

.kl-brand-text strong {
	font-family: "Amiri", "Cairo", serif;
	font-size: 20px;
	color: #1a1a1a;
	letter-spacing: 0.02em;
}

.kl-brand-text span {
	font-size: 12px;
	color: #5a6470;
	font-weight: 700;
}

.kl-menu {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 143, 196, 0.35);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff, #f3fbff);
	font-size: 18px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(106, 167, 255, 0.15);
}

.kl-title {
	margin: 0;
	text-align: center;
	font-family: "Amiri", "Cairo", serif;
	font-size: 34px;
	font-weight: 700;
	color: #d81b60;
	letter-spacing: 0.02em;
}

.kl-title-shine {
	display: inline-block;
	background: linear-gradient(110deg, #c2185b 0%, #ff4d94 35%, #ff9ec8 50%, #d81b60 70%, #ff2d7a 100%);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: klTitleShine 4.5s linear infinite;
	filter: drop-shadow(0 4px 14px rgba(255, 95, 162, 0.28));
}

@keyframes klTitleShine {
	to { background-position: 220% center; }
}

.kl-title-flourish {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: -4px 0 0;
	color: #ff5fa2;
}

.kl-title-flourish span {
	display: block;
	width: 64px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, #ff8fc4, #6aa7ff, transparent);
}

.kl-title-flourish i {
	font-size: 11px;
	animation: klHeartPulse 2.2s ease-in-out infinite;
}

.kl-glow-frame {
	position: relative;
	padding: 5px;
	border-radius: 28px;
	overflow: hidden;
	box-shadow:
		0 14px 36px rgba(106, 167, 255, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.45);
}

.kl-glow-frame::before {
	content: "";
	position: absolute;
	inset: 8px;
	border-radius: 22px;
	border: 1px dashed rgba(255, 255, 255, 0.55);
	z-index: 2;
	pointer-events: none;
	opacity: 0.55;
}

.kl-glow-inner {
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	box-shadow:
		0 6px 22px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
}

.kl-card {
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 252, 0.9) 55%, rgba(240, 248, 255, 0.92));
	border-radius: 24px;
	padding: 18px 16px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
}

.kl-request-hint {
	margin: 0 0 12px;
	padding: 11px 13px;
	border: 1px solid rgba(255, 143, 196, 0.22);
	border-radius: 14px;
	font-size: 13px;
	font-weight: 700;
	color: #5a3a4a;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 248, 0.75));
	line-height: 1.7;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.kl-chat-icon {
	position: relative;
	width: 88px;
	height: 88px;
	border-radius: 24px;
	background: linear-gradient(145deg, #17171c, #3a3a44);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	box-shadow:
		0 12px 26px rgba(0, 0, 0, 0.22),
		0 0 0 3px rgba(255, 255, 255, 0.55),
		0 0 0 6px rgba(255, 95, 162, 0.18);
}

.kl-enter-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.95));
	border: 0;
	border-radius: 18px;
	padding: 15px 16px;
	text-decoration: none;
	color: #111;
	font-weight: 800;
	font-size: 15px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	z-index: 1;
}

.kl-enter-bar:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(255, 95, 162, 0.2);
}

.kl-enter-icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(145deg, #17171c, #333);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.kl-staff-frame {
	position: relative;
	padding: 5px;
	border-radius: 32px;
	overflow: hidden;
	box-shadow:
		0 18px 42px rgba(106, 167, 255, 0.22),
		0 0 40px rgba(255, 95, 162, 0.08);
}

.kl-staff-scene {
	position: relative;
	z-index: 1;
	padding: 14px 12px 12px;
	border-radius: 28px;
	overflow: hidden;
	background:
		radial-gradient(circle at 80% 10%, rgba(255, 143, 196, 0.25), transparent 40%),
		radial-gradient(circle at 15% 90%, rgba(106, 167, 255, 0.22), transparent 42%),
		linear-gradient(180deg, rgba(210, 238, 250, 0.96), rgba(184, 232, 244, 0.92));
}

.kl-staff {
	position: relative;
	z-index: 2;
	padding: 0 0 14px;
	overflow: visible;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 253, 0.96));
	border: 1px solid rgba(255, 143, 196, 0.28);
	border-radius: 24px;
	box-shadow:
		0 10px 28px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 1);
}

.kl-staff-bar {
	height: 6px;
	background: linear-gradient(90deg, #ff5fa2, #ff8fc4, #6aa7ff, #ffd76a, #ff5fa2);
	background-size: 200% 100%;
	animation: klBarFlow 5s linear infinite;
	border-radius: 24px 24px 0 0;
}

@keyframes klBarFlow {
	to { background-position: 200% 0; }
}

.kl-prices-brand {
	margin: 0 0 4px;
	text-align: center;
	font-family: "Amiri", "Cairo", serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.5px;
	background: linear-gradient(90deg, #d81b60, #ff5fa2, #6aa7ff, #d81b60);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: klTitleShine 6s linear infinite;
}

.kl-prices-note {
	margin: 0;
	text-align: center;
	font-size: 13px;
	color: #5a6470;
	font-weight: 700;
}

.kl-footer {
	margin-top: 22px;
	text-align: center;
	font-size: 12px;
	color: #5a6470;
	padding: 14px 16px 16px;
	border-radius: 18px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.62), rgba(255, 245, 250, 0.48));
	border: 1px solid rgba(255, 255, 255, 0.65);
	box-shadow: 0 8px 22px rgba(106, 167, 255, 0.1);
	backdrop-filter: blur(10px);
}

.kl-footer p {
	margin: 0;
}

.kl-footer-brand {
	font-family: "Amiri", "Cairo", serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 4px !important;
	background: linear-gradient(90deg, #d81b60, #ff5fa2, #6aa7ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.kl-footer-copy {
	font-size: 12px;
	font-weight: 700;
	color: #5a6470;
	line-height: 1.6;
}

.kl-bg-hearts {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.kl-glow-heart {
	position: absolute;
	left: var(--x);
	top: var(--y);
	font-size: var(--s);
	color: rgba(255, 95, 162, 0.75);
	filter: drop-shadow(0 0 6px rgba(255, 95, 162, 0.9)) drop-shadow(0 0 14px rgba(255, 143, 196, 0.55));
	animation: klGlowHeartDrift 6s ease-in-out infinite;
	animation-delay: var(--d);
}

.kl-glow-heart:nth-child(even) {
	color: rgba(106, 167, 255, 0.8);
	filter: drop-shadow(0 0 6px rgba(106, 167, 255, 0.85)) drop-shadow(0 0 12px rgba(147, 197, 255, 0.5));
}

.kl-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.kl-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.kl-mobile-nav {
	display: none;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 14px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
}

.kl-mobile-nav.open {
	display: flex;
}

.kl-mobile-nav a {
	text-decoration: none;
	color: #333;
	font-weight: 700;
	padding: 8px 4px;
}

.kl-main {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.kl-subtitle-marquee {
	margin: 0 0 2px;
	overflow: hidden;
	width: 100%;
}

.kl-subtitle {
	margin: 0;
	width: 100%;
	display: block;
	font-size: 18px;
	font-weight: 800;
	color: #c2185b;
	line-height: 1.4;
}

.kl-subtitle-track {
	display: inline-block;
	padding: 0 24px;
	font-size: 18px;
	font-weight: 800;
	color: #c2185b;
	text-shadow: 0 0 10px rgba(233, 30, 99, 0.45);
	animation: klSubtitleFlashGlow 0.85s ease-in-out infinite;
}

@keyframes klSubtitleFlashGlow {
	0%, 100% {
		opacity: 1;
		color: #c2185b;
		text-shadow: 0 0 8px rgba(233, 30, 99, 0.4);
	}
	50% {
		opacity: 0.65;
		color: #ff2d7a;
		text-shadow: 0 0 16px rgba(255, 45, 122, 0.9), 0 0 28px rgba(255, 143, 196, 0.65);
	}
}

@media (max-width: 400px) {
	.kl-subtitle,
	.kl-subtitle-track {
		font-size: 16px;
	}
}

.kl-request {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.kl-request-icon {
	flex: 0 0 auto;
}

.kl-verified {
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #2196f3;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border: 2px solid #fff;
}

.kl-request-body {
	flex: 1;
	min-width: 0;
}

.kl-request-body h2 {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 900;
}

.kl-social-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.kl-social-center {
	justify-content: center;
	align-items: center;
	width: 100%;
}

.kl-soc {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	transition: transform 0.2s ease;
}

.kl-soc:hover {
	transform: translateY(-2px);
}

.kl-soc.fb { background: #1877f2; }
.kl-soc.tiktok { background: #111; }

.kl-soc.fb,
.kl-soc.tiktok {
	width: 48px;
	height: 48px;
	font-size: 20px;
}

.kl-enter-text {
	flex: 1;
	text-align: center;
}

.kl-glow-frame-enter {
	border-radius: 22px;
}

.kl-glow-frame .kl-staff-spin-border {
	animation-duration: 3.5s;
}

.kl-glow-frame-enter .kl-staff-spin-border {
	animation-duration: 3s;
	animation-direction: reverse;
}

.kl-glow-frame .kl-request {
	border-radius: 24px;
}

.kl-glow-frame-enter .kl-enter-bar {
	border-radius: 18px;
}

.kl-staff-spin-border {
	position: absolute;
	width: 180%;
	height: 180%;
	top: -40%;
	left: -40%;
	z-index: 0;
	background: conic-gradient(
		from 0deg,
		#ff5fa2,
		#ff8fc4,
		#6aa7ff,
		#93c5ff,
		#ffd76a,
		#ff5fa2
	);
	animation: klBorderSpin 4s linear infinite;
	pointer-events: none;
}

.kl-scene-hearts {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.kl-mini-heart {
	position: absolute;
	left: var(--x);
	top: var(--y);
	font-size: 11px;
	color: rgba(255, 95, 162, 0.55);
	text-shadow: 0 0 8px rgba(255, 143, 196, 0.45);
	animation: klMiniHeartFloat 5s ease-in-out infinite;
	animation-delay: var(--d);
}

.kl-mini-heart:nth-child(even) {
	color: rgba(106, 167, 255, 0.6);
	font-size: 9px;
	text-shadow: 0 0 8px rgba(147, 197, 255, 0.5);
}

.kl-staff-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(42px);
	pointer-events: none;
	opacity: 0.4;
	z-index: 0;
}

.kl-staff-glow-1 {
	width: 140px;
	height: 140px;
	top: 8px;
	right: 10px;
	background: #ff5fa2;
}

.kl-staff-glow-2 {
	width: 130px;
	height: 130px;
	bottom: 12px;
	left: 10px;
	background: #6aa7ff;
}

.kl-staff-head {
	padding: 18px 16px 10px;
	text-align: center;
}

.kl-heart-scene {
	position: relative;
	width: 118px;
	height: 118px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kl-heart-scene::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 45%, rgba(106, 167, 255, 0.35), transparent 62%),
		radial-gradient(circle at 30% 70%, rgba(255, 95, 162, 0.28), transparent 55%);
	animation: klScenePulse 3s ease-in-out infinite;
}

.kl-heart-ring {
	position: absolute;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		#ff5fa2,
		#ff8fc4,
		#6aa7ff,
		#93c5ff,
		#ff5fa2
	);
	animation: klBorderSpin 3s linear infinite;
}

.kl-heart-ring::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: linear-gradient(180deg, #dff4fc 0%, #c8e8f8 100%);
	box-shadow: inset 0 0 18px rgba(106, 167, 255, 0.25);
}

.kl-staff-crown {
	position: relative;
	z-index: 2;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	background: linear-gradient(135deg, #ff5fa2, #e91e63);
	box-shadow: 0 8px 22px rgba(255, 95, 162, 0.45);
	animation: klHeartPulse 2.4s ease-in-out infinite;
}

.kl-staff-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 8px 12px 4px;
}

.kl-staff-item {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.kl-staff-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 12px 12px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 248, 0.88));
	border: 1px solid rgba(255, 143, 196, 0.18);
	box-shadow: 0 4px 14px rgba(255, 95, 162, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
	font: inherit;
	color: inherit;
	cursor: pointer;
	text-align: inherit;
	appearance: none;
	-webkit-appearance: none;
}

.kl-staff-row:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 95, 162, 0.16);
}

.kl-staff-item.is-open .kl-staff-row {
	border-radius: 16px 16px 0 0;
	box-shadow: none;
}

.kl-staff-detail {
	padding: 12px 14px 14px;
	border: 1px solid rgba(255, 143, 196, 0.18);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	background: linear-gradient(180deg, #1a1a1f 0%, #121216 100%);
	color: #f5f5f5;
	text-align: right;
	direction: rtl;
	animation: klDetailIn 0.25s ease;
}

.kl-staff-detail[hidden] {
	display: none;
}

@keyframes klDetailIn {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

.kl-staff-desc {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.7;
	color: #e8e8e8;
}

.kl-rules-box,
.kl-privacy-box {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 12px;
	margin-bottom: 10px;
}

.kl-privacy-box {
	margin-bottom: 0;
}

.kl-rules-title,
.kl-privacy-title {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: flex-start;
}

.kl-rules-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kl-rules-box li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	line-height: 1.5;
	color: #ddd;
}

.kl-rules-box li i,
.kl-rules-title i {
	width: 18px;
	text-align: center;
	color: #fff;
	flex-shrink: 0;
}

.kl-privacy-box p {
	margin: 0;
	font-size: 12px;
	line-height: 1.7;
	color: #ccc;
}

.kl-staff-rank {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 800;
	min-width: 0;
	color: #444;
}

.kl-rank-badge {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: linear-gradient(135deg, #f5b301, #f59e0b);
	color: #fff;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(245, 179, 1, 0.45);
}

.kl-staff-rank .fa-star {
	color: #f5b301;
	font-size: 14px;
	text-shadow: 0 0 8px rgba(245, 179, 1, 0.45);
}

.kl-staff-name {
	display: inline-block;
	position: relative;
	font-size: 15px;
	font-weight: 900;
	color: #111;
	text-align: left;
	direction: ltr;
	white-space: nowrap;
	padding: 7px 16px;
	border-radius: 999px;
	z-index: 1;
	isolation: isolate;
}

.kl-staff-name::before,
.kl-staff-name::after {
	content: "✦";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 9px;
	line-height: 1;
	pointer-events: none;
	opacity: 0.9;
}

.kl-staff-name::before { left: 5px; }
.kl-staff-name::after { right: 5px; }

/* 1 — زێڕی خاوەن (Baxan) */
.kl-name-frame1 {
	color: #7a4a00;
	padding-inline: 18px;
	border: 2px solid transparent;
	background:
		linear-gradient(#fff8e7, #ffe8b8) padding-box,
		conic-gradient(from var(--kl-angle, 0deg), #f5b301, #fff4c2, #f59e0b, #ffd76a, #f5b301) border-box;
	box-shadow:
		0 0 0 1px rgba(245, 179, 1, 0.25),
		0 4px 14px rgba(245, 158, 11, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	animation: klOwnerRing 3.2s linear infinite;
}

.kl-name-frame1::before,
.kl-name-frame1::after {
	color: #f5b301;
	text-shadow: 0 0 6px rgba(245, 179, 1, 0.8);
}

/* 2 — گوڵی خاوەن (Bebak) */
.kl-name-frame2 {
	color: #8a1048;
	padding-inline: 18px;
	border: 2px solid transparent;
	background:
		linear-gradient(#fff5f9, #ffe0ef) padding-box,
		conic-gradient(from var(--kl-angle, 0deg), #ff5fa2, #ffd1e6, #e91e63, #ff8fc4, #ff5fa2) border-box;
	box-shadow:
		0 0 0 1px rgba(255, 95, 162, 0.22),
		0 4px 14px rgba(233, 30, 99, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	animation: klOwnerRing 3.5s linear infinite reverse;
}

.kl-name-frame2::before,
.kl-name-frame2::after {
	color: #ff5fa2;
	content: "♥";
	font-size: 8px;
	text-shadow: 0 0 6px rgba(255, 95, 162, 0.85);
}

/* 3 — پرێمیۆمی ئەستێرە (Helin) */
.kl-name-frame3 {
	color: #5b21b6;
	padding-inline: 18px;
	border: 2px solid transparent;
	background:
		linear-gradient(#faf5ff, #f3e8ff) padding-box,
		conic-gradient(from var(--kl-angle, 0deg), #a855f7, #f0abfc, #7c3aed, #c084fc, #a855f7) border-box;
	box-shadow:
		0 0 0 1px rgba(168, 85, 247, 0.25),
		0 4px 16px rgba(124, 58, 237, 0.32),
		0 0 18px rgba(192, 132, 252, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	animation: klOwnerRing 2.8s linear infinite;
}

.kl-name-frame3::before,
.kl-name-frame3::after {
	color: #a855f7;
	content: "◆";
	font-size: 8px;
	text-shadow: 0 0 8px rgba(168, 85, 247, 0.9);
}

/* 4 — شین/زیوی ئادمین و پرێمیۆم */
.kl-name-frame4 {
	color: #0f3d6e;
	padding-inline: 18px;
	border: 2px solid transparent;
	background:
		linear-gradient(#f0f9ff, #e0f2fe) padding-box,
		conic-gradient(from var(--kl-angle, 0deg), #38bdf8, #6aa7ff, #2563eb, #93c5ff, #38bdf8) border-box;
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.28),
		0 4px 14px rgba(37, 99, 235, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	animation: klOwnerRing 3s linear infinite reverse;
}

.kl-name-frame4::before,
.kl-name-frame4::after {
	color: #38bdf8;
	content: "✧";
	text-shadow: 0 0 6px rgba(56, 189, 248, 0.85);
}

.kl-staff-name.kl-name-rania {
	color: #9E9E9E;
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 700;
	padding-inline: 18px;
	border: 2px solid transparent;
	background:
		linear-gradient(#f7f7f7, #eeeeee) padding-box,
		conic-gradient(from var(--kl-angle, 0deg), #9E9E9E, #e5e5e5, #6b7280, #d1d5db, #9E9E9E) border-box;
	box-shadow:
		0 0 0 1px rgba(158, 158, 158, 0.25),
		0 4px 12px rgba(107, 114, 128, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	animation: klOwnerRing 3.4s linear infinite;
}

.kl-staff-name.kl-name-rania::before,
.kl-staff-name.kl-name-rania::after {
	color: #9E9E9E;
	content: "✦";
	text-shadow: 0 0 6px rgba(158, 158, 158, 0.7);
}

.kl-staff-item.kl-staff-admin .kl-rank-badge {
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
}

.kl-staff-item.kl-staff-admin .kl-staff-rank {
	color: #1d4ed8;
}

.kl-staff-item.kl-staff-admin .kl-staff-rank > span:not(.kl-rank-badge) {
	color: #1d4ed8;
	font-weight: 900;
	background: rgba(37, 99, 235, 0.12);
	padding: 3px 10px;
	border-radius: 999px;
	border: 1px solid rgba(37, 99, 235, 0.35);
}

.kl-staff-item.kl-staff-admin .kl-staff-rank .fa-star {
	color: #2563eb;
	text-shadow: 0 0 8px rgba(37, 99, 235, 0.55);
}

.kl-staff-item.kl-staff-premium .kl-rank-badge {
	background: linear-gradient(135deg, #a855f7, #7c3aed);
	box-shadow: 0 2px 10px rgba(168, 85, 247, 0.45);
}

.kl-staff-item.kl-staff-premium .kl-staff-rank .fa-star {
	color: #a855f7;
	text-shadow: 0 0 8px rgba(168, 85, 247, 0.45);
}

@keyframes klHeartPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 8px 22px rgba(255, 95, 162, 0.45); }
	50% { transform: scale(1.06); box-shadow: 0 12px 28px rgba(255, 95, 162, 0.6); }
}

@keyframes klBorderSpin {
	to { transform: rotate(360deg); }
}

@keyframes klScenePulse {
	0%, 100% { transform: scale(1); opacity: 0.85; }
	50% { transform: scale(1.05); opacity: 1; }
}

@property --kl-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

@keyframes klOwnerRing {
	to { --kl-angle: 360deg; }
}

@keyframes klMiniHeartFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1) rotate(0deg);
		opacity: 0.35;
	}
	25% {
		transform: translate(6px, -10px) scale(1.15) rotate(8deg);
		opacity: 0.75;
	}
	50% {
		transform: translate(-4px, -18px) scale(0.95) rotate(-6deg);
		opacity: 0.55;
	}
	75% {
		transform: translate(8px, -8px) scale(1.1) rotate(5deg);
		opacity: 0.8;
	}
}

@keyframes klGlowHeartDrift {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.45;
		filter: drop-shadow(0 0 4px rgba(255, 95, 162, 0.7)) drop-shadow(0 0 10px rgba(255, 143, 196, 0.4));
	}
	50% {
		transform: translate(0, -12px) scale(1.2);
		opacity: 0.95;
		filter: drop-shadow(0 0 10px rgba(255, 95, 162, 1)) drop-shadow(0 0 22px rgba(255, 143, 196, 0.75));
	}
}

@media (max-width: 400px) {
	.kl-request {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.kl-request-hint {
		text-align: center;
	}

	.kl-social-row {
		justify-content: center;
	}

	.kl-staff-row {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.kl-staff-rank {
		justify-content: center;
	}

	.kl-staff-name {
		text-align: center;
	}
}
