/*
 * WW高端海外内部 - 自定义样式
 */

/* 全局样式 - 超科幻风格（平衡版） */
body {
	font-family: 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
	color: #4dd0e1;
	background-color: #0a0f1f;
	background-image: 
		linear-gradient(rgba(77, 208, 225, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(77, 208, 225, 0.02) 1px, transparent 1px),
		radial-gradient(circle at 20% 50%, rgba(77, 208, 225, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(77, 208, 225, 0.03) 0%, transparent 70%);
	background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%, 100% 100%;
	background-attachment: fixed;
	position: relative;
	overflow-x: hidden;
	animation: hologram 3s ease-in-out infinite;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(77, 208, 225, 0.02) 2px,
			rgba(77, 208, 225, 0.02) 4px
		);
	pointer-events: none;
	z-index: 1;
	animation: scanline 8s linear infinite;
}

@keyframes scanline {
	0% { transform: translateY(0); }
	100% { transform: translateY(100px); }
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.section {
	padding: 50px 0;
}

.section-title {
	font-size: 42px;
	margin-bottom: 20px;
	color: #4dd0e1;
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 5px;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.8),
		0 0 15px rgba(77, 208, 225, 0.6),
		0 0 25px rgba(77, 208, 225, 0.4),
		0 0 35px rgba(38, 198, 218, 0.3);
	animation: titleGlow 2s ease-in-out infinite alternate;
	position: relative;
}

@keyframes titleGlow {
	0% {
		text-shadow: 
			0 0 8px rgba(77, 208, 225, 0.8),
			0 0 15px rgba(77, 208, 225, 0.6),
			0 0 25px rgba(77, 208, 225, 0.4),
			0 0 35px rgba(38, 198, 218, 0.3);
	}
	100% {
		text-shadow: 
			0 0 15px rgba(77, 208, 225, 1),
			0 0 25px rgba(77, 208, 225, 0.8),
			0 0 35px rgba(77, 208, 225, 0.6),
			0 0 45px rgba(38, 198, 218, 0.5);
	}
}

.section-subtitle {
	font-size: 18px;
	margin-bottom: 35px;
	color: #66d9ef;
	font-family: 'Exo 2', sans-serif;
	letter-spacing: 3px;
	text-shadow: 0 0 8px rgba(102, 217, 239, 0.6);
}

/* 手机访问提示 - 全新设计 */
.mobile-warning {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #0a0f1f;
	z-index: 10000;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.mobile-warning-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(77, 208, 225, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
		linear-gradient(rgba(77, 208, 225, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(77, 208, 225, 0.03) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
	animation: gridMove 25s linear infinite;
	opacity: 0.6;
}

@keyframes gridMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

.mobile-warning-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.warning-header {
	text-align: center;
	margin-bottom: 30px;
}

.warning-icon-wrapper {
	display: inline-block;
	margin-bottom: 18px;
	padding: 18px;
	background: linear-gradient(135deg, rgba(77, 208, 225, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
	border: 2px solid rgba(77, 208, 225, 0.3);
	border-radius: 18px;
	box-shadow: 
		0 0 30px rgba(77, 208, 225, 0.3),
		inset 0 0 20px rgba(77, 208, 225, 0.05);
}

.warning-icon-wrapper .fa-desktop {
	font-size: 44px;
	color: #4dd0e1;
	filter: drop-shadow(0 0 15px rgba(77, 208, 225, 0.8));
	display: block;
}

.warning-header h1 {
	color: #4dd0e1;
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: 26px;
	margin: 0;
	text-shadow: 
		0 0 15px rgba(77, 208, 225, 0.8),
		0 0 30px rgba(77, 208, 225, 0.6);
	letter-spacing: 2px;
	line-height: 1.4;
}

.warning-body {
	background: linear-gradient(135deg, rgba(10, 15, 31, 0.95) 0%, rgba(15, 20, 40, 0.95) 100%);
	border: 2px solid rgba(77, 208, 225, 0.4);
	border-radius: 20px;
	padding: 28px 24px;
	box-shadow: 
		0 0 40px rgba(77, 208, 225, 0.3),
		inset 0 0 40px rgba(77, 208, 225, 0.05);
	backdrop-filter: blur(10px);
	margin-bottom: 18px;
}

.warning-body .main-text {
	color: #a8d8ea;
	font-family: 'Exo 2', sans-serif;
	font-size: 15px;
	margin: 0 0 24px 0;
	line-height: 1.7;
	text-align: center;
	padding: 0;
}

/* 域名高亮块 - 全新设计 */
.domain-highlight {
	margin: 0;
}

.domain-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 14px;
	color: #66d9ef;
	font-family: 'Exo 2', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

.domain-label .fa-link {
	color: #4dd0e1;
	font-size: 13px;
}

.domain-box {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 18px;
	background: linear-gradient(135deg, rgba(77, 208, 225, 0.12) 0%, rgba(138, 43, 226, 0.12) 100%);
	border: 2px solid rgba(77, 208, 225, 0.5);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	margin-bottom: 14px;
	transition: all 0.3s ease;
	min-height: 56px;
}

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

.domain-box:active::before {
	left: 100%;
}

.domain-text {
	font-family: 'Orbitron', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #4dd0e1;
	text-shadow: 
		0 0 10px rgba(77, 208, 225, 0.6),
		0 0 20px rgba(77, 208, 225, 0.4);
	letter-spacing: 1.5px;
	user-select: all;
	text-align: center;
	word-break: break-all;
	line-height: 1.4;
}

.copy-btn {
	background: rgba(77, 208, 225, 0.25);
	border: 1px solid rgba(77, 208, 225, 0.6);
	border-radius: 8px;
	padding: 10px 16px;
	color: #4dd0e1;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: 'Exo 2', sans-serif;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}

.copy-btn:active {
	background: rgba(77, 208, 225, 0.4);
	transform: scale(0.95);
}

.copy-btn .fa-copy,
.copy-btn .fa-check {
	font-size: 14px;
}

.copy-text {
	font-size: 14px;
}

.domain-tip {
	color: #66d9ef;
	font-family: 'Exo 2', sans-serif;
	font-size: 13px;
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	line-height: 1.6;
	font-weight: 600;
}

.domain-tip .fa-hand-pointer-o {
	color: #4dd0e1;
	font-size: 15px;
	filter: drop-shadow(0 0 8px rgba(77, 208, 225, 0.6));
	flex-shrink: 0;
}

.domain-tip-secondary {
	color: #8ab4c1;
	font-family: 'Exo 2', sans-serif;
	font-size: 12px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	line-height: 1.6;
	text-align: center;
}

.domain-tip-secondary .fa-lightbulb-o {
	color: #ffd700;
	font-size: 14px;
	filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.warning-footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 18px;
	background: linear-gradient(135deg, rgba(10, 15, 31, 0.8) 0%, rgba(15, 20, 40, 0.8) 100%);
	border: 1px solid rgba(77, 208, 225, 0.2);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.info-item:hover {
	border-color: rgba(77, 208, 225, 0.4);
	background: linear-gradient(135deg, rgba(10, 15, 31, 0.9) 0%, rgba(15, 20, 40, 0.9) 100%);
}

.info-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.info-icon .fa-check-circle {
	color: #4ade80;
	font-size: 22px;
	filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.6));
}

.info-icon .fa-times-circle {
	color: #f87171;
	font-size: 22px;
	filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.6));
}

.info-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.info-text strong {
	color: #4dd0e1;
	font-family: 'Orbitron', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

.info-text span {
	color: #a8d8ea;
	font-family: 'Exo 2', sans-serif;
	font-size: 12px;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.mobile-warning {
		display: flex !important;
	}
	
	body.with-circular-nav {
		overflow: hidden;
	}
	
	.sidebar-nav,
	.main-content {
		display: none !important;
	}
	
	.mobile-warning-content {
		max-width: 95%;
		padding: 0 15px;
	}
	
	.warning-header {
		margin-bottom: 24px;
	}
	
	.warning-icon-wrapper {
		padding: 16px;
		margin-bottom: 16px;
	}
	
	.warning-icon-wrapper .fa-desktop {
		font-size: 38px;
	}
	
	.warning-header h1 {
		font-size: 22px;
		letter-spacing: 1.5px;
		line-height: 1.3;
	}
	
	.warning-body {
		padding: 24px 20px;
		margin-bottom: 16px;
	}
	
	.warning-body .main-text {
		font-size: 14px;
		margin-bottom: 20px;
		line-height: 1.6;
	}
	
	.domain-label {
		font-size: 12px;
		margin-bottom: 12px;
		letter-spacing: 1px;
	}
	
	.domain-box {
		padding: 14px 16px;
		margin-bottom: 12px;
		min-height: 52px;
	}
	
	.domain-text {
		font-size: 17px;
		letter-spacing: 1.2px;
		line-height: 1.3;
	}
	
	.domain-tip {
		font-size: 12px;
		margin-bottom: 8px;
		line-height: 1.5;
	}
	
	.domain-tip .fa-hand-pointer-o {
		font-size: 14px;
	}
	
	.domain-tip-secondary {
		font-size: 11px;
		line-height: 1.5;
	}
	
	.warning-footer {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.info-item {
		padding: 15px 18px;
		gap: 12px;
	}
	
	.info-icon {
		width: 36px;
		height: 36px;
	}
	
	.info-icon .fa-check-circle,
	.info-icon .fa-times-circle {
		font-size: 20px;
	}
	
	.info-text strong {
		font-size: 14px;
	}
	
	.info-text span {
		font-size: 12px;
	}
}

body.mobile-detected .sidebar-nav,
body.mobile-detected .main-content {
	display: none !important;
}

/* 左侧标题导航 */
body.with-circular-nav {
	padding-left: 9.5%;
	overflow: hidden;
}

.sidebar-nav {
	position: fixed;
	left: 0;
	top: 0;
	width: 9.5%;
	height: 100vh;
	background: transparent;
	border: none;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overflow-x: hidden;
}

.sidebar-nav::-webkit-scrollbar {
	width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
	background: rgba(10, 15, 31, 0.5);
}

.sidebar-nav::-webkit-scrollbar-thumb {
	background: rgba(77, 208, 225, 0.3);
	border-radius: 2px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
	background: rgba(77, 208, 225, 0.5);
}

.nav-items {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nav-item {
	margin: 0;
	padding: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link {
	display: block;
	padding: 16px 25px;
	color: #66d9ef;
	text-decoration: none !important;
	-webkit-text-decoration: none !important;
	-moz-text-decoration: none !important;
	transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            border-left-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Orbitron', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.5px;
	position: relative;
	cursor: pointer;
	text-transform: uppercase;
	background: transparent;
	border: none;
	border-left: 2px solid transparent;
	margin: 4px 0;
	overflow: visible;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
}

/* 取消选中文本时的下划线 */
.nav-link::selection {
	background: rgba(77, 208, 225, 0.2);
	text-decoration: none !important;
	-webkit-text-decoration: none !important;
}

.nav-link::-moz-selection {
	background: rgba(77, 208, 225, 0.2);
	text-decoration: none !important;
	-moz-text-decoration: none !important;
}

.nav-link::-webkit-selection {
	background: rgba(77, 208, 225, 0.2);
	text-decoration: none !important;
	-webkit-text-decoration: none !important;
}

/* 确保所有状态下都没有下划线 */
.nav-link,
.nav-link:hover,
.nav-link:active,
.nav-link:visited,
.nav-link:focus {
	text-decoration: none !important;
	-webkit-text-decoration: none !important;
	-moz-text-decoration: none !important;
}

.nav-link:hover {
	color: #4dd0e1;
	background: transparent;
	border-left-color: rgba(77, 208, 225, 0.4);
}

.nav-item.active .nav-link {
	color: #4dd0e1;
	background: transparent;
	border-left-color: #4dd0e1;
	font-weight: 600;
	font-size: 20px;
	transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            border-left-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.external-link .nav-link {
	color: #66d9ef;
	opacity: 0.8;
}

.nav-item.external-link .nav-link:hover {
	opacity: 1;
}

/* 主内容区域 */
.main-content {
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	background: transparent; /* 使用透明背景，显示 body 的背景 */
}

/* 页面内容动画 */
.main-content {
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式调整 */
@media (max-width: 768px) {
	body.with-circular-nav {
		padding-left: 0;
	}
	
	.sidebar-nav {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}
	
	.sidebar-nav.mobile-open {
		transform: translateX(0);
	}
}

/* 首页横幅 - 超科幻风格（平衡版） */
.hero-section {
	background: transparent; /* 使用透明背景，显示 body 的背景 */
	min-height: calc(100vh - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 30px 0 40px;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent; /* 移除背景，显示 body 的背景 */
	pointer-events: none;
}

@keyframes gridMove {
	0% { transform: translateY(0); }
	100% { transform: translateY(50px); }
}

.hero-section::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: 
		radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
		radial-gradient(circle, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
	background-size: 100px 100px, 150px 150px;
	animation: particles 30s linear infinite;
	pointer-events: none;
}

@keyframes particles {
	0% { transform: rotate(0deg) translate(0, 0); }
	100% { transform: rotate(360deg) translate(50px, 50px); }
}

/* 移除重复的 hero-section::before，已在上方处理 */

.hero-section .container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.hero-title {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 10px;
	font-family: 'Orbitron', sans-serif;
	text-transform: uppercase;
	letter-spacing: 5px;
	background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 50%, #7b68ee 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	animation: titlePulse 3s ease-in-out infinite;
	filter: drop-shadow(0 0 20px rgba(77, 208, 225, 0.6));
}


@keyframes titlePulse {
	0%, 100% {
		filter: drop-shadow(0 0 20px rgba(77, 208, 225, 0.6)) drop-shadow(0 0 40px rgba(38, 198, 218, 0.4));
		transform: scale(1);
	}
	50% {
		filter: drop-shadow(0 0 30px rgba(77, 208, 225, 0.8)) drop-shadow(0 0 60px rgba(38, 198, 218, 0.6));
		transform: scale(1.02);
	}
}

.hero-subtitle {
	font-size: 20px;
	margin-bottom: 20px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	letter-spacing: 3px;
	color: #66d9ef;
	text-transform: uppercase;
	text-shadow: 
		0 0 8px rgba(102, 217, 239, 0.6),
		0 0 15px rgba(102, 217, 239, 0.4);
	animation: subtitleGlow 2s ease-in-out infinite alternate;
}

/* 首页图片展示网格 */
.home-images-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 18px;
	margin-top: 0;
	max-width: calc(100vw - 9.5% - 60px);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.image-slot {
	position: relative;
	width: 100%;
	aspect-ratio: 1280 / 700;
	background: transparent;
	border: none;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.image-slot:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(77, 208, 225, 0.4);
}

.image-slot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.image-slot:hover img {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.image-slot:hover .image-overlay {
	opacity: 1;
}

.image-overlay i {
	font-size: 48px;
	color: #4dd0e1;
	text-shadow: 0 0 20px rgba(77, 208, 225, 0.8);
}

.image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(102, 217, 239, 0.5);
}

.image-placeholder i {
	font-size: 48px;
	margin-bottom: 15px;
	color: rgba(77, 208, 225, 0.4);
}

.image-placeholder p {
	font-family: 'Exo 2', sans-serif;
	font-size: 14px;
	color: rgba(102, 217, 239, 0.6);
	margin: 0;
}

/* 图片放大查看模态框 */
.image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

.image-modal.active {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.image-modal-content {
	position: relative;
	max-width: 95%;
	max-height: 95%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.image-modal-content img {
	max-width: 100%;
	max-height: 95vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 0 50px rgba(77, 208, 225, 0.5);
}

.image-modal-close {
	position: absolute;
	top: -50px;
	right: 0;
	color: #4dd0e1;
	font-size: 48px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	text-shadow: 0 0 20px rgba(77, 208, 225, 0.8);
	line-height: 1;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 15, 31, 0.8);
	border-radius: 50%;
	border: 2px solid rgba(77, 208, 225, 0.5);
}

.image-modal-close:hover {
	color: #66d9ef;
	transform: rotate(90deg);
	box-shadow: 0 0 30px rgba(77, 208, 225, 0.8);
}

@keyframes subtitleGlow {
	0% {
		text-shadow: 
			0 0 8px rgba(102, 217, 239, 0.6),
			0 0 15px rgba(102, 217, 239, 0.4);
	}
	100% {
		text-shadow: 
			0 0 15px rgba(102, 217, 239, 0.8),
			0 0 25px rgba(102, 217, 239, 0.6),
			0 0 35px rgba(38, 198, 218, 0.4);
	}
}

.stability-counter {
	background: 
		linear-gradient(135deg, rgba(10, 15, 31, 0.9) 0%, rgba(15, 20, 40, 0.9) 100%);
	padding: 50px 40px;
	border-radius: 15px;
	backdrop-filter: blur(20px);
	margin-top: 40px;
	border: 2px solid rgba(77, 208, 225, 0.4);
	box-shadow: 
		0 0 30px rgba(77, 208, 225, 0.3),
		inset 0 0 30px rgba(77, 208, 225, 0.08),
		0 0 60px rgba(38, 198, 218, 0.15);
	position: relative;
	overflow: hidden;
}

.stability-counter::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(77, 208, 225, 0.15), transparent);
	animation: rotate 8s linear infinite;
}

.stability-counter::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid rgba(77, 208, 225, 0.25);
	border-radius: 15px;
	box-shadow: 
		inset 0 0 20px rgba(77, 208, 225, 0.15),
		0 0 20px rgba(77, 208, 225, 0.08);
	pointer-events: none;
}

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

.counter-title {
	font-size: 32px;
	margin-bottom: 40px;
	color: #4dd0e1;
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 5px;
	position: relative;
	z-index: 1;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.8),
		0 0 15px rgba(77, 208, 225, 0.6),
		0 0 25px rgba(38, 198, 218, 0.4);
	animation: counterTitleGlow 2s ease-in-out infinite alternate;
}

@keyframes counterTitleGlow {
	0% {
		text-shadow: 
			0 0 8px rgba(77, 208, 225, 0.8),
			0 0 15px rgba(77, 208, 225, 0.6),
			0 0 25px rgba(38, 198, 218, 0.4);
	}
	100% {
		text-shadow: 
			0 0 15px rgba(77, 208, 225, 1),
			0 0 25px rgba(77, 208, 225, 0.8),
			0 0 35px rgba(77, 208, 225, 0.6),
			0 0 45px rgba(38, 198, 218, 0.5);
	}
}

.counter-display {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin: 40px 0;
	position: relative;
	z-index: 1;
}

.counter-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: 
		linear-gradient(135deg, rgba(10, 15, 31, 0.8) 0%, rgba(15, 20, 40, 0.8) 100%);
	padding: 20px 25px;
	border-radius: 10px;
	border: 2px solid rgba(77, 208, 225, 0.5);
	box-shadow: 
		0 0 25px rgba(77, 208, 225, 0.4),
		inset 0 0 25px rgba(77, 208, 225, 0.08),
		0 0 50px rgba(38, 198, 218, 0.25);
	min-width: 100px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.counter-item::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #4dd0e1, #26c6da, #7b68ee, #4dd0e1);
	background-size: 400% 400%;
	border-radius: 10px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
	animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.counter-item:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 
		0 0 40px rgba(77, 208, 225, 0.6),
		inset 0 0 40px rgba(77, 208, 225, 0.15),
		0 0 80px rgba(38, 198, 218, 0.4);
	border-color: rgba(77, 208, 225, 0.8);
}

.counter-item:hover::before {
	opacity: 0.4;
}

.counter-number {
	font-size: 64px;
	font-weight: 900;
	color: #4dd0e1;
	font-family: 'Orbitron', sans-serif;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.8),
		0 0 15px rgba(77, 208, 225, 0.6),
		0 0 25px rgba(77, 208, 225, 0.4),
		0 0 35px rgba(38, 198, 218, 0.3),
		0 0 55px rgba(38, 198, 218, 0.2);
	line-height: 1;
	margin-bottom: 10px;
	letter-spacing: 4px;
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 15px rgba(77, 208, 225, 0.6));
}

.counter-number.pulse {
	animation: pulse 0.3s ease;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		text-shadow: 
			0 0 8px rgba(77, 208, 225, 0.8),
			0 0 15px rgba(77, 208, 225, 0.6),
			0 0 25px rgba(77, 208, 225, 0.4),
			0 0 35px rgba(38, 198, 218, 0.3);
		filter: drop-shadow(0 0 15px rgba(77, 208, 225, 0.6));
	}
	50% {
		transform: scale(1.15);
		text-shadow: 
			0 0 20px rgba(77, 208, 225, 1),
			0 0 35px rgba(77, 208, 225, 0.8),
			0 0 50px rgba(77, 208, 225, 0.6),
			0 0 70px rgba(38, 198, 218, 0.5),
			0 0 90px rgba(38, 198, 218, 0.4);
		filter: drop-shadow(0 0 30px rgba(77, 208, 225, 0.8));
	}
}

.counter-label {
	font-size: 16px;
	color: #66d9ef;
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow: 
		0 0 8px rgba(102, 217, 239, 0.6),
		0 0 15px rgba(102, 217, 239, 0.4);
}

.counter-separator {
	font-size: 56px;
	color: #4dd0e1;
	font-weight: 900;
	font-family: 'Orbitron', sans-serif;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.8),
		0 0 15px rgba(77, 208, 225, 0.6),
		0 0 25px rgba(38, 198, 218, 0.4);
	line-height: 1;
	position: relative;
	top: -10px;
	animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}

.stability-text {
	font-size: 18px;
	margin-top: 30px;
	color: #66d9ef;
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	letter-spacing: 4px;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
	text-shadow: 
		0 0 8px rgba(102, 217, 239, 0.6),
		0 0 15px rgba(102, 217, 239, 0.4);
}

/* 系统支持部分 */
.systems-section {
	background: transparent; /* 使用透明背景，显示 body 的背景 */
	position: relative;
}

.systems-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top: 1px solid rgba(0, 255, 255, 0.2);
	border-bottom: 1px solid rgba(0, 255, 255, 0.2);
	pointer-events: none;
}

.system-item {
	margin-bottom: 0;
	display: flex;
}

.system-item .system-box {
	width: 100%;
}

.system-box {
	background: 
		linear-gradient(135deg, rgba(10, 15, 31, 0.9) 0%, rgba(15, 20, 40, 0.9) 100%);
	border: 2px solid rgba(77, 208, 225, 0.25);
	padding: 35px 20px;
	border-radius: 10px;
	box-shadow: 
		0 5px 20px rgba(0, 0, 0, 0.4),
		0 0 25px rgba(77, 208, 225, 0.15),
		inset 0 0 25px rgba(77, 208, 225, 0.04);
	transition: all 0.3s ease;
	height: 100%;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

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

.system-box:hover::before {
	left: 100%;
}

.system-box:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 60px rgba(0, 255, 255, 0.5),
		inset 0 0 60px rgba(0, 255, 255, 0.1),
		0 0 100px rgba(0, 128, 255, 0.3);
	border-color: rgba(0, 255, 255, 0.8);
}

/* 处理器显示框 */
.processor-display-box {
	width: 75px;
	height: 75px;
	margin: 0 auto 22px;
	background: linear-gradient(135deg, rgba(10, 15, 31, 0.95) 0%, rgba(15, 20, 40, 0.95) 100%);
	border: 2px solid rgba(77, 208, 225, 0.3);
	border-radius: 8px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 0 15px rgba(77, 208, 225, 0.2);
	box-sizing: border-box;
}

.processor-display-box.intel-box {
	border-color: rgba(102, 217, 239, 0.4);
	box-shadow: 0 0 15px rgba(102, 217, 239, 0.2);
}

.processor-display-box.amd-box {
	border-color: rgba(102, 217, 239, 0.4);
	box-shadow: 0 0 15px rgba(102, 217, 239, 0.2);
}

.processor-display-box .processor-name {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	text-align: center;
}

.processor-display-box .processor-brand {
	display: block;
	font-size: 16px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 4px;
}

.processor-display-box .processor-model {
	display: block;
	font-size: 20px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	letter-spacing: 1px;
}

.processor-display-box.intel-box .processor-brand,
.processor-display-box.intel-box .processor-model {
	color: #66d9ef;
	text-shadow: 0 0 8px rgba(102, 217, 239, 0.6);
}

.processor-display-box.amd-box .processor-brand,
.processor-display-box.amd-box .processor-model {
	color: #66d9ef;
	text-shadow: 0 0 8px rgba(102, 217, 239, 0.6);
}

.system-box:hover .processor-display-box {
	border-color: rgba(77, 208, 225, 0.6);
	box-shadow: 0 0 25px rgba(77, 208, 225, 0.4);
	transform: translateY(-3px);
}

.system-box:hover .processor-display-box.intel-box {
	border-color: rgba(102, 217, 239, 0.6);
	box-shadow: 0 0 25px rgba(102, 217, 239, 0.4);
}

.system-box:hover .processor-display-box.amd-box {
	border-color: rgba(102, 217, 239, 0.6);
	box-shadow: 0 0 25px rgba(102, 217, 239, 0.4);
}

/* 统一的图标容器 */
.system-icon-wrapper {
	width: 75px;
	height: 75px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.system-icon-wrapper i {
	color: #66d9ef;
	font-size: 44px;
	filter: drop-shadow(0 0 8px rgba(102, 217, 239, 0.6));
	transition: all 0.3s ease;
	line-height: 1;
}

.system-box:hover .system-icon-wrapper i {
	filter: drop-shadow(0 0 15px rgba(102, 217, 239, 0.8));
	transform: scale(1.1);
}

/* 不支持标识 - 重新设计 */
.system-icon-wrapper.no-support-wrapper {
	position: relative;
}

.system-icon-wrapper.no-support-wrapper .fa-building {
	color: #66d9ef;
	opacity: 0.4;
	filter: drop-shadow(0 0 8px rgba(102, 217, 239, 0.3));
}

.system-icon-wrapper.no-support-wrapper .no-support-line {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #66d9ef, transparent);
	box-shadow: 0 0 10px rgba(102, 217, 239, 0.8);
	z-index: 2;
}

.system-box:hover .system-icon-wrapper.no-support-wrapper .fa-building {
	opacity: 0.5;
	filter: drop-shadow(0 0 12px rgba(102, 217, 239, 0.5));
}

.system-box:hover .system-icon-wrapper.no-support-wrapper .no-support-line {
	box-shadow: 0 0 15px rgba(102, 217, 239, 1);
	width: 65px;
}

/* 兼容旧的直接使用 i 标签的情况 */
.system-box i {
	color: #4dd0e1;
	margin-bottom: 20px;
	filter: drop-shadow(0 0 8px rgba(77, 208, 225, 0.6));
	transition: all 0.3s ease;
}

.system-box:hover i {
	filter: drop-shadow(0 0 15px rgba(77, 208, 225, 0.8));
	transform: scale(1.1) rotate(5deg);
}

.system-box h3 {
	color: #4dd0e1;
	margin-bottom: 12px;
	font-size: 19px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.6),
		0 0 15px rgba(77, 208, 225, 0.4);
	letter-spacing: 2px;
	line-height: 1.4;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.system-box p {
	color: #66d9ef;
	font-size: 14px;
	font-family: 'Exo 2', sans-serif;
	text-shadow: 0 0 4px rgba(102, 217, 239, 0.4);
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* 处理器标志样式 */
.processor-logo {
	margin-bottom: 20px;
	display: inline-block;
	transition: all 0.3s ease;
}

.processor-logo svg {
	filter: drop-shadow(0 0 8px rgba(77, 208, 225, 0.6));
	transition: all 0.3s ease;
}

.system-box:hover .processor-logo svg {
	filter: drop-shadow(0 0 15px rgba(77, 208, 225, 0.8));
	transform: scale(1.1);
}

.intel-logo svg text {
	font-family: 'Arial', sans-serif;
	font-weight: bold;
}

.amd-logo svg text {
	font-family: 'Arial', sans-serif;
	font-weight: bold;
}

/* 图标带斜杠样式 */

/* 优势部分 - 超科幻风格（平衡版） */
.advantages-section {
	background: transparent; /* 使用透明背景，显示 body 的背景 */
	position: relative;
}

.advantages-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent; /* 移除背景，显示 body 的背景 */
	pointer-events: none;
}

.advantages-section .container {
	position: relative;
	z-index: 2;
}

.advantage-item {
	background: 
		linear-gradient(135deg, rgba(10, 15, 31, 0.8) 0%, rgba(15, 20, 40, 0.8) 100%);
	border: 2px solid rgba(77, 208, 225, 0.25);
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	box-shadow: 
		0 0 20px rgba(77, 208, 225, 0.15),
		inset 0 0 20px rgba(77, 208, 225, 0.04);
	position: relative;
	overflow: hidden;
}

.advantage-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(77, 208, 225, 0.6), transparent);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.advantage-item:hover::before {
	transform: translateX(100%);
}

.advantage-item:hover {
	background: 
		linear-gradient(135deg, rgba(15, 20, 40, 0.9) 0%, rgba(20, 25, 50, 0.9) 100%);
	border-color: rgba(77, 208, 225, 0.6);
	transform: translateY(-5px) scale(1.02);
	box-shadow: 
		0 0 35px rgba(77, 208, 225, 0.4),
		inset 0 0 35px rgba(77, 208, 225, 0.08),
		0 0 70px rgba(38, 198, 218, 0.25);
}

.advantage-item i {
	color: #4dd0e1;
	margin-bottom: 20px;
	filter: drop-shadow(0 0 12px rgba(77, 208, 225, 0.6));
	transition: all 0.3s ease;
}

.advantage-item:hover i {
	filter: drop-shadow(0 0 20px rgba(77, 208, 225, 0.8));
	transform: scale(1.2) rotate(10deg);
}

.advantage-item h3 {
	color: #4dd0e1;
	margin-bottom: 15px;
	font-size: 22px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.6),
		0 0 15px rgba(77, 208, 225, 0.4);
	letter-spacing: 2px;
}

.advantage-item p {
	color: #66d9ef;
	font-size: 16px;
	font-family: 'Exo 2', sans-serif;
	text-shadow: 0 0 4px rgba(102, 217, 239, 0.4);
}

/* 截图展示 */
.screenshots-section {
	background: transparent; /* 使用透明背景，显示 body 的背景 */
}

.screenshot-item {
	position: relative;
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.screenshot-item:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.screenshot-item img {
	width: 100%;
	height: auto;
	display: block;
}

.screenshot-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
	opacity: 1;
}

.screenshot-overlay h4 {
	color: #fff;
	margin: 0;
	font-size: 18px;
}

/* 功能列表表格 */
.features-section {
	background: transparent; /* 使用透明背景，显示 body 的背景 */
	position: relative;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent; /* 移除背景，显示 body 的背景 */
	pointer-events: none;
}

.features-section .container {
	position: relative;
	z-index: 2;
}

.features-table {
	background: 
		linear-gradient(135deg, rgba(10, 15, 31, 0.9) 0%, rgba(15, 20, 40, 0.9) 100%);
	border: 2px solid rgba(77, 208, 225, 0.25);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	box-shadow: 
		0 0 25px rgba(77, 208, 225, 0.25),
		inset 0 0 25px rgba(77, 208, 225, 0.04);
	overflow: hidden;
}

.features-table td {
	padding: 20px;
	color: #66d9ef;
	border-bottom: 1px solid rgba(77, 208, 225, 0.15);
	font-size: 16px;
	font-family: 'Exo 2', sans-serif;
	transition: all 0.3s ease;
	text-shadow: 0 0 4px rgba(102, 217, 239, 0.4);
}

.features-table tr:hover td {
	background: rgba(77, 208, 225, 0.04);
	color: #4dd0e1;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.6),
		0 0 15px rgba(77, 208, 225, 0.4);
}

.features-table tr:last-child td {
	border-bottom: none;
}

.features-table strong {
	color: #4dd0e1;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.6),
		0 0 15px rgba(77, 208, 225, 0.4);
	letter-spacing: 1px;
}

/* 价格部分 */
.pricing-section {
	background: transparent; /* 使用透明背景，显示 body 的背景 */
}

.pricing-box {
	background: 
		linear-gradient(135deg, rgba(0, 0, 17, 0.9) 0%, rgba(0, 0, 34, 0.9) 100%);
	border: 2px solid rgba(0, 255, 255, 0.3);
	border-radius: 10px;
	box-shadow: 
		0 5px 20px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(0, 255, 255, 0.2),
		inset 0 0 30px rgba(0, 255, 255, 0.05);
	padding: 40px 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	position: relative;
	height: 100%;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.pricing-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00ffff, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.pricing-box:hover::before {
	opacity: 1;
}

.pricing-box:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 60px rgba(0, 255, 255, 0.5),
		inset 0 0 60px rgba(0, 255, 255, 0.1),
		0 0 100px rgba(0, 128, 255, 0.3);
	border-color: rgba(0, 255, 255, 0.8);
}

.pricing-box.featured {
	border: 3px solid #55acee;
	transform: scale(1.05);
}

.popular-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background: #55acee;
	color: #fff;
	padding: 5px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
}

.pricing-header {
	text-align: center;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(77, 208, 225, 0.2);
	margin-bottom: 30px;
}

.pricing-header h3 {
	color: #4dd0e1;
	font-size: 24px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.6),
		0 0 15px rgba(77, 208, 225, 0.4);
	letter-spacing: 2px;
}

.price {
	margin: 20px 0;
}

.old-price {
	text-decoration: line-through;
	color: #888;
	font-size: 24px;
	margin-right: 10px;
	font-family: 'Exo 2', sans-serif;
	opacity: 0.7;
}

.new-price {
	color: #4dd0e1;
	font-size: 56px;
	font-weight: 900;
	font-family: 'Orbitron', sans-serif;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.8),
		0 0 15px rgba(77, 208, 225, 0.6),
		0 0 25px rgba(38, 198, 218, 0.4);
	letter-spacing: 2px;
}

.save {
	color: #4caf50;
	font-size: 16px;
	margin-top: 10px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	text-shadow: 
		0 0 8px rgba(76, 175, 80, 0.6),
		0 0 15px rgba(76, 175, 80, 0.4);
	letter-spacing: 1px;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 30px 0;
}

.pricing-features li {
	padding: 15px 0;
	border-bottom: 1px solid rgba(77, 208, 225, 0.15);
	color: #66d9ef;
	font-size: 16px;
	font-family: 'Exo 2', sans-serif;
	text-shadow: 0 0 4px rgba(102, 217, 239, 0.4);
	transition: all 0.3s ease;
}

.pricing-features li:hover {
	color: #4dd0e1;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.6),
		0 0 15px rgba(77, 208, 225, 0.4);
	padding-left: 10px;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li::before {
	content: "\f00c";
	font-family: "FontAwesome";
	color: #4dd0e1;
	margin-right: 10px;
	text-shadow: 
		0 0 8px rgba(77, 208, 225, 0.6),
		0 0 15px rgba(77, 208, 225, 0.4);
	filter: drop-shadow(0 0 4px rgba(77, 208, 225, 0.6));
}

/* 按钮样式 - 超科幻风格（平衡版） */
.btn-primary {
	background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
	border: 2px solid rgba(77, 208, 225, 0.6);
	color: #000;
	padding: 12px 30px;
	font-size: 16px;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	border-radius: 5px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 2px;
	box-shadow: 
		0 0 15px rgba(77, 208, 225, 0.4),
		inset 0 0 15px rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
}

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

.btn-primary:hover {
	background: linear-gradient(135deg, #26c6da 0%, #4dd0e1 100%);
	border-color: rgba(77, 208, 225, 0.8);
	color: #000;
	transform: translateY(-2px);
	box-shadow: 
		0 0 30px rgba(77, 208, 225, 0.6),
		0 0 60px rgba(38, 198, 218, 0.4),
		inset 0 0 25px rgba(255, 255, 255, 0.15);
}

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

.btn-lg {
	padding: 15px 50px;
	font-size: 20px;
}

/* 下载部分 */
.download-section {
	background: transparent; /* 使用透明背景，显示 body 的背景 */
	position: relative;
}

.download-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent; /* 移除背景，显示 body 的背景 */
	pointer-events: none;
}

.download-section .container {
	position: relative;
	z-index: 2;
}

/* 功能详解页面 */
.gnxj-section {
	background: transparent;
	position: relative;
}

.gnxj-section .container {
	position: relative;
	z-index: 2;
}

.feature-detail-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.warning-box {
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
	border: 2px solid rgba(255, 107, 107, 0.4);
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 40px;
	backdrop-filter: blur(10px);
	box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
}

.warning-box h3 {
	color: #ff6b6b;
	font-family: 'Orbitron', sans-serif;
	margin-bottom: 15px;
	font-size: 24px;
	text-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
}

.warning-box p {
	color: #ffaaaa;
	font-family: 'Exo 2', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.warning-box strong {
	color: #fff;
}

.feature-category {
	margin-bottom: 60px;
}

.feature-category h2 {
	font-size: 32px;
	font-family: 'Orbitron', sans-serif;
	color: #4dd0e1;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(77, 208, 225, 0.3);
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

.feature-item {
	background: linear-gradient(135deg, rgba(10, 15, 31, 0.8) 0%, rgba(15, 20, 40, 0.8) 100%);
	border: 2px solid rgba(77, 208, 225, 0.25);
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.feature-item:hover {
	border-color: rgba(77, 208, 225, 0.6);
	box-shadow: 0 0 30px rgba(77, 208, 225, 0.3);
	transform: translateX(10px);
}

.feature-item h3 {
	font-size: 22px;
	font-family: 'Orbitron', sans-serif;
	color: #4dd0e1;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	text-shadow: 0 0 8px rgba(77, 208, 225, 0.5);
}

.feature-item h3::before {
	content: '▶';
	color: #4dd0e1;
	margin-right: 15px;
	font-size: 16px;
	text-shadow: 0 0 10px rgba(77, 208, 225, 0.8);
}

.feature-item p {
	color: #aaa;
	font-family: 'Exo 2', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.feature-item strong {
	color: #fff;
}

/* 立即购买页面 */
.purchase-section {
	background: transparent;
	position: relative;
}

.purchase-section .container {
	position: relative;
	z-index: 2;
}

.payment-methods {
	margin-top: 60px;
}

.payment-methods h2 {
	color: #4dd0e1;
	font-family: 'Orbitron', sans-serif;
	margin-bottom: 30px;
	text-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

.payment-item {
	background: linear-gradient(135deg, rgba(10, 15, 31, 0.8) 0%, rgba(15, 20, 40, 0.8) 100%);
	border: 2px solid rgba(77, 208, 225, 0.25);
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 20px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.payment-item:hover {
	border-color: rgba(77, 208, 225, 0.6);
	box-shadow: 0 0 30px rgba(77, 208, 225, 0.3);
	transform: translateY(-5px);
}

.payment-item i {
	color: #4dd0e1;
	margin-bottom: 15px;
	text-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

.payment-item p {
	color: #66d9ef;
	font-family: 'Exo 2', sans-serif;
	font-size: 16px;
	margin: 0;
}

/* 页脚 */
.footer {
	background-color: #0a0f1f;
	border-top: 2px solid rgba(77, 208, 225, 0.25);
	color: #fff;
	padding: 40px 0;
	text-align: center;
	position: relative;
	box-shadow: 
		0 -5px 20px rgba(77, 208, 225, 0.15),
		inset 0 5px 20px rgba(77, 208, 225, 0.04);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(77, 208, 225, 0.6), transparent);
	box-shadow: 0 0 8px rgba(77, 208, 225, 0.4);
}

.footer p {
	margin: 10px 0;
	color: #66d9ef;
	font-size: 14px;
	font-family: 'Exo 2', sans-serif;
	text-shadow: 0 0 4px rgba(102, 217, 239, 0.4);
	letter-spacing: 1px;
}

/* 响应式设计 */
@media (max-width: 991px) {
	.pricing-box.featured {
		transform: scale(1);
		margin-top: 30px;
		margin-bottom: 30px;
	}
	
	.popular-badge {
		right: 10px;
		font-size: 12px;
		padding: 5px 15px;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 20px;
		margin-bottom: 30px;
	}
	
	.home-images-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 12px;
		padding: 0 10px;
		max-width: 100%;
	}
	
	.hero-section {
		padding: 25px 0 30px;
		min-height: auto;
	}
	
	.hero-title {
		font-size: 36px;
		margin-bottom: 8px;
	}
	
	.hero-subtitle {
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.image-modal-content img {
		max-height: 90vh;
	}
	
	.image-modal-close {
		top: -40px;
		font-size: 36px;
		width: 35px;
		height: 35px;
	}

	.counter-display {
		font-size: 32px;
	}

	.section-title {
		font-size: 32px;
	}
	
	.section {
		padding: 60px 0;
	}
	
	.stability-counter {
		padding: 30px 20px;
	}
	
	.features-table td {
		padding: 15px 10px;
		font-size: 14px;
		display: block;
		border-bottom: none;
	}
	
	.features-table tr {
		display: block;
		margin-bottom: 20px;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 5px;
		padding: 10px;
	}
	
	.features-table tr:last-child {
		margin-bottom: 0;
	}
	
	.features-table td:first-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}
	
	.home-images-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 10px;
		padding: 0 5px;
		max-width: 100%;
	}
	
	.image-placeholder i {
		font-size: 32px;
	}
	
	.image-placeholder p {
		font-size: 12px;
	}
	
	.image-overlay i {
		font-size: 32px;
	}
	
	.image-modal-content img {
		max-height: 85vh;
	}
	
	.image-modal-close {
		top: -35px;
		font-size: 28px;
		width: 30px;
		height: 30px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.counter-display {
		gap: 10px;
	}
	
	.counter-item {
		min-width: 70px;
		padding: 15px 15px;
	}
	
	.counter-number {
		font-size: 36px;
	}
	
	.counter-label {
		font-size: 12px;
	}
	
	.counter-separator {
		font-size: 32px;
		top: -5px;
	}

	.section-title {
		font-size: 28px;
	}
	
	.section-subtitle {
		font-size: 16px;
	}
	
	.stability-counter h2 {
		font-size: 24px;
	}
	
	.stability-text {
		font-size: 16px;
	}
	
	.system-box,
	.advantage-item,
	.pricing-box {
		padding: 30px 20px;
	}
	
	.new-price {
		font-size: 36px;
	}
	
	.old-price {
		font-size: 20px;
	}
}

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

/* 固定头部样式 */
.fixed-header-on .header {
	background-color: rgba(0, 0, 0, 0.98);
	padding: 10px 0;
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* 加载动画 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeInUp 0.6s ease-out;
}

/* 科幻特效 */
@keyframes hologram {
	0%, 100% {
		opacity: 1;
		filter: brightness(1) contrast(1);
	}
	50% {
		opacity: 0.95;
		filter: brightness(1.1) contrast(1.1);
	}
}

@keyframes dataStream {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateY(100vh);
		opacity: 0;
	}
}

/* 添加数据流效果 */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 10%;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, transparent, #00ffff, transparent);
	opacity: 0.3;
	animation: dataStream 10s linear infinite;
	pointer-events: none;
	z-index: 0;
}

/* 按钮悬停效果增强 */
.btn-primary:active {
	transform: translateY(0);
}

/* 表格响应式优化 */
@media (max-width: 768px) {
	.features-table {
		overflow-x: auto;
	}
}

/* 导航栏移动端优化 */
@media (max-width: 767px) {
	.header .navbar-nav {
		background: linear-gradient(180deg, rgba(0, 0, 17, 0.98) 0%, rgba(0, 0, 34, 0.95) 100%);
		border: 1px solid rgba(0, 255, 255, 0.3);
		box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
		margin-top: 10px;
		padding: 10px 0;
	}
	
	.header .navbar-nav > li > a {
		padding: 10px 20px;
	}
}

/* 额外的科幻效果 */
.section {
	position: relative;
	z-index: 2;
}

.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* 增强所有文本的科幻感 */
p, span, li, td {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
