* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #000;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page {
	min-height: 100vh;
	background: linear-gradient(180deg, #07381e 0%, #050a07 40%, #000000 100%);
	padding: 20px 16px 40px;
}

.page-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* 语言切换（椭圆按钮） */
.lang-switch {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	padding: 8px 0 16px;
}
.lang-btn {
	padding: 6px 16px;
	border-radius: 999px;
	border: 1px solid #3C3C3C;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
}
.lang-btn.active {
	border-color: #02CE59;
	background: rgba(2, 206, 89, 0.15);
	color: #02CE59;
	font-weight: 500;
}

/* 返回 */
.nav-bar {
	padding-top: 10px;
	height: 44px;
	display: flex;
	align-items: center;
}
.back-img {
	width: 22px;
	height: 22px;
	cursor: pointer;
}

/* 标题 */
.title {
	font-size: 32px;
	font-weight: 500;
	color: #F7F7F7;
	line-height: 1.2;
	margin-top: 10px;
}
.subtitle {
	margin-top: 10px;
	font-size: 15px;
	color: #D0D0D0;
	line-height: 1.4;
}

/* 标签 */
.label {
	display: block;
	margin-top: 20px;
	font-size: 16px;
	color: #E8E8E8;
}

/* 输入框 */
.input-wrapper {
	margin-top: 6px;
	display: flex;
	align-items: center;
	height: 48px;
	border: 1px solid #3C3C3C;
	border-radius: 8px;
	padding: 0 14px;
}
.input-wrapper input {
	flex: 1;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 16px;
	color: #fff;
}
.input-wrapper input::placeholder {
	color: #494949;
}
.input-wrapper .icon-left {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	flex-shrink: 0;
}
.input-wrapper .icon-eye {
	width: 20px;
	height: 20px;
	margin-left: 8px;
	flex-shrink: 0;
	cursor: pointer;
}

.hint {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
}

/* 按钮 */
.btn-signup,
.btn-download {
	margin-top: 32px;
	width: 100%;
	height: 48px;
	line-height: 48px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(90deg, #BBF154 0%, #02CE59 100%);
	font-size: 16px;
	font-weight: 500;
	color: #000;
	cursor: pointer;
}
.btn-download {
	max-width: 320px;
	margin-top: 16px;
}

/* 协议 */
.terms {
	margin-top: 16px;
	display: flex;
	align-items: flex-start;
}
.checkbox {
	width: 16px;
	height: 16px;
	border: 1px solid #494949;
	border-radius: 50%;
	margin-right: 8px;
	margin-top: 2px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #000;
	cursor: pointer;
}
.checkbox.checked {
	border-color: #02CE59;
	background: #02CE59;
}
.terms-text {
	flex: 1;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
}
.terms-text a {
	color: #02CE59;
	text-decoration: none;
}

/* 时间行 */
.time-row {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.time-icon {
	font-size: 14px;
	margin-right: 6px;
}
.time-text {
	font-size: 12px;
	color: #8A9A8F;
}

/* 富文本内容 */
.content {
	margin-top: 20px;
	font-size: 14px;
	color: #fff;
	line-height: 1.8;
	word-break: break-word;
}
.content img {
	max-width: 100%;
	height: auto;
}

/* 成功图标 */
.success-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(2, 206, 89, 0.15);
	color: #02CE59;
	font-size: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

/* 简易 toast */
.toast {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	z-index: 9999;
	max-width: 80%;
	text-align: center;
}
.btn-back-home {
	margin-top: 24px;
	width: 100%;
	max-width: 320px;
	height: 44px;
	line-height: 44px;
	border: 1px solid #02CE59;
	border-radius: 8px;
	background: transparent;
	color: #02CE59;
	font-size: 15px;
	cursor: pointer;
}