html {
	-webkit-text-size-adjust: 100%
}

* {
	-webkit-tap-highlight-color: transparent
}

a,
button,
.option,
.img-option,
.download-btn {
	touch-action: manipulation
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial;
	background: #fff;
	color: #222;
	overflow-x: hidden
}

.phone-island,
.phone-home-indicator,
.phone-side-button {
	display: none
}

.phone-screen {
	position: relative;
	min-height: 100vh;
	background: #fff
}

.page-scroll {
	min-height: 100vh
}

#qa-layer {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center
}

#qa-layer:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 200%;
	background: url(/assets/88e35018987ad977cc52d0972eb4d82f.png) center top / cover no-repeat;
	animation: bgMove 20s linear infinite;
	z-index: 0;
	pointer-events: none
}

@keyframes bgMove {
	0% {
		transform: translateY(0)
	}

	to {
		transform: translateY(-50%)
	}
}

#qa-mask {
	position: absolute;
	inset: 0;
	background: #00000073;
	z-index: 1;
	pointer-events: none
}

#qa-card {
	position: relative;
	background: #fff;
	width: 90%;
	max-width: 360px;
	border-radius: 22px;
	padding: 22px 20px;
	box-shadow: 0 20px 50px #00000059;
	z-index: 2
}

.progress-text {
	font-size: 13px;
	color: #888;
	margin-bottom: 6px
}

.progress-bar {
	height: 6px;
	background: #eee;
	border-radius: 6px;
	overflow: hidden
}

.progress-bar span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #ff6cab, #7366ff);
	transition: .3s
}

#qa-card h1 {
	font-size: 25px;
	margin: 10px 0
}

#qa-card p {
	font-size: 19px;
	color: #666
}

.options {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 15px
}

.option {
	background: #f5f5f5;
	padding: 14px;
	border-radius: 14px;
	text-align: center;
	cursor: pointer
}

.option:hover {
	background: #ff4081;
	color: #fff
}

.img-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 15px
}

.img-option {
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent
}

.img-option:hover {
	border-color: #ff4081
}

.img-option {
	height: 200px
}

.img-option img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.countdown-bar {
	height: 8px;
	background: #ffd6d6;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 14px
}

.countdown-bar span {
	display: block;
	height: 100%;
	width: 0%;
	background: #ff3b3b;
	transition: width 2s linear
}

.hero {
	text-align: center;
	padding: 60px 20px 40px;
	background: linear-gradient(135deg, #ff6cab, #7366ff);
	color: #fff;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	box-shadow: 0 4px 12px #00000026
}

.hero img {
	width: 100px;
	height: 100px;
	border-radius: 25px;
	margin-bottom: 15px;
	box-shadow: 0 4px 10px #0000004d
}

.hero h1 {
	font-size: 28px;
	margin: 10px 0 5px;
	font-weight: 700
}

.hero p {
	font-size: 16px;
	opacity: .9;
	margin: 0
}

.download-btn {
	margin-top: 25px;
	display: inline-block;
	padding: 16px 60px;
	background: #fff;
	color: #ff4081;
	font-size: 18px;
	font-weight: 600;
	border-radius: 35px;
	text-decoration: none;
	box-shadow: 0 6px 15px #00000040;
	animation: bounce 1.5s infinite
}

@keyframes bounce {

	0%,
	to {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-8px)
	}
}

.section {
	padding: 30px 15px;
	text-align: center
}

.section h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px
}

.features {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap
}

.feature {
	flex: 1;
	margin: 0 5px;
	background: #fff;
	padding: 15px;
	border-radius: 15px;
	box-shadow: 0 3px 10px #0000000f
}

.feature svg {
	width: 28px;
	height: 28px;
	margin-bottom: 8px;
	fill: #ff4081
}

.feature h3 {
	font-size: 15px;
	margin: 8px 0
}

.feature p {
	font-size: 13px;
	color: #ff4081
}

.screenshots {
	display: flex;
	overflow-x: auto;
	gap: 15px;
	padding: 20px;
	-webkit-overflow-scrolling: touch
}

.screenshots img {
	width: 260px;
	height: 480px;
	border-radius: 20px;
	flex-shrink: 0;
	object-fit: cover;
	box-shadow: 0 6px 20px #00000026
}

@media (min-width:768px) {
	body {
		background: radial-gradient(circle at 16% 18%, rgba(255, 190, 221, .95), transparent 24%), radial-gradient(circle at 84% 16%, rgba(191, 214, 255, .88), transparent 26%), radial-gradient(circle at 52% 84%, rgba(214, 194, 255, .72), transparent 28%), linear-gradient(145deg, #fffafc, #f7f7ff 42%, #eef4ff);
		overflow: hidden
	}

	.phone-shell {
		position: fixed;
		inset: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
		isolation: isolate;
		overflow: hidden
	}

	.phone-shell:before,
	.phone-shell:after {
		content: "";
		position: absolute;
		border-radius: 50%;
		filter: blur(10px);
		pointer-events: none;
		z-index: -1
	}

	.phone-shell:before {
		width: 320px;
		height: 320px;
		top: 8%;
		left: 12%;
		background: radial-gradient(circle, #ffa3cc61, #ffa3cc00 68%)
	}

	.phone-shell:after {
		width: 380px;
		height: 380px;
		right: 10%;
		bottom: 6%;
		background: radial-gradient(circle, #7da2ff4d, #7da2ff00 70%)
	}

	.phone-frame {
		position: relative;
		width: min(462px, calc(100vw - 40px));
		height: min(940px, calc(100vh - 40px));
		padding: 14px;
		border-radius: 56px;
		background: linear-gradient(155deg, #fff, #f4f6f9 22%, #dfe4eb 52%, #fff);
		box-shadow: 0 30px 90px #00000047, 0 0 0 1px #ffffffe0, inset 0 0 0 1px #ffffffe6;
		overflow: visible
	}

	.phone-frame:before {
		content: "";
		position: absolute;
		inset: 1px;
		border-radius: inherit;
		background: linear-gradient(135deg, #fffffff5, #ffffff8c 20%, #c7cfda57 52%, #ffffffb8);
		pointer-events: none
	}

	.phone-frame:after {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: inherit;
		box-shadow: inset 0 0 0 1px #ffffffb8, inset 0 0 0 4px #d6dce557;
		pointer-events: none
	}

	.phone-screen {
		position: absolute;
		inset: 14px;
		min-height: auto;
		height: auto;
		border-radius: 42px;
		overflow: hidden;
		background: #fff;
		z-index: 1;
		box-shadow: 0 0 0 1px #0a0c1014
	}

	.page-scroll {
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
		-ms-overflow-style: none;
		scrollbar-width: none
	}

	.page-scroll::-webkit-scrollbar {
		width: 0;
		height: 0
	}

	.phone-screen #qa-layer,
	.phone-screen #popup {
		position: absolute
	}

	.phone-island {
		display: block;
		position: absolute;
		top: 24px;
		left: 50%;
		width: 132px;
		height: 36px;
		transform: translate(-50%);
		border-radius: 999px;
		background: linear-gradient(180deg, #0b0b0d, #000);
		box-shadow: inset 0 1px 1px #ffffff14, 0 6px 16px #00000059;
		z-index: 3;
		pointer-events: none
	}

	.phone-island:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 24px;
		width: 10px;
		height: 10px;
		transform: translateY(-50%);
		border-radius: 50%;
		background: radial-gradient(circle at 30% 30%, #3c4859, #12151b 58%, #020304);
		opacity: .95
	}

	.phone-island:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 24px;
		width: 46px;
		height: 8px;
		transform: translateY(-50%);
		border-radius: 999px;
		background: #ffffff14
	}

	.phone-home-indicator {
		display: block;
		position: absolute;
		bottom: 18px;
		left: 50%;
		width: 132px;
		height: 5px;
		transform: translate(-50%);
		border-radius: 999px;
		background: #12141894;
		z-index: 3;
		pointer-events: none
	}

	.phone-side-button {
		display: block;
		position: absolute;
		width: 4px;
		border-radius: 999px;
		background: linear-gradient(180deg, #f9fafb, #cfd5de 28%, #8d95a1);
		box-shadow: 0 0 0 1px #ffffff59, 0 2px 6px #0000002e;
		z-index: 0;
		pointer-events: none
	}

	.phone-side-button--mute {
		left: -2px;
		top: 136px;
		height: 28px
	}

	.phone-side-button--volume-up {
		left: -2px;
		top: 188px;
		height: 66px
	}

	.phone-side-button--volume-down {
		left: -2px;
		top: 268px;
		height: 66px
	}

	.phone-side-button--power {
		right: -2px;
		top: 208px;
		height: 96px
	}

	.screenshots {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 20px
	}

	.screenshots img {
		width: 260px;
		height: 480px
	}
}

.reviews {
	max-width: 600px;
	margin: 0 auto;
	text-align: left
}

.review-item {
	background: #fff;
	border-radius: 15px;
	padding: 15px;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px #00000014
}

.review-item b {
	display: block;
	margin-bottom: 8px;
	color: #ff4081;
	font-size: 16px;
	font-weight: 600
}

.review-item p {
	margin: 0;
	font-size: 14px;
	color: #444;
	line-height: 1.5
}

.info-list {
	list-style: none;
	padding: 0;
	margin: 20px auto;
	font-size: 14px;
	max-width: 500px
}

.info-list li {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #eee
}

.footer {
	text-align: center;
	font-size: 12px;
	color: #888;
	padding: 10px 15px;
	margin-top: 5px
}

#wechat-mask {
	display: none
}

.wechat-mask-bg {
	position: fixed;
	inset: 0;
	background: #00000080;
	z-index: 10001
}

.wechat-mask-pop {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 85%;
	max-width: 320px;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 20px;
	z-index: 10002;
	overflow: hidden;
	padding: 24px
}

.wechat-mask-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px
}

.wechat-mask-logo {
	width: 50px;
	height: 50px;
	border-radius: 12px
}

.wechat-mask-info {
	margin-left: 12px
}

.wechat-mask-title {
	font-size: 16px;
	font-weight: 600;
	color: #333
}

.wechat-mask-subtitle {
	font-size: 13px;
	color: #999;
	margin-top: 4px
}

.wechat-mask-steps {
	background: #f7f8fa;
	border-radius: 12px;
	padding: 16px
}

.wechat-mask-steps p {
	font-size: 14px;
	color: #333;
	line-height: 2;
	display: flex;
	align-items: center
}

.wechat-mask-steps b {
	color: #ff4081
}

.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: #ff4081;
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 600;
	margin-right: 8px;
	flex-shrink: 0
}

.wechat-mask-divider {
	text-align: center;
	margin: 18px 0;
	position: relative;
	font-size: 12px;
	color: #ccc
}

.wechat-mask-divider:before,
.wechat-mask-divider:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 25%;
	height: 1px;
	background: #e5e5e5
}

.wechat-mask-divider:before {
	left: 0
}

.wechat-mask-divider:after {
	right: 0
}

.wechat-mask-copy {
	position: relative;
	height: 40px;
	background: #f1f6f9;
	border-radius: 20px;
	overflow: hidden
}

.wechat-mask-copy input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: transparent;
	padding: 0 80px 0 16px;
	font-size: 13px;
	color: #999
}

.wechat-mask-copy button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 18px;
	background: linear-gradient(90deg, #ff6cab, #ff4081);
	color: #fff;
	border: none;
	border-radius: 0 20px 20px 0;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes popIn {
	0% {
		opacity: 0;
		transform: scale(.85)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

#net-modal-btn:active {
	transform: scale(.96)
}