@font-face {
	font-family: "Oppo Sans";
	src: url("assets/OPPO Sans 4.0.ttf") format("truetype");
}
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Oppo Sans";
	color: white;
	cursor: url("assets/cursor.png"), auto;
}
html, body {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	overflow: hidden;
}
.bg {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	pointer-events: none;
}
.wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	text-align: center;
}
.card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.05);
	width: fit-content;
}
.glow {
	filter: drop-shadow(0 0 10px #ffffff);
}
.scalable {
	transition: transform 0.3s ease;
}
.scalable:hover {
	transform: scale(1.1);
}
.icon {
	width: 60px;
	height: auto;
	display: block;
}
.smoke {
	width: 80px;
	height: auto;
	pointer-events: none;
	user-select: none;
}
.disclaimer {
	position: fixed;
	bottom: 16px;
	left: 0;
	right: 0;
	text-align: center;
}

.dr-warning {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	text-align: center;
}
.dr-warning.visible {
	display: flex;
}
.dr-warning button {
	padding: 10px 24px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	cursor: pointer;
	font-size: 16px;
}
.dr-warning button:hover {
	background: rgba(255, 255, 255, 0.2);
}
