/* 独立支付页 — 全屏渐变 + 玻璃卡片 */
.paypage-body {
	margin: 0;
	min-height: 100vh;
	font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
	color: #e8edf5;
	background: #070b14;
	-webkit-font-smoothing: antialiased;
}

.paypage-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse 120% 80% at 10% -20%, rgba(255, 208, 10, 0.18), transparent 55%),
		radial-gradient(ellipse 90% 70% at 100% 10%, rgba(59, 130, 246, 0.16), transparent 50%),
		radial-gradient(ellipse 80% 60% at 50% 110%, rgba(139, 92, 246, 0.12), transparent 45%),
		linear-gradient(165deg, #0a0f1a 0%, #111827 40%, #0c1220 100%);
	pointer-events: none;
}

.paypage-grid {
	position: fixed;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
	pointer-events: none;
}

.paypage-top {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
	padding: 22px 24px 0;
	box-sizing: border-box;
}

.paypage-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
}

.paypage-brand-mark {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(145deg, #ffd00a 0%, #e6a800 100%);
	box-shadow: 0 8px 24px rgba(255, 208, 10, 0.35);
	position: relative;
}
.paypage-brand-mark::after {
	content: "";
	position: absolute;
	inset: 10px;
	border-radius: 6px;
	border: 2px solid rgba(0, 0, 0, 0.15);
}

.paypage-brand-text {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.paypage-nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.paypage-nav a {
	color: rgba(232, 237, 245, 0.85);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.paypage-nav a:hover {
	background: rgba(255, 208, 10, 0.15);
	border-color: rgba(255, 208, 10, 0.35);
	color: #ffd00a;
}

.paypage-main {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	padding: 28px 24px 80px;
	box-sizing: border-box;
}

.paypage-hero {
	text-align: center;
	margin-bottom: 32px;
}

.paypage-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	padding: 6px 14px 6px 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 208, 10, 0.95);
	background: rgba(255, 208, 10, 0.1);
	border: 1px solid rgba(255, 208, 10, 0.25);
	border-radius: 999px;
}

.paypage-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffd00a;
	box-shadow: 0 0 12px #ffd00a;
	animation: paypage-pulse 2s ease-in-out infinite;
}

@keyframes paypage-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.15);
	}
}

.paypage-h1 {
	margin: 0 0 12px;
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	background: linear-gradient(180deg, #fff 30%, rgba(232, 237, 245, 0.82));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.paypage-lead {
	margin: 0 auto;
	max-width: 520px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(232, 237, 245, 0.55);
}

.paypage-shell {
	max-width: 520px;
	margin: 0 auto;
}

.paypage-userbar {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	margin-bottom: 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

.paypage-userbar-ico {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(255, 208, 10, 0.35), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 208, 10, 0.3);
}

.paypage-userbar-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.paypage-userbar-name {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}
.paypage-userbar-sub {
	font-size: 13px;
	color: rgba(232, 237, 245, 0.55);
}
.paypage-userbar-sub strong {
	color: #ffd00a;
	font-weight: 800;
}

.paypage-guest {
	text-align: center;
	padding: 20px;
	margin-bottom: 18px;
	border-radius: 16px;
	background: rgba(251, 191, 36, 0.08);
	border: 1px dashed rgba(251, 191, 36, 0.35);
}
.paypage-guest p {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(252, 211, 77, 0.9);
}
.paypage-guest-btn {
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 800;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	color: #1a1a1a;
	background: linear-gradient(180deg, #ffe033, #ffd00a);
	box-shadow: 0 8px 28px rgba(255, 208, 10, 0.35);
	font-family: inherit;
}

.paypage-card {
	position: relative;
	padding: 28px 26px 26px;
	border-radius: 24px;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
}

.paypage-card--locked {
	opacity: 0.85;
}
.paypage-lock-hint {
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 12px;
	font-weight: 700;
	color: rgba(251, 191, 36, 0.95);
	padding: 4px 10px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.25);
}

.paypage-h2 {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(232, 237, 245, 0.45);
}
.paypage-h2--sp {
	margin-top: 22px;
}

.paypage-amt {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.paypage-amt-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	margin: 0;
	padding: 10px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	cursor: pointer;
	font-family: inherit;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s, background 0.2s;
}
.paypage-amt-btn b {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.paypage-amt-btn span {
	font-size: 11px;
	font-weight: 600;
	color: rgba(232, 237, 245, 0.45);
	margin-top: 2px;
}
.paypage-amt-btn:hover {
	border-color: rgba(255, 208, 10, 0.45);
	transform: translateY(-2px);
}
.paypage-amt-btn.is-on {
	border-color: #ffd00a;
	background: rgba(255, 208, 10, 0.12);
	box-shadow: 0 0 0 1px rgba(255, 208, 10, 0.25), 0 12px 32px rgba(255, 208, 10, 0.12);
}
.paypage-amt-btn.is-on span {
	color: rgba(255, 208, 10, 0.85);
}

.paypage-custom {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.paypage-custom label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	color: rgba(232, 237, 245, 0.45);
}
.paypage-custom-field {
	display: flex;
	align-items: center;
	border-radius: 14px;
	border: 2px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.25);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.paypage-custom-field:focus-within {
	border-color: rgba(255, 208, 10, 0.55);
	box-shadow: 0 0 0 3px rgba(255, 208, 10, 0.12);
}
.paypage-custom-field input {
	flex: 1;
	min-width: 0;
	height: 50px;
	padding: 0 16px;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-family: inherit;
	outline: none;
}
.paypage-custom-field input::placeholder {
	color: rgba(232, 237, 245, 0.28);
}
.paypage-custom-field span {
	padding: 0 16px;
	font-size: 14px;
	font-weight: 700;
	color: rgba(232, 237, 245, 0.4);
}

.paypage-pay {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}

.paypage-pay-item {
	display: block;
	cursor: pointer;
	margin: 0;
	position: relative;
}
.paypage-pay-item input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.paypage-pay-face {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 14px;
	min-height: 64px;
	border-radius: 16px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.18);
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}
.paypage-pay-item:hover .paypage-pay-face {
	border-color: rgba(255, 255, 255, 0.2);
}
.paypage-pay-item input:checked + .paypage-pay-face {
	border-color: #ffd00a;
	background: rgba(255, 208, 10, 0.08);
	box-shadow: 0 8px 28px rgba(255, 208, 10, 0.12);
}

.paypage-pay-ico {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 11px;
}
.paypage-pay-ico-zft {
	background: linear-gradient(145deg, #ffd00a, #e6a800);
	box-shadow: 0 6px 16px rgba(255, 208, 10, 0.35);
}
.paypage-pay-ico-zft::before {
	content: "Z";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 15px;
	font-weight: 900;
	color: #1a1200;
	font-style: normal;
}
.paypage-pay-ico-zfb {
	background: linear-gradient(145deg, #1677ff, #0958d9);
	box-shadow: 0 6px 16px rgba(22, 119, 255, 0.35);
}
.paypage-pay-ico-zfb::before {
	content: "支";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: 900;
	color: #fff;
	font-style: normal;
}
.paypage-pay-ico-wx {
	background: linear-gradient(145deg, #07c160, #059a4c);
	box-shadow: 0 6px 16px rgba(7, 193, 96, 0.35);
}
.paypage-pay-ico-wx::before {
	content: "微";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: 900;
	color: #fff;
	font-style: normal;
}

.paypage-pay-txt {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.paypage-pay-txt b {
	font-size: 15px;
	color: #fff;
}
.paypage-pay-txt small {
	font-size: 11px;
	color: rgba(232, 237, 245, 0.4);
	font-weight: 600;
}

.paypage-cta {
	width: 100%;
	margin-top: 24px;
	padding: 18px 20px;
	border: none;
	border-radius: 16px;
	cursor: pointer;
	font-family: inherit;
	background: linear-gradient(180deg, #ffe14d 0%, #ffd00a 40%, #e6ac00 100%);
	color: #1a1200;
	box-shadow:
		0 16px 40px rgba(255, 208, 10, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
	transition: transform 0.15s, box-shadow 0.2s;
}
.paypage-cta:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow:
		0 20px 48px rgba(255, 208, 10, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.paypage-cta:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
.paypage-cta-main {
	display: block;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.02em;
}
.paypage-cta-sub {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 600;
	opacity: 0.65;
}

.paypage-trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}
.paypage-trust li {
	font-size: 12px;
	font-weight: 600;
	color: rgba(232, 237, 245, 0.35);
	position: relative;
	padding-left: 14px;
}
.paypage-trust li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 208, 10, 0.5);
}

.paypage-foot {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 32px 20px 40px;
	font-size: 12px;
	color: rgba(232, 237, 245, 0.28);
}

.paypage-body--m .paypage-top {
	padding-top: 16px;
}
.paypage-body--m .paypage-nav a {
	padding: 8px 12px;
	font-size: 13px;
}
.paypage-body--m .paypage-main {
	padding-bottom: 48px;
}

@media (max-width: 600px) {
	.paypage-amt {
		grid-template-columns: repeat(2, 1fr);
	}
	.paypage-pay {
		grid-template-columns: 1fr;
	}
	.paypage-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.paypage-nav {
		width: 100%;
		justify-content: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.paypage-badge-dot {
		animation: none;
	}
}
