body {
	font-family: "Noto Serif KR", serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
}

.game-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #f3f4f6;
}

.board {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	width: 384px;
	height: 384px;
	padding: 16px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cell {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 1 / 3;
	background: #f8f9fa;
	border: 2px solid #e5e7eb;
	border-radius: 4px;
	font-size: 48px;
	font-weight: bold;
	line-height: 100%;
	color: #374151;
	cursor: pointer;
	transition: background-color 0.2s ease;

	width: 120px;
	height: 120px;
}

.cell:hover {
	background-color: #e5e7eb;
}
