@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

:root {
	--bg: #ffffff;
	--text: #222;
	--muted: #6b7280;
	--line: #e5e7eb;
	--brand: #128a4a;
	--card: #fafafa
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	font-family: "Noto Sans TC", sans-serif;
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font: 15px/1.6 -apple-system, BlinkMacSystemFont, Helvetica, Segoe UI, Roboto, Arial, "PingFang TC", "Hiragino Sans GB", "Microsoft JhengHei", sans-serif
}

.full {
	width: 100%;
	height: 100%;
	/* background-image: url("../img/page.png"); */
	background-size: cover;
}

.page {
	max-width: 430px;
	margin: 0 auto;
	padding: 10px;

}

.banner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden
}

.banner img {
	display: block;
	max-width: 100%;
	height: auto
}

.title {
	font-weight: 700;
	font-size: 14px;
	margin: 14px 0 8px 0;
}

.divider {
	height: 1px;
	background: var(--line);
	margin: 8px 0 8px;
}

.divider2 {
	height: 2px;
	background: var(--line);
	margin-top: 16px;
}

.row {
	display: flex;
	gap: 12px;
	flex-direction: column;
}

.shield {
	flex: 0 0 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shield svg {
	width: auto;
	height: 100%;
	display: block;
}

.code {
	font-size: 14px;
	color: var(--muted);
	margin: 6px 0 10px;
}

.desc {
	font-size: 13px;
	color: #333;
	padding: 0 28px 0 28px;
	line-height: 20px;
	font-weight: 400;
	color: #6F6D70;
}

.desc b {
	color: #111
}

.card {
	margin: 0;
	margin-top: 0px;
	padding-top: 10px;
	background-color: #F3F3F7;
	width: 100%;
	overflow: hidden;
}

.card .pack-img {
	display: block;
	width: 100%;
	height: auto;
	background: #f9fafb;
	object-fit: cover
}

.footer {
	margin-top: 10px;
	text-align: center;
	color: #7a7f87;
	font-size: 12px
}

/* 微調字距，使與截圖觀感接近 */
.title,
.desc,
.code {
	letter-spacing: .2px
}

/* 適配深色模式（可選） */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0b0b0d;
		--text: #f2f4f7;
		--muted: #9aa0a6;
		--line: #2a2d32;
		--card: #111315;
		--brand: #22c55e
	}

	.shield {
		border-color: #264333;
		background: #0f2216
	}
}