* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background: linear-gradient(135deg, #1a1f36, #2a3048);
	color: #e2e8f0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 120px;
	overflow-x: hidden;
}

.container {
	max-width: 768px;
	width: 100%;
	padding: 20px;
}

header {
	text-align: center;
	margin: 30px 0 0;
}

h1 {
	font-size: 2.8rem;
	margin-bottom: 10px;
	background: linear-gradient(90deg, #ff6b6b, #ffa502);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
	letter-spacing: 1px;
}

.subtitle {
	font-size: 1rem;
	color: #94a3b8;
	max-width: 100%;
	margin: 15px auto 0;
	background: rgba(255, 165, 2, 0.1);
	padding: 12px 30px;
	border-radius: 50px;
	display: inline-block;
	letter-spacing: 1px;
}

.subtitle span {
	color: white;
	margin: 0 8px;
}

/* 图片展示区样式 */
.gallery-section {
	margin-bottom: 20px;
	position: relative;
}

.gallery-header {
	margin-bottom: 25px;
	text-align: center;
	position: relative;
}

.gallery-title {
	font-size: 1.8rem;
	color: #f8fafc;
	margin-bottom: 5px;
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}

.gallery-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ffa502);
	border-radius: 2px;
}

.gallery-row-container {
	overflow: hidden;
	position: relative;
	height: 150px;
	background: rgba(30, 41, 59, 0.3);
	border-radius: 12px;
	padding: 10px 0;
	margin-bottom: 10px;
}

.gallery-row {
	display: flex;
	position: absolute;
	top: 10px;
	gap: 15px;
}

.gallery-item {
	flex: 0 0 auto;
	width: 140px;
	height: 140px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 20px -5px rgba(255, 107, 107, 0.4);
	border-color: rgba(255, 107, 107, 0.4);
	z-index: 10;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

/* 功能图标区样式 */
.features-section {
	margin-bottom: 60px;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 40px;
	color: #f8fafc;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #ffa502);
	margin: 10px auto 0;
	border-radius: 2px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin: 0 auto;
}

.feature-item {
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	padding: 25px 15px;
	border-radius: 20px;
	background: rgba(30, 41, 59, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
}

.feature-item:hover {
	background: rgba(255, 107, 107, 0.15);
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
	border-color: rgba(255, 107, 107, 0.3);
}

.feature-icon {
	font-size: 3.2rem;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ff6b6b, #ffa502);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
	transform: scale(1.2);
}

.feature-title {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: #e2e8f0;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.feature-desc {
	font-size: 0.95rem;
	color: #94a3b8;
	line-height: 1.6;
	padding: 0 10px;
}

/* 按钮区域样式 */
.cta-section {
	position: fixed;
	bottom: 25px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 100;
	padding: 0 20px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 25px;
	max-width: 768px;
	margin: 0 auto;
}

.cta-btn {
	padding: 20px 45px;
	font-size: 1.3rem;
	font-weight: 700;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 260px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	letter-spacing: 1px;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
	}
}

.cta-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.3) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.cta-btn:hover::after {
	transform: translateX(100%);
}

.cta-btn:hover {
	transform: translateY(-5px) scale(1.05);
}

.btn-logo {
	background: linear-gradient(90deg, #ff6b6b, #ff9e2c);
	color: white;
}

.btn-poster {
	background: linear-gradient(90deg, #2d87ff, #6a5af9);
	color: white;
	animation-delay: 0.5s;
}

.cta-btn i {
	font-size: 1.6rem;
}
.desc{
	font-size: 13px;
	text-align: left;
	line-height: 1.5em;
	padding:10px 0;
}
.desc p{
	margin-bottom: 10px;
}
/* 图片模态框样式 */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.95);
	overflow: auto;
	justify-content: center;
	align-items: center;
}

.modal-content {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	animation: zoom 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.logo-first{
	width: 500px;
	margin-right: 30px;
	border: 1px solid  #ffa502;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
}
.logo-code{
	width: 300px;
}
.logo-code span{
	display: flex;
	justify-content: center;
	display: block;
	padding: 20px 0;
	text-align: center;
	font-size: 30px;
}
@keyframes zoom {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.modal img {
	width: 100%;
	height: auto;
	display: block;
}

.close-btn {
	position: absolute;
	top: 25px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.close-btn:hover {
	color: #ff6b6b;
	transform: rotate(90deg);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.container {
		padding: 15px;
	}

	h1 {
		font-size: 2.3rem;
	}

	.subtitle {
		font-size: 1.2rem;
		padding: 10px 20px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.cta-btn {
		min-width: 100%;
		padding: 18px 30px;
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.9rem;
	}

	.subtitle {
		font-size: 1rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item {
		width: 90px;
		height: 90px;
	}

	.cta-btn {
		padding: 16px 25px;
		font-size: 1.1rem;
	}
}
/*
 * CSS for the Popup Modal
 */

/* The modal overlay, which covers the whole screen */
.popup-overlay {
	position: fixed; /* Use fixed to cover the viewport */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
	display: none; /* Hidden by default */
	justify-content: center;
	align-items: center;
	z-index: 1001; /* Make sure it's on top of other content */
}

/* The actual popup box */
.popup-content {
	position: absolute; /* We will position this with JavaScript */
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* The image inside the popup */
#popupImage {
	display: block;
	width: 200px;
	height: 200px;
	border-radius: 4px; /* Optional: adds slightly rounded corners to the image */
}

/* The close button (X) */
.popup-close-btn {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 28px;
	height: 28px;
	background: #ffffff;
	border: 1px solid #ccc;
	border-radius: 50%;
	text-align: center;
	line-height: 26px;
	font-size: 20px;
	font-weight: bold;
	color: #555;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.popup-close-btn:hover {
	background-color: #f0f0f0;
	color: #000;
}
.subtitle1{
	font-size: 15px;
}