/* 2048蛇 网页版 - 样式限定在 .gaming.area 内，通用见 biz.css */

:root {
	--page-bg: #E8F0E0;
}

/* 本页 .board 需 min-height（通用见 biz.css） */
.gaming.area .board {
	min-height: 200px;
}

.unit img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.unit > .new-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 14px;
	height: 14px;
	padding: 0 3px;
	background: #C00;
	color: #FFF;
	border-radius: 50%;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	pointer-events: none;
	z-index: 2;
}

/* 蛇头高亮（与普通格区分） */
.cell > .unit.snake-head {
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}
