.holo-wrapper {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	background: #020617;
	border-radius: 16px;
	padding: 60px 20px;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	perspective: 1200px;
}

.holo-scene {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 400px;
	transform-style: preserve-3d;
	transform: rotateX(var(--rotY, 0deg)) rotateY(var(--rotX, 0deg));
	transition: transform 0.1s ease-out;
}

.holo-floor {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	background-image:
		linear-gradient(rgba(56, 189, 248, 0.2) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.2) 1px, transparent 1px);
	background-size: 40px 40px;
	transform: translate(-50%, -20%) rotateX(75deg) translateZ(-150px);
	mask-image: radial-gradient(circle at center, black 10%, transparent 60%);
	-webkit-mask-image: radial-gradient(circle at center,
			black 10%,
			transparent 60%);
}

.holo-card {
	position: absolute;
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(56, 189, 248, 0.3);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 16px;
	padding: 24px;
	color: #f8fafc;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.5),
		inset 0 0 20px rgba(56, 189, 248, 0.05);
}

.layer-bg {
	top: 20px;
	right: 20px;
	width: 260px;
	transform: translateZ(-50px);
	border-color: rgba(148, 163, 184, 0.2);
}

.layer-mid {
	top: 50%;
	left: 50%;
	width: 340px;
	transform: translate(-50%, -50%) translateZ(40px);
	border-color: rgba(56, 189, 248, 0.5);
	box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.layer-fg {
	bottom: 20px;
	left: 20px;
	width: 240px;
	display: flex;
	gap: 16px;
	align-items: center;
	transform: translateZ(120px);
	background: rgba(139, 92, 246, 0.2);
	border-color: rgba(139, 92, 246, 0.5);
}

.holo-badge {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(56, 189, 248, 0.2);
	color: #38bdf8;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.layer-mid h2 {
	margin: 0 0 20px 0;
	font-size: 28px;
	font-weight: 300;
	letter-spacing: -0.5px;
}

.holo-stats {
	display: flex;
	gap: 24px;
}

.h-stat {
	display: flex;
	flex-direction: column;
}

.h-val {
	font-size: 24px;
	font-weight: 700;
	color: #38bdf8;
}

.h-lbl {
	font-size: 12px;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.layer-bg h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	color: #94a3b8;
}

.layer-bg p {
	margin: 0;
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
}

.holo-alert-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(139, 92, 246, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.layer-fg h4 {
	margin: 0 0 4px 0;
	font-size: 15px;
}

.layer-fg p {
	margin: 0;
	font-size: 13px;
	color: #c4b5fd;
}