/**
 * 分页组件样式（机能风）
 *
 * 由 index.php / archive.php / archive-game.php 共用，
 * 原 3 份重复的内联 <style> 已合并到此处。
 *
 * 依赖：Tailwind color tokens（#0f172a slate-900 / #facc15 yellow-400 / #ef4444 red-500）
 * Enqueue：functions.php → youcang_enqueue_scripts()
 */

.pagination-item a,
.pagination-item span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border: 2px solid #0f172a;
	font-weight: 900;
	font-style: italic;
	transition: all 0.2s;
}

.pagination-item a {
	background: #ffffff;
	color: #0f172a;
}

.pagination-item a:hover {
	background: #facc15;
	transform: translateY(-2px);
	box-shadow: 4px 4px 0 #0f172a;
}

.pagination-item span.current {
	background: #0f172a;
	color: #facc15;
	box-shadow: 2px 2px 0 #ef4444;
}
