/* 强文本样式 */
.strongtext {
	font-weight: bolder;
	color: #f03a97;
}

p.body2 {
	text-align: left;
	font-size: 18px;
	margin-top: 15px;
	line-height: 30px;
}

.hero-main .mobile-screenshots {
	margin-left: 120px;
}

.platform-theme-hh {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
	border-left: 5px solid #0d1831;
	box-shadow: 0 4px 20px rgba(13, 24, 49, 0.1);
	margin-top: 0;
}

.platform-theme-we {
	background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #99f6e4 100%);
	border-left: 5px solid #136f5b;
	box-shadow: 0 4px 20px rgba(19, 111, 91, 0.1);
}

.platform-theme-aa {
	background: linear-gradient(135deg, #f7fee7 0%, #dcfce7 50%, #bbf7d0 100%);
	border-left: 5px solid #386046;
	box-shadow: 0 4px 20px rgba(56, 96, 70, 0.1);
}

.platform-title-hh {
	color: #0d1831;
}

.platform-title-we {
	color: #136f5b;
}

.platform-title-aa {
	color: #386046;
}

.button-white {
	margin-top: 15px;
}

/* 主体页面美化优化 - 与弹窗风格统一的现代化设计 */
.hero-main {
	position: relative;
	overflow: hidden;
	transition: all 0.6s ease;
}

.hero-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
	pointer-events: none;
	animation: background-shimmer 8s ease-in-out infinite;
}

@keyframes background-shimmer {
	0%, 100% { 
		background: 
			radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
			radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
			radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
	}
	33% { 
		background: 
			radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
			radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
			radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
	}
	66% { 
		background: 
			radial-gradient(circle at 50% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
			radial-gradient(circle at 50% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
			radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
	}
}

.hero-main::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, 
		transparent 0%, 
		rgba(255,255,255,0.1) 25%, 
		transparent 50%, 
		rgba(255,255,255,0.1) 75%, 
		transparent 100%);
	background-size: 200% 200%;
	animation: gradient-shift 3s linear infinite;
	pointer-events: none;
}

@keyframes gradient-shift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.hero-main .hero-body {
	position: relative;
	z-index: 1;
}

/* 增强的悬浮效果 */
.hero-main:hover {
	transform: translateY(-2px);
}

.hero-main:hover::after {
	animation-duration: 1.5s;
}

/* 内容卡片美化 - 现代化玻璃拟态设计 */
.hero-main .column > div {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
				0 0 0 1px rgba(255, 255, 255, 0.05) inset;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 24px;
	padding: 32px;
	position: relative;
	overflow: hidden;
}

.hero-main .column > div::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.4) 0%, transparent 50%),
				radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.hero-main .column > div:hover {
	transform: none;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 
				0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	border-color: rgba(255, 255, 255, 0.3);
}

.hero-main .column > div > * {
	position: relative;
	z-index: 2;
}

.hero-main .column > div .platform-title {
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
	font-weight: 800;
	position: relative;
	background: linear-gradient(135deg, currentColor 0%, color-mix(in srgb, currentColor 70%, black 30%) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-main .column > div .platform-title::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, currentColor 0%, transparent 100%);
	border-radius: 2px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-main .column > div .body1 {
	font-size: 1.2rem;
	line-height: 1.8;
	color: rgba(26, 32, 44, 0.8);
	margin-bottom: 2rem;
	font-weight: 500;
}

/* 按钮组美化 - 现代化设计 */
.hero-main .button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 2rem;
}

.hero-main .button-group .button {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	font-weight: 700;
	padding: 16px 28px;
	font-size: 16px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	min-width: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.hero-main .button-group .button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.6s ease;
}

.hero-main .button-group .button:hover::before {
	left: 100%;
}

.hero-main .button-group .button:hover {
	transform: none;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-main .button-group .button:active {
	transform: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-main .button-group .button .button-icon {
	font-size: 22px;
	opacity: 0.9;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
	transition: all 0.3s ease;
}

.hero-main .button-group .button:hover .button-icon {
	font-size: 24px;
	opacity: 1;
	transform: none;
}

/* 截图区域美化 - 现代化悬浮效果 */
.mobile-screenshots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	position: relative;
	padding: 20px;
}

.mobile-screenshots::before {
	content: '';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: float-glow 4s ease-in-out infinite;
}

@keyframes float-glow {
	0%, 100% { 
		transform: translateX(-50%) scale(1);
		opacity: 0.3;
	}
	50% { 
		transform: translateX(-50%) scale(1.2);
		opacity: 0.5;
	}
}

.mobile-screenshots img {
	max-width: 320px;
	height: auto;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
				0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.mobile-screenshots img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
	border-radius: 24px;
	pointer-events: none;
}

.mobile-screenshots img:hover {
	transform: none;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 
				0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.mobile-screenshots img.screenshot1 {
	transform: rotate(-3deg);
	filter: brightness(1.02);
}

.mobile-screenshots img.screenshot2 {
	transform: rotate(3deg);
	filter: brightness(1.01);
}

.mobile-screenshots:hover img.screenshot1 {
	transform: rotate(0deg);
}

.mobile-screenshots:hover img.screenshot2 {
	transform: rotate(0deg);
}

/* 删除导致跳跃的动画 */

/* 按钮基础样式 - 现代化渐变设计 */
.button-green, .button-teal, .button-blue {
	margin: 0;
	border-radius: 16px;
	padding: 16px 28px;
	font-weight: 700;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	border: none;
}

.button-green {
	background: linear-gradient(135deg, #136F5B 0%, #0a7e68 50%, #136F5B 100%) !important;
	color: white !important;
	box-shadow: 0 10px 25px rgba(19, 111, 91, 0.4), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

.button-green:hover {
	background: linear-gradient(135deg, #0a7e68 0%, #136F5B 50%, #0a7e68 100%) !important;
	color: white !important;
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 35px rgba(19, 111, 91, 0.5), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

.button-teal {
	background: linear-gradient(135deg, #386046 0%, #4a7c58 50%, #386046 100%) !important;
	color: white !important;
	box-shadow: 0 10px 25px rgba(56, 96, 70, 0.4), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

.button-teal:hover {
	background: linear-gradient(135deg, #4a7c58 0%, #386046 50%, #4a7c58 100%) !important;
	color: white !important;
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 35px rgba(56, 96, 70, 0.5), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

.button-blue {
	background: linear-gradient(135deg, #0D1831 0%, #1a2951 50%, #0D1831 100%) !important;
	color: white !important;
	box-shadow: 0 10px 25px rgba(13, 24, 49, 0.4), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

.button-blue:hover {
	background: linear-gradient(135deg, #1a2951 0%, #0D1831 50%, #1a2951 100%) !important;
	color: white !important;
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 35px rgba(13, 24, 49, 0.5), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

/* 按钮光晕效果 */
.button-green::before,
.button-teal::before,
.button-blue::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.6s ease;
}

.button-green:hover::before,
.button-teal:hover::before,
.button-blue:hover::before {
	width: 300px;
	height: 300px;
	opacity: 0.1;
}

/* 响应式设计 */
@media (min-width: 768px) {
	.section.features img {
		width: 250px;
	}
}

.titlesmall {
	font-size: 1.5rem;
}

.footer {
	padding: 3rem 1.5rem 3rem;
	background-color: #4280ff;
}

.footer a {
	color: #E9E9E9;
	margin-bottom: 15px;
	display: inline-block;
}

.site-note {
	padding-top: 24px;
	padding-bottom: 24px;
}

.site-note .container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.site-note-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.site-note-card h2 {
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 12px;
}

.site-note-card p {
	font-size: 15px;
	line-height: 1.7;
	color: #1f2937;
	margin-bottom: 10px;
}

.note-list,
.faq-list {
	margin: 0;
	padding-left: 20px;
}

.note-list li,
.faq-list li {
	font-size: 14px;
	line-height: 1.6;
	color: #374151;
	margin-bottom: 8px;
}

.faq-list strong {
	display: block;
	color: #0f172a;
}

.faq-list span {
	color: #334155;
}

/* 专业导航条样式 */
.professional-nav {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	height: 70px;
}

.nav-logo {
	font-size: 24px;
	font-weight: bold;
	background: linear-gradient(45deg, #0D1831, #136F5B, #386046);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-right: auto;
}

.nav-items {
	display: flex;
	gap: 40px;
	align-items: center;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 16px;
	border-radius: 12px;
}

.nav-item:hover {
	background: rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

.nav-item.active {
	color: #0D1831;
	font-weight: 600;
}

.nav-item.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 3px;
	background: #0D1831;
	border-radius: 2px;
}

.nav-item.we-poker.active {
	color: #136F5B;
}

.nav-item.we-poker.active::after {
	background: #136F5B;
}

.nav-item.aa-poker.active {
	color: #386046;
}

.nav-item.aa-poker.active::after {
	background: #386046;
}

.nav-icon {
	font-size: 20px;
	margin-bottom: 4px;
}

.nav-text {
	font-size: 12px;
	letter-spacing: 0.5px;
}

/* 客服悬浮按钮样式 - 现代化完美设计 */
.customer-service {
	position: fixed;
	right: 25px;
	bottom: 100px;
	z-index: 9999;
}

.cs-button {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 68px;
	height: 68px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9f7aea 100%);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 
		0 8px 32px rgba(102, 126, 234, 0.4),
		0 2px 8px rgba(118, 75, 162, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	color: white;
	position: relative;
	border: 2px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.cs-button::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg, 
		transparent 0%, 
		rgba(255, 255, 255, 0.1) 25%, 
		transparent 50%, 
		rgba(255, 255, 255, 0.1) 75%, 
		transparent 100%);
	background-size: 400% 400%;
	border-radius: 50%;
	animation: gradient-rotate 3s linear infinite;
	z-index: -1;
}

@keyframes gradient-rotate {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.cs-button:hover {
	transform: none;
	box-shadow: 
		0 12px 32px rgba(102, 126, 234, 0.5),
		0 3px 12px rgba(118, 75, 162, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
	background: linear-gradient(135deg, #7c8ff0 0%, #8b5fb8 50%, #b084d0 100%);
}

.cs-button:active {
	transform: none;
	box-shadow: 
		0 8px 20px rgba(102, 126, 234, 0.4),
		0 2px 8px rgba(118, 75, 162, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cs-button .cs-icon {
	font-size: 24px;
	margin-bottom: 3px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.cs-button:hover .cs-icon {
	transform: scale(1.1);
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.cs-button span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.cs-button:hover span {
	letter-spacing: 0.7px;
}

/* 增强脉冲动画 */
.cs-button::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
	opacity: 0;
	animation: enhanced-pulse 2.5s ease-out infinite;
	z-index: -1;
}

@keyframes enhanced-pulse {
	0% {
		transform: scale(0.8);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.4);
		opacity: 0.2;
	}
	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

/* 客服按钮悬浮光晕效果 */
.customer-service::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float-glow-cs 4s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
}

@keyframes float-glow-cs {
	0%, 100% { 
		transform: translateX(-50%) scale(1);
		opacity: 0.3;
	}
	50% { 
		transform: translateX(-50%) scale(1.2);
		opacity: 0.6;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes scaleIn {
	0% {
		transform: translate(-50%, -50%) scale(0.7);
		opacity: 0;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.02);
		opacity: 0.8;
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
}

/* 弹窗内容基础样式 */
.cs-modal-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 30px;
	position: relative;
}

.cs-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.cs-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.cs-modal-body {
	padding: 0;
}

/* 响应式内容布局 */
@media (max-width: 768px) {
	.cs-modal-header {
		padding: 25px 20px;
	}
	
	.cs-close {
		top: 15px;
		right: 15px;
		width: 35px;
		height: 35px;
	}
	
	.welcome-banner,
	.download-section,
	.invite-section,
	.support-section {
		padding: 25px 20px;
	}
}



/* 客服弹窗样式 - 最终修复版 */
.cs-modal {
	display: none !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	background: rgba(0, 0, 0, 0.8) !important;
	backdrop-filter: blur(10px) !important;
	z-index: 10000 !important;
	animation: fadeIn 0.3s ease-out !important;
}

.cs-modal.show {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

/* 背景滚动锁定优化 */
body.modal-open {
	position: fixed !important;
	width: 100% !important;
	overflow: hidden !important;
}

.cs-modal-content {
	background: white !important;
	border-radius: 0 !important;
	width: 100% !important;
	height: auto !important;
	max-height: 100vh !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch !important;
	animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* 桌面端弹窗优化 */
@media (min-width: 769px) {
	.cs-modal {
		background: rgba(0, 0, 0, 0.6) !important;
	}
	
	.cs-modal-content {
		position: relative !important;
		width: 600px !important;
		max-width: 90vw !important;
		height: auto !important;
		max-height: 95vh !important;
		border-radius: 24px !important;
		box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2) !important;
		animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: thin;
		scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
	}

	/* 桌面端滚动条样式 */
	.cs-modal-content::-webkit-scrollbar {
		width: 6px;
	}

	.cs-modal-content::-webkit-scrollbar-track {
		background: transparent;
	}

	.cs-modal-content::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, 0.2);
		border-radius: 3px;
	}

	.cs-modal-content::-webkit-scrollbar-thumb:hover {
		background-color: rgba(0, 0, 0, 0.3);
	}

	/* 桌面端内容样式 */
	.header-content {
		padding: 28px;
	}

	.cs-modal-header h3 {
		font-size: 22px;
	}

	.header-subtitle {
		font-size: 14px;
	}

	.welcome-banner {
		padding: 24px 28px;
	}

	.welcome-text h4 {
		font-size: 17px;
	}

	.welcome-text p {
		font-size: 15px;
	}

	.bonus-amount {
		font-size: 24px;
	}

	.download-section {
		padding: 28px;
	}

	.step-number {
		width: 28px;
		height: 28px;
		font-size: 13px;
		margin-right: 12px;
	}

	.step-title {
		font-size: 14px;
	}

	.step-desc {
		font-size: 12px;
	}

	.invite-section {
		padding: 28px;
	}

	.benefits-list {
		margin: 16px 0;
	}

	.benefit-item {
		padding: 10px 14px;
		margin-bottom: 10px;
	}

	.benefit-icon {
		font-size: 16px;
	}

	.benefit-item span {
		font-size: 13px;
	}

	.support-section {
		padding: 20px 28px;
	}
	.support-header h5 {
		font-size: 15px;
	}

	.support-content p {
		font-size: 13px;
	}

	.support-badges {
		gap: 10px;
	}

	.support-badge {
		font-size: 11px;
		padding: 5px 10px;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.cs-modal-content {
	background: white;
	border-radius: 20px;
	overflow: hidden;
}

/* 弹窗头部 */
.cs-modal-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.cs-modal-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { transform: rotate(0deg); }
	50% { transform: rotate(180deg); }
}

.header-content {
	padding: 24px;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.header-title {
	flex: 1;
}

.vip-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, #FFD700, #FFA500);
	color: white;
	font-size: 11px;
	font-weight: bold;
	padding: 4px 8px;
	border-radius: 12px;
	margin-bottom: 8px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.cs-modal-header h3 {
	margin: 0 0 8px 0;
	font-size: 20px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-subtitle {
	margin: 0;
	font-size: 14px;
	opacity: 0.9;
	font-weight: 400;
}

.cs-close {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	cursor: pointer;
	padding: 8px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.cs-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

.cs-modal-body {
	padding: 0;
}

/* 欢迎横幅 */
.welcome-banner {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	padding: 20px 24px;
	position: relative;
	overflow: hidden;
}

.welcome-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(20px, -20px) rotate(180deg); }
}

.banner-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}

.welcome-text h4 {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 700;
	color: white;
}

.welcome-text p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
}

.bonus-amount {
	font-size: 20px;
	font-weight: bold;
	color: #FFD700;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.welcome-icon {
	font-size: 32px;
	animation: bounce 2s ease-in-out infinite;
}

.bonus-tags {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.tag {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}

/* 应用下载区域 */
.download-section {
	padding: 24px;
	background: white;
}

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

.app-logo {
	width: 48px;
	height: 48px;
	margin-right: 12px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 2px solid #f0f0f0;
}

.app-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.app-info {
	flex: 1;
}

.app-info h4 {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.app-info p {
	margin: 0 0 6px 0;
	font-size: 13px;
	color: #666;
}

.rating {
	display: flex;
	align-items: center;
}

.stars {
	color: #FFD700;
	font-size: 12px;
	margin-right: 6px;
}

.rating-text {
	font-size: 12px;
	color: #666;
	font-weight: 500;
}

/* 下载按钮 */
.download-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.download-btn {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	border-radius: 16px;
	text-decoration: none;
	color: white;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.6s ease;
}

.download-btn:hover::before {
	left: 100%;
}

.download-btn.android {
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.download-btn.ios {
	background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
}

.download-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
	margin-right: 12px;
	opacity: 0.9;
}

.btn-content {
	flex: 1;
}

.btn-title {
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
}

.btn-subtitle {
	display: block;
	font-size: 12px;
	opacity: 0.8;
}

.btn-arrow {
	font-size: 18px;
	font-weight: bold;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.download-btn:hover .btn-arrow {
	opacity: 1;
	transform: translateX(2px);
}

/* 注册流程指导样式 */
.registration-guide {
	margin-top: 20px;
	padding: 16px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 12px;
	border: 1px solid #dee2e6;
}

.registration-guide h5 {
	margin: 0 0 12px 0;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.guide-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.step {
	display: flex;
	align-items: flex-start;
	padding: 8px 0;
}

.step-number {
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	margin-right: 10px;
	flex-shrink: 0;
}

.step-content {
	flex: 1;
}

.step-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 2px;
}

.step-desc {
	display: block;
	font-size: 11px;
	color: #666;
	line-height: 1.3;
}

/* 邀请码区域 */
.invite-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 24px;
	border-radius: 0 0 20px 20px;
}

.invite-header {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.invite-icon {
	font-size: 24px;
	margin-right: 8px;
}

.invite-text {
	flex: 1;
}

.invite-header h4 {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 600;
	color: white;
}

.invite-text p {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.invite-code-wrapper {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.invite-code {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 8px;
}

.invite-code:hover {
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.code-label {
	font-size: 14px;
	color: #666;
	margin-right: 8px;
}

.code-value {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	font-family: 'Courier New', monospace;
	letter-spacing: 2px;
}

.code-copy-btn {
	color: #667eea;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.invite-code:hover .code-copy-btn {
	opacity: 1;
}

.code-tip {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
}

/* 福利列表样式 */
.benefits-list {
	margin: 12px 0;
}

.benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:last-child {
	margin-bottom: 0;
}

.benefit-icon {
	margin-right: 8px;
	font-size: 14px;
}

.benefit-item span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
}

/* 客服支持区域 - 确保显示 */
.support-section {
	background: #f8f9fa;
	padding: 16px 24px;
	border-top: 1px solid #e9ecef;
	min-height: 120px;
	position: relative;
	z-index: 1;
}

.support-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.support-icon {
	font-size: 20px;
	margin-right: 8px;
}

.support-header h5 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.support-content p {
	margin: 0 0 12px 0;
	font-size: 12px;
	color: #666;
	line-height: 1.4;
}

.support-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.support-badge {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-size: 10px;
	padding: 4px 8px;
	border-radius: 12px;
	font-weight: 500;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.section.why-signal {
		margin-top: 280px;
	}
	
	/* 专业导航移动端优化 */
	.professional-nav {
		padding: 0;
		height: auto;
	}
	
	.nav-container {
		padding: 15px;
		height: auto;
		flex-direction: column;
	}
	
	.nav-logo {
		font-size: 20px;
		margin-right: 0;
		margin-bottom: 15px;
		text-align: center;
	}
	
	.nav-items {
		gap: 10px;
		width: 100%;
		justify-content: space-around;
	}
	
	.nav-item {
		padding: 12px;
		min-width: 80px;
		touch-action: manipulation; /* 优化触控响应 */
	}
	
	.nav-icon {
		font-size: 18px;
		margin-bottom: 2px;
	}
	
	.nav-text {
		font-size: 11px;
	}

	/* 客服移动端优化 */
	.customer-service {
		right: 15px;
		bottom: 80px;
	}

	.cs-button {
		width: 60px;
		height: 60px;
	}

	.cs-button .cs-icon {
		font-size: 22px;
		margin-bottom: 3px;
	}

	.cs-button span {
		font-size: 12px;
	}

	/* 旧的冲突样式已删除 */

	.header-content {
		padding: 20px;
	}

	.cs-modal-header h3 {
		font-size: 18px;
	}

	.header-subtitle {
		font-size: 13px;
	}

	.welcome-banner {
		padding: 16px 20px;
	}

	.welcome-text h4 {
		font-size: 15px;
	}

	.welcome-text p {
		font-size: 13px;
	}

	.bonus-amount {
		font-size: 18px;
	}

	.welcome-icon {
		font-size: 28px;
	}

	.download-section {
		padding: 20px;
	}

	.app-logo {
		width: 44px;
		height: 44px;
	}

	.app-info h4 {
		font-size: 15px;
	}

	.download-btn {
		padding: 14px 16px;
	}

	.btn-title {
		font-size: 14px;
	}

	.btn-subtitle {
		font-size: 11px;
	}

	.invite-section {
		padding: 20px;
	}

	.invite-header h4 {
		font-size: 15px;
	}

	.invite-code-wrapper {
		padding: 14px;
	}

	.invite-code {
		padding: 10px 14px;
	}

	.code-value {
		font-size: 16px;
	}

	.code-tip {
		font-size: 11px;
	}

	/* 客服移动端优化 */
	.customer-service {
		right: 15px;
		bottom: 80px;
	}

	.cs-button {
		width: 60px;
		height: 60px;
	}

	.cs-button .cs-icon {
		font-size: 22px;
		margin-bottom: 3px;
	}

	.cs-button span {
		font-size: 12px;
	}

	.cs-modal-header {
		padding: 15px 20px;
		position: sticky;
		top: 0;
		z-index: 10;
		min-height: 60px;
	}

	.cs-modal-header h3 {
		font-size: 16px;
		line-height: 1.3;
	}

	.cs-close {
		width: 32px;
		height: 32px;
		font-size: 22px;
		top: 12px;
		right: 15px;
	}

	.cs-modal-body {
		padding: 15px 20px;
	}

	.download-guide {
		margin-bottom: 20px;
	}

	.download-guide h4 {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.contact-item {
		padding: 12px 0;
		font-size: 14px;
		line-height: 1.5;
	}

	.contact-icon {
		font-size: 16px;
		margin-right: 12px;
		width: 20px;
		text-align: center;
	}

	.cs-qr-section {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.cs-qr-section h4 {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.qr-code {
		width: 140px;
		height: 140px;
		padding: 10px;
		margin: 0 auto 15px;
	}

	.qr-code img {
		border-radius: 8px;
	}

	.cs-tip {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.cs-tip small {
		font-size: 12px;
		color: #888;
		margin-top: 5px;
		display: block;
	}

	.app-desc {
		margin-top: 20px;
		padding: 15px;
	}

	.app-desc p {
		font-size: 13px;
		line-height: 1.5;
	}

	.hero-main .mobile-screenshots {
		margin-left: 0px;
	}
	
	footer .column {
		display: inline-block;
		width: 45%;
	}
	
	.footer a {
		color: #E9E9E9;
		margin-bottom: 15px;
		display: inline-block;
	}
	
	.footer {
		padding: 3rem 1.5rem 3rem;
		background-color: #4280ff;
	}
	
	.footer strong {
		font-size: 1.2rem;
	}
}

/* 移动端弹窗全屏优化 - 真正全屏 */
@media (max-width: 768px) {
	.cs-modal-content {
		border-radius: 0 !important;
		box-shadow: none !important;
	}
}

/* 旧的mobile-fullscreen样式已删除 - 现在由新的响应式设计处理 */



/* 所有旧的mobile-fullscreen样式已删除 - 现在由新的响应式设计处理 */

/* 小屏手机优化 */
@media (max-width: 375px) {
	.cs-modal-header {
		padding: 20px 15px;
	}
	
	.cs-close {
		width: 35px;
		height: 35px;
		top: 15px;
		right: 15px;
	}
	
	.welcome-banner,
	.download-section,
	.invite-section,
	.support-section {
		padding: 20px 15px;
	}
}

/* 超小屏手机优化 */
@media (max-width: 320px) {
	.cs-modal-header {
		padding: 15px 12px;
	}
	
	.cs-close {
		width: 30px;
		height: 30px;
		top: 12px;
		right: 12px;
	}
	
	.welcome-banner,
	.download-section,
	.invite-section {
		padding: 15px 12px;
	}
	
	.support-section {
		padding: 15px 12px !important;
		background: #f8f9fa !important;
		border-top: 1px solid #e9ecef !important;
	}
}

/* 用户偏好设置样式 */
.user-preferences {
	margin-top: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	border-top: 1px solid #e9ecef;
}

.preference-item {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	color: #495057;
	user-select: none;
	transition: all 0.2s ease;
}

.preference-item:hover {
	color: #007bff;
}

.preference-item input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #dee2e6;
	border-radius: 3px;
	margin-right: 10px;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.preference-item input[type="checkbox"]:checked + .checkmark {
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	border-color: #007bff;
}

.preference-item input[type="checkbox"]:checked + .checkmark::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.preference-text {
	line-height: 1.4;
	flex: 1;
}

/* 改进的弹窗动画 */
.cs-modal {
	transition: opacity 0.3s ease, transform 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.cs-modal.show {
	opacity: 1;
	transform: translateY(0);
}

/* 桌面端客服按钮进一步美化 */
@media (min-width: 769px) {
	.cs-button {
		width: 72px;
		height: 72px;
	}
	
	.cs-button .cs-icon {
		font-size: 26px;
		margin-bottom: 4px;
	}
	
	.cs-button span {
		font-size: 12px;
		letter-spacing: 0.6px;
	}
	
	.customer-service {
		right: 30px;
		bottom: 110px;
	}
	
	.customer-service::before {
		width: 120px;
		height: 120px;
		top: -25px;
	}
}

/* 改进的复制成功提示 */
.copy-success-toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
	color: white;
	padding: 16px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	z-index: 100001;
	box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
	animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes toastSlideIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -40%) scale(0.8);
	}
	50% {
		transform: translate(-50%, -52%) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

/* 移动端偏好设置优化 */
@media (max-width: 768px) {
	.user-preferences {
		margin-top: 15px;
		padding: 15px 20px;
		background: #f8f9fa;
		border-radius: 10px;
	}
	
	.preference-item {
		font-size: 13px;
		padding: 5px 0;
	}
	
	.checkmark {
		width: 16px;
		height: 16px;
		margin-right: 8px;
	}
	
	.preference-item input[type="checkbox"]:checked + .checkmark::after {
		font-size: 11px;
	}
}

/* 页面加载动画和额外美化效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-main {
	animation: fadeInUp 0.8s ease-out;
}

.hero-main:nth-child(2) {
	animation-delay: 0.2s;
}

.hero-main:nth-child(3) {
	animation-delay: 0.4s;
}

.hero-main:nth-child(4) {
	animation-delay: 0.6s;
}

/* 平滑滚动效果 */
html {
	scroll-behavior: smooth;
}

/* 全局点击优化 - 精准解决跳跃问题 */
body {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-webkit-focus-ring-color: rgba(0,0,0,0);
	outline: none;
}

/* 关键交互元素优化 */
.hero-main .column > div,
.hero-main .button-group .button,
.mobile-screenshots img,
.cs-button,
.nav-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: box-shadow, opacity;
}

/* 现代化的滚动条样式 */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* 现代化的选中效果 */
::selection {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
	color: #333;
}

/* 增强的导航条效果 */
.professional-nav {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0;
	transition: all 0.3s ease;
}

.professional-nav.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* 导航条滚动效果 */
@media (min-width: 769px) {
	.professional-nav {
		height: 85px;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
	
	.professional-nav.scrolled {
		height: 75px;
	}
	
	.nav-container {
		transition: all 0.3s ease;
	}
	
	.professional-nav.scrolled .nav-container {
		padding: 10px 20px;
	}
	
	.nav-logo {
		transition: all 0.3s ease;
	}
	
	.professional-nav.scrolled .nav-logo {
		font-size: 22px;
	}
	
	.nav-item {
		transition: all 0.3s ease;
	}
	
	.professional-nav.scrolled .nav-item {
		padding: 6px 14px;
	}
}

/* 增强的按钮涟漪效果 */
.hero-main .button-group .button {
	position: relative;
	overflow: hidden;
}

.hero-main .button-group .button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main .button-group .button:active::after {
	width: 300px;
	height: 300px;
	opacity: 0;
	transition: 0s;
}

/* 现代化的卡片悬浮状态 */
.hero-main .column > div {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main .column > div::before {
	transition: all 0.4s ease;
}

.hero-main .column > div:hover::before {
	opacity: 0.8;
}

/* 现代化的文字渐变效果 */
.hero-main .column > div .body1 {
	background: linear-gradient(135deg, currentColor 0%, color-mix(in srgb, currentColor 80%, black 20%) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* 移动端适配 - 统一优化 */
@media (max-width: 768px) {
	/* Bulma框架移动端修复 */
	.hero-main .columns {
		flex-direction: column;
		gap: 20px;
	}
	
	.hero-main .column {
		width: 100% !important;
		margin-bottom: 20px;
	}
	
	.hero-main .column.is-two-fifths {
		width: 100% !important;
		order: 2;
	}
	
	.hero-main .column:not(.is-two-fifths) {
		width: 100% !important;
		order: 1;
	}
	
	/* 主内容区域优化 */
	.hero-main .column > div {
		padding: 20px;
		margin: 8px;
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.98) !important;
	}
	
	.hero-main .column > div .platform-title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
		text-align: center;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		text-rendering: optimizeLegibility;
		-webkit-text-fill-color: unset;
		background: none !important;
		-webkit-background-clip: unset;
		background-clip: unset;
		color: inherit !important;
	}
	
	/* 移动端修复transform跳跃问题 */
	.hero-main .column > div {
		transition: box-shadow 0.3s ease !important;
		transform: none !important;
	}
	
	.hero-main .column > div:hover {
		transform: none !important;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
	}
	
	.hero-main .column > div:active {
		transform: none !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
	}
	
	/* 移动端按钮修复 */
	.hero-main .button-group .button {
		transition: all 0.2s ease !important;
		transform: none !important;
	}
	
	.hero-main .button-group .button:hover {
		transform: translateY(-2px) !important;
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
	}
	
	.hero-main .button-group .button:active {
		transform: translateY(0) !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
	}
	
	.hero-main .button-group .button .button-icon {
		transition: all 0.2s ease !important;
		transform: none !important;
	}
	
	.hero-main .button-group .button:hover .button-icon {
		transform: none !important;
	}
	
	.hero-main .column > div .body1 {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 1.5rem;
		text-align: center;
	}
	
	/* 按钮组优化 */
	.hero-main .button-group {
		gap: 12px;
		margin-top: 1.5rem;
		flex-direction: column;
	}
	
	.hero-main .button-group .button {
		padding: 14px 20px;
		font-size: 14px;
		min-width: 100%;
		border-radius: 12px;
		margin-bottom: 0;
		margin-right: 0;
	}
	
	.button-white, .button-green, .button-teal, .button-blue {
		margin-bottom: 8px;
		margin-right: 0;
		padding: 12px 16px;
		font-size: 14px;
		transition: all 0.2s ease;
		width: 100%;
		justify-content: center;
	}
	
	.button-white:active, .button-green:active, .button-teal:active, .button-blue:active {
		transform: scale(0.98);
	}
	
	/* 截图区域优化 - 强制覆盖ultramarine.css */
	.mobile-screenshots {
		flex-direction: column !important;
		gap: 15px;
		padding: 10px;
		margin-top: 15px;
		align-items: center;
		justify-content: center;
		position: relative !important;
	}
	
	.mobile-screenshots img {
		max-width: 180px !important;
		width: 180px !important;
		height: auto;
		border-radius: 16px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
		transition: transform 0.3s ease;
		margin-left: 0 !important;
		margin-top: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: none !important;
	}
	
	.mobile-screenshots img.screenshot1 {
		transform: rotate(-2deg) scale(0.95) !important;
	}
	
	.mobile-screenshots img.screenshot2 {
		transform: rotate(2deg) scale(0.95) !important;
	}
	
	.mobile-screenshots:active img.screenshot1,
	.mobile-screenshots:active img.screenshot2 {
		transform: rotate(0deg) scale(1) !important;
	}
	
	/* 导航优化 */
	.professional-nav {
		padding: 0;
		height: auto;
		position: relative !important;
	}
	
	.nav-container {
		padding: 12px 15px;
		height: auto;
		flex-direction: column;
	}
	
	.nav-logo {
		font-size: 18px;
		margin-right: 0;
		margin-bottom: 12px;
		text-align: center;
	}
	
	.nav-items {
		gap: 8px;
		width: 100%;
		justify-content: space-around;
		flex-wrap: wrap;
	}
	
	.nav-item {
		padding: 10px;
		min-width: 70px;
		border-radius: 10px;
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		user-select: none;
		outline: none;
	}
	
	.nav-item:active {
		transition: none !important;
		transform: scale(0.98) !important;
	}
	
	/* 移动端通用触摸优化 */
	* {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		-webkit-touch-callout: none;
		-webkit-focus-ring-color: rgba(0, 0, 0, 0);
		outline: none;
	}
	
	.nav-icon {
		font-size: 16px;
		margin-bottom: 2px;
	}
	
	.nav-text {
		font-size: 10px;
	}
	
	/* 旧的导航样式兼容 */
	.platform-nav {
		flex-direction: column;
		align-items: center;
		padding: 10px 0;
	}
	
	.platform-nav span {
		margin: 5px 10px !important;
		font-size: 12px !important;
		line-height: 1.2;
		text-align: center;
	}
	
	.platform-nav span br {
		display: block;
		margin: 2px 0;
	}
	
	/* 客服按钮优化 - 移动端适配 */
	.customer-service {
		right: 20px;
		bottom: 90px;
	}

	.cs-button {
		width: 60px;
		height: 60px;
	}

	.cs-button .cs-icon {
		font-size: 22px;
		margin-bottom: 2px;
	}

	.cs-button span {
		font-size: 10px;
		letter-spacing: 0.3px;
	}
}



/* 改进的加载动画 */
.cs-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-left: 10px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* 改进的模态框遮罩 */
.cs-modal::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cs-modal.show::before {
	opacity: 1;
}
