.xvr-topbar {
	position: sticky;
	top: 0;
	z-index: 30;
	background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 118, 110, 0.9));
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(94, 234, 212, 0.26);
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.2);
}

.xvr-topbar__inner {
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.xvr-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ecfeff;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: .03em;
	font-size: 1.1rem;
	text-shadow: 0 1px 10px rgba(45, 212, 191, 0.25);
}

.xvr-brand:hover {
	color: #ffffff;
	text-decoration: none;
	filter: brightness(1.08);
}

.xvr-brand__dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, #5eead4 0%, #14b8a6 100%);
	box-shadow: 0 0 0 6px rgba(94, 234, 212, .18);
}

.xvr-nav {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.xvr-nav a {
	position: relative;
	padding: 8px 10px;
	color: rgba(236, 254, 255, 0.9);
	text-decoration: none;
	font-weight: 700;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	border-radius: 10px;
	transition: color .2s ease, background-color .2s ease;
}

.xvr-nav a:hover,
.xvr-nav a[aria-current='page'] {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.xvr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 11px 18px;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform .2s ease;
	cursor: pointer;
}

.xvr-btn:hover {
	transform: translateY(-2px);
}

.xvr-btn--primary {
	background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
	color: #03211f;
	border-color: rgba(255, 255, 255, 0.15);
}

.xvr-breadcrumb {
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.xvr-breadcrumb ol {
	margin: 0;
	padding: 10px 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
}

.xvr-breadcrumb li {
	color: #64748b;
}

.xvr-breadcrumb li + li::before {
	content: '/';
	margin-right: 8px;
	color: #94a3b8;
}

.xvr-breadcrumb a {
	color: #0f766e;
	text-decoration: none;
}

.xvr-breadcrumb a:hover {
	text-decoration: underline;
}

.xvr-form .xvr-btn--primary {
	width: 100%;
	color: #03211f !important;
	font-weight: 800;
	border: 0 !important;
	outline: 0;
	box-shadow: none;
}

.xvr-page-footer {
	background: #020617;
	color: #94a3b8;
}

.xvr-page-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 24px;
	padding: 48px 0 28px;
}

.xvr-page-footer h3,
.xvr-page-footer h4 {
	margin: 0 0 8px;
	color: #fff;
}

.xvr-page-footer p {
	margin: 0 0 8px;
}

.xvr-page-footer a {
	color: #99f6e4;
	text-decoration: none;
	transition: color .2s ease, text-shadow .2s ease;
}

.xvr-page-footer a:hover {
	color: #ccfbf1;
	text-decoration: underline;
	text-shadow: 0 0 10px rgba(45, 212, 191, 0.25);
}

.xvr-page-footer__bottom {
	border-top: 1px solid #1e293b;
	padding: 14px 0 16px;
	text-align: center;
	font-size: 0.9rem;
}

@media (max-width: 860px) {
	.xvr-topbar__inner {
		min-height: auto;
		padding: 12px 0;
		flex-wrap: wrap;
		justify-content: center;
	}

	.xvr-nav {
		order: 3;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.xvr-page-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.xvr-btn {
		transition: none;
	}
}
