/* ===== RESET ===== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	transition: all 0.3s ease;
}

body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	color: #333;
	line-height: 1.6;
	scroll-behavior: smooth;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.3) 0%, transparent 50%);
	pointer-events: none;
	z-index: -1;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
}

/* ===== LAYOUT ===== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== HEADER ===== */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
	backdrop-filter: blur(25px);
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-area img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.logo-area img:hover {
	transform: scale(1.1);
}

.site-name {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(45deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.desktop-menu {
	margin-left: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	font-size: 16px;
	line-height: 0.8;
}

.desktop-menu a {
	white-space: nowrap;
	padding: 10px 15px;
	border-radius: 25px;
	transition: all 0.3s ease;
}

.desktop-menu span {
	color: #666;
	user-select: none;
}

.desktop-menu a:hover {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.lang-select {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.lang-select select {
	border: none;
	background: none;
	font-size: 14px;
}

.hamburger {
	display: none;
	font-size: 22px;
	cursor: pointer;
}


.nav {
	display: flex;
	justify-content: space-between;
	gap: 1.5%;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
	backdrop-filter: blur(15px);
	border-radius: 0 0 0 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav a {
	flex: 1;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
	padding: 8px 6px;
	border-radius: 12px;
	font-size: 11.5px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-align: center;
	white-space: nowrap;
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	backdrop-filter: blur(12px);
	border: 1.2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.4);
	color: #333;
	letter-spacing: 0.3px;
}

.nav a i {
	font-size: 12px;
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.2);
	border: 1.2px solid rgba(255, 255, 255, 0.4);
	transform: scale(1.05);
}

.active i {
	transform: scale(1.2);
}

.nav a:hover {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.2);
	border: 1.2px solid rgba(255, 255, 255, 0.4);
}

.nav a:hover i {
	transform: scale(1.25) rotate(5deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
	display: block;
}

.mobile-menu {
	position: absolute;
	right: 0;
	top: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
	padding: 30px 20px;
	width: min(350px, 90vw);
	height: 100%;
	overflow-y: auto;
	box-shadow: 
		-10px 0 40px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	border-radius: 25px 0 0 25px;
	animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes slideIn {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

.mobile-menu .close-btn {
	text-align: right;
	margin-bottom: 20px;
}

.mobile-menu .close-btn i {
	font-size: 24px;
	color: #666;
	cursor: pointer;
	transition: color 0.3s ease;
}

.mobile-menu .close-btn i:hover {
	color: #333;
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mobile-menu-links a {
	padding: 15px 20px;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-links a:hover {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: #fff;
	transform: translateX(10px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
	font-size: 22px;
	cursor: pointer;
}

.mobile-menu a {
	display: block;
	padding: 12px 0;
	font-size: 16px;
	border-bottom: 1px solid #eee;
	color: #111827;
	font-weight: 600;
}

h1,
h2 {
	font-size: 30px;
	margin-top: 25px;
	margin-bottom: 12px;
}


/* ===== TOP APPS PODIUM ===== */
.top-apps {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 18px;
	margin: 50px 0 30px 0;
	padding: 32px;
	background: radial-gradient(circle at top, rgba(102, 126, 234, 0.18), rgba(255, 255, 255, 0.08) 45%, rgba(255,255,255,0.02));
	border-radius: 30px;
	backdrop-filter: blur(22px);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.section-heading {
	text-align: center;
	margin-bottom: 18px;
}

.section-heading h1 {
	font-size: 42px;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
	background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 15px 20px rgba(20, 30, 70, 0.12);
	animation: gradientShift 3s ease-in-out infinite;
}

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

.section-heading .section-subtitle {
	max-width: 760px;
	margin: 0 auto;
	color: #555;
	font-size: 16px;
	line-height: 1.75;
	font-weight: 500;
}

.podium {
	position: relative;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
	border-radius: 20px;
	padding: 20px 15px;
	width: 280px;
	text-align: center;
	box-shadow: 
		0 10px 30px rgba(0, 0, 0, 0.1),
		0 1px 8px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.podium.first {
	background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.9));
	border: 1px solid rgba(255, 215, 0, 0.3);
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.podium.second {
	background: linear-gradient(145deg, rgba(192, 192, 192, 0.1), rgba(255, 255, 255, 0.9));
	border: 1px solid rgba(192, 192, 192, 0.3);
	box-shadow: 0 10px 30px rgba(192, 192, 192, 0.2);
}

.podium.third {
	background: linear-gradient(145deg, rgba(205, 127, 50, 0.1), rgba(255, 255, 255, 0.9));
	border: 1px solid rgba(205, 127, 50, 0.3);
	box-shadow: 0 10px 30px rgba(205, 127, 50, 0.2);
}

.podium:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.15),
		0 5px 15px rgba(102, 126, 234, 0.2);
}

.podium.first {
	height: 350px;
}

.podium.second,
.podium.third {
	height: 320px;
}

.badge {
	width: 59px;
	height: 47px;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.gold {
	background-image: url('../../images/top1.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.silver {
	background-image: url('../../images/top2.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bronze {
	background-image: url('../../images/top3.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.podium img {
	width: 120px;
	height: 120px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 22px;
	border: 2px solid rgba(102, 126, 234, 0.18);
	box-shadow: 0 14px 30px rgba(102, 126, 234, 0.12);
}

.rating-bar {
	background: rgba(102, 126, 234, 0.12);
	border-radius: 6px;
	height: 8px;
	overflow: hidden;
	margin: 5px 0;
}

.rating-fill {
	background: linear-gradient(90deg, #ffbf00, #ff4f7d);
	height: 100%;
	transition: width 0.4s ease;
}

.rating-star {
	color: #f5b301;
	font-size: 12px;
}

.download-btn {
	margin-top: 5px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 8px 8px;
	border-radius: 6px;
	display: inline-block;
	border: none;
	transition: all 0.3s ease;
}

.download-btn:hover {
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.download-now {
  margin-top: 6px;
  background: linear-gradient(180deg, #34c759, #28a745);
  color: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.35);
  outline: 1px solid rgba(40, 167, 69, 0.6);
  outline-offset: -2px;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.35);
  transition: all 0.25s ease;
}

.download-now:hover {
  background: linear-gradient(180deg, #3ddc84, #2ecc71);
  box-shadow: 0 6px 14px rgba(40, 167, 69, 0.45);
}

.download-now:active {
  outline-offset: -3px;
  transform: scale(0.96);
}

/* ===== APP LIST ===== */
.app-list,.game-list {
	margin: 30px 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.app-item,.game-item {
	background: #fff;
	border-radius: 10px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	/* 关键 */
	gap: 6px;
}

.app-top,.game-top {
	display: flex;
	align-items: center;
	gap: 12px;
}

.app-item img {
	width: 70px;
	height: 70px;
}

.game-item img {
	width: 112px;
	height: 90px;
}

.app-info,.game-info {
	flex: 1;
}

.app-info h4 {
	font-size: 16px;
}
.game-info h2 {
	font-size: 16px;
	margin: 3px 0;
}
.platforms {
	font-size: 14px;
	color: #05c9ff;
	margin: 3px 0;
}

.game-trending,.game-name {
	font-size: 13px;
	color: #777;
	margin: 0px 0;
}

.app-stats {
	font-size: 13px;
	color: #777;
	margin: 3px 0;
}

.platforms,
.app-stats i {
	margin-left: 5px;
}

.rating {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 13px;
	color: #f5b301;
}

.rating i {
	line-height: 1;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* 描述部分 */
.description-wrapper {
	font-size: 13px;
	color: #333;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 5px;
}

.description {
	max-height: 20px;
	/* 默认显示一行 */
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 20px;
	flex: 1;
	/* 占满剩余空间 */
	transition: max-height 0.3s ease;
}

.toggle-btn {
	background: none;
	border: none;
	color: #007bff;
	font-weight: bold;
	cursor: pointer;
	margin-left: 5px;
	flex-shrink: 0;
	font-size: 14px;
}

.more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px auto;
}

.btn-primary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    box-shadow: 
        0 4px 15px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    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.2), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #667eea;
    border: 2px solid #667eea;
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 28px;
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* faq-section */
.faq-section , .guides-section {
	margin: 10px auto;
	padding: 15px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item , .guides-item {
	border-bottom: 1px solid #f1f1f1;
	margin: 10px 0;
}

.faq-question , .guides-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f7f7f7;
	border: none;
	width: 100%;
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
	color: #333;
	text-align: left;
	border-radius: 5px;
}

.faq-question i , .guides-question i {
	font-size: 18px;
	transition: transform 0.3s ease-in-out;
}

.faq-question.open i , .guides-question.open i {
	transform: rotate(45deg);
	/* Rotates the icon to - when opened */
}

.faq-answer, .guides-answer {
	display: none;
	padding: 10px;
	font-size: 14px;
	color: #555;
	background-color: #b5ffc0;
	border-top: 1px solid #f1f1f1;
	margin-top: 5px;
	border-radius: 5px;
}

.faq-answer p , .guides-anser p {
	margin: 0;
	line-height: 1.6;
}

.faq-answer ul , .guides-answer ul{
	padding-left: 2ch;
	margin: 0;
	line-height: 1.6;
}

.faq-answer.show , .guides-answer.show{
	display: block;
}

/* ===== FOOTER ===== */
footer {
	background: #fff;
	border-top: 1px solid #ddd;
	padding: 20px;
	margin-top: 30px;
	text-align: center;
	font-size: 14px;
	color: #555;
}

footer p {
	margin: 0;
	line-height: 1.3;
}

footer p+p {
	margin-top: 10px;
}

.footer-nav {
	margin-bottom: 8px;
}

.footer-nav a {
	color: #555;
	text-decoration: none;
	margin: 0 4px;
}

.footer-nav a:hover {
	color: #007bff;
}

/* ===== CARDS AND SECTIONS ===== */
.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(102, 126, 234, 0.2);
}

.section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 15px;
    color: #555;
}

/* ===== ACCESSIBILITY ===== */
a:focus, button:focus, input:focus, select:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

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

.section, .card {
    animation: fadeIn 0.6s ease-out;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

	.desktop-menu,
	.nav-bar ul {
		display: none;
	}

	h1,
	h2 {
		font-size: 24px;
	}

	.hamburger {
		display: block;
	}

	.top-bar {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px;
		padding: 10px 0;
	}

	.logo-area {
		flex: 1 1 220px;
		min-width: 180px;
	}

	.logo-area img {
		width: 44px;
		height: 44px;
	}

	.desktop-menu {
		width: 100%;
		justify-content: center;
		gap: 10px;
		padding-top: 12px;
	}

	.lang-select {
		width: 100%;
		justify-content: flex-start;
		margin-top: 10px;
	}

	.lang-select select {
		padding: 8px 10px;
		border: 1px solid #d1d5db;
		border-radius: 999px;
		background: #f8fafc;
	}

	.nav {
		flex-wrap: wrap;
		gap: 10px;
	}

	.nav a {
		flex: 1 1 120px;
		min-width: 120px;
		padding: 10px 8px;
		font-size: 13px;
		border-radius: 12px;
	}

	.top-apps {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-end;
		gap: 10px;
		margin: 70px 0 20px 0;
		padding: 0 10px;
	}

	.podium {
		width: calc(33.333% - 7px);
		min-width: 120px;
		flex: 1;
		padding: 15px 8px;
		border-radius: 15px;
		background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		transition: all 0.3s ease;
	}

	.podium:hover {
		transform: translateY(-5px);
		box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	}

	.podium.first {
		height: 280px;
		order: 2;
	}

	.podium.second {
		height: 250px;
		order: 1;
	}

	.podium.third {
		height: 250px;
		order: 3;
	}

	.app-list {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.app-item {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		padding: 15px;
		border-radius: 15px;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	}

	.app-top {
		display: flex;
		align-items: center;
		margin-bottom: 10px;
	}

	.app-info {
		flex: 1;
		margin-left: 10px;
	}

	.app-info h4 {
		font-size: 16px;
		margin-bottom: 5px;
	}

	.platforms {
		font-size: 12px;
		margin-bottom: 5px;
	}

	.app-stats {
		font-size: 11px;
	}

	.description-wrapper {
		margin-top: 10px;
	}

	.description {
		font-size: 14px;
		line-height: 1.5;
	}

	.more-btn {
		display: flex;
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.more-btn button,
	.more-btn a {
		width: 100%;
		max-width: 200px;
	}

	.faq-section,
	.guides-section {
		padding: 20px 10px;
	}

	.faq-item,
	.guides-item {
		margin: 15px 0;
	}

	.faq-question,
	.guides-question {
		padding: 12px;
		font-size: 16px;
	}

	.faq-answer,
	.guides-answer {
		padding: 12px;
		font-size: 14px;
	}

	.footer {
		padding: 20px 10px;
		text-align: center;
	}

	.footer-nav {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 15px;
	}

	.footer-nav a {
		padding: 8px 0;
	}

	.disclaimer,
	.copyright {
		font-size: 12px;
		line-height: 1.4;
	}
}

@media(max-width:480px) {
	.container {
		padding: 0 10px;
	}

	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 22px;
	}

	.top-bar {
		padding: 8px 0;
	}

	.logo-area {
		min-width: 150px;
	}

	.logo-area img {
		width: 40px;
		height: 40px;
	}

	.site-name {
		font-size: 18px;
	}

	.nav a {
		flex: 1 1 100px;
		min-width: 100px;
		padding: 8px 6px;
		font-size: 12px;
	}

	.podium {
		padding: 15px 12px;
	}

	.podium img {
		width: 60px;
		height: 60px;
	}

	.podium h4 {
		font-size: 16px;
	}

	.top-apps {
		flex-direction: row;
		align-items: flex-end;
		gap: 10px;
		margin: 70px 0 20px 0;
		padding: 0 10px;
	}

	.podium {
		width: calc(33.333% - 7px);
		min-width: 120px;
		flex: 1;
		padding: 15px 8px;
		border-radius: 15px;
		height: 320px;
		background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		transition: all 0.3s ease;
	}

	.podium:hover {
		transform: translateY(-5px);
		box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	}

	.podium.first {
		height: 350px;
		order: 2;
	}

	.podium.second {
		height: 320px;
		order: 1;
	}

	.podium.third {
		height: 320px;
		order: 3;
	}

	.app-item {
		padding: 12px;
	}

	.app-top img {
		width: 50px;
		height: 50px;
	}

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

	.btn-primary {
		padding: 10px 20px;
		font-size: 14px;
	}

	.btn-outline {
		padding: 10px 20px;
		font-size: 14px;
	}

	#backToTop {
		bottom: 15px;
		right: 15px;
		padding: 10px;
		font-size: 14px;
	}
}

	.podium.first {
		height: auto;
	}

	.app-list,
	.game-list {
		grid-template-columns: 1fr;
	}

	.podium img {
		width: 120px;
		height: 120px;
	}

	.site-name {
		font-size: 20px;
	}
}

 .single-app .app-main {
 	display: flex;
 	gap: 32px;
 	align-items: flex-start;
 }

 /*  左侧：大图（66%）*/
 .single-app .app-preview {
 	width: 66%;
 }

 .single-app .app-preview img {
 	width: 100%;
 	height: auto;
 	display: block;
 	object-fit: contain;
 }

 /*右侧：App 信息（33%）*/
 .single-app .app-infos {
 	width: 33%;
 }

 .app-title {
 	font-size: 26px;
 	font-weight: 700;
 	margin-bottom: 5px;
	text-align: center;
	color: #00aaff;
 }
.app-infos-app {
    width: 512px;          
    max-width: 60%;
    margin: 20px auto -20px;
	
}

.app-infos-app img {
    width: 100%;         
    height: auto;
}

 /* App 信息列表（类表格） */
 .single-app .app-meta {
 	list-style: none;
 	padding: 0;
 	margin: 0 0 20px;
 	border: 1px solid #e5e7eb;
 	border-radius: 12px;
 	overflow: hidden;
 	background: #fff;
 }

 .single-app .app-meta li {
 	display: flex;
 	justify-content: space-between;
 	padding: 12px 14px;
 	font-size: 14px;
 	border-bottom: 1px solid #f1f5f9;
 }

 .single-app .app-meta li:last-child {
 	border-bottom: none;
	display: flex;
	justify-content: center;
 }

 .single-app .app-meta .label {
 	color: #64748b;
 	font-weight: 500;
 }

 .single-app .app-meta .value {
	overflow: hidden;
 	font-weight: 500;
 	color: #0f172a;
 }

 /* 下载按钮 */
 .single-app .download-btn {
 	display: inline-flex;
 	align-items: center;
 	gap: 8px;
 	padding: 12px 22px;
 	background: #2563eb;
 	color: #fff;
 	border-radius: 10px;
 	font-weight: 600;
 	text-decoration: none;
 }

 .single-app .download-btn:hover {
 	background: #1e40af;
 }

 /* ===============================
           描述区（第二行）
        =============================== */

.app-description {
 	margin: -15px 20px 0px 20px;
 	font-size: 15px;
 	line-height: 1.7;
 	color: #334155;
 }

.app-description h2 {
 	font-weight: bold;
 	font-size: 18px;
	line-height: 1.0;
 }

 /* ===============================
           移动端：上下结构
        =============================== */
 @media (max-width: 768px) {

 	.app-infos {
 		margin-top: -40px;
 	}

 	.single-app .app-main {
 		flex-direction: column;
 	}

 	.single-app .app-preview,
 	.single-app .app-infos {
 		width: 100%;
 	}

 	.single-app .app-title {
 		font-size: 22px;
 	}
	
 }
 
/* =========其它下载 ==========*/
.others-downloaded {
	margin: 5px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
 
    font-family: Arial, sans-serif;
}

.others-downloaded h2 {
	margin-top: -15px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e3a8a;
}

/* 列表整体 */
.others-list {
    display: flex;
    flex-direction: column;
    gap: 4px; /* 行距缩小 */
}

/* 单条 */
.others-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 3px;                 /* 行距缩小 */
    background: #f8fafc;
    border: 1px dashed #cbd5e1;        /* 虚线边框 */
    border-radius: 12;                  /* 方形 */
}

/* app 名称 */
.others-item .app-name {
    font-weight: 550;
    color: #0f172a;
    flex: 1;
    line-height: 1.2;
}

/* 下载按钮 */
.others-item .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    padding: 4px 5px;
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 12px;                
    line-height: 1;
}
.download-btn i {
  margin-right: 3px;   /* 图标和文字的间距 */
}

.others-item .download-btn:hover {
    background: #1e40af;
}

/* 时间：关键对齐区域 */
.others-item .last-download {
    width: 90px;                
    text-align: right;               
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    font-variant-numeric: tabular-nums; /* 等宽数字 */
}


.site-info {
	margin: 5px auto;
	padding: 10px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	line-height: 1.5;
}
.site-infos  {
    margin: 5px auto;
	padding: 10px;
    line-height: 1.8;
    background-color: #fcfcfc;
    border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 50vh;
}
.site-infos p {
	line-height: 1.6;
    text-indent: 2em;
}
.site-infos p + p {
	line-height: 1.8;
    text-indent: 2em;
}

.site-infos ul {
    padding-left: 2ch; 
    list-style-position: inside; 
}

.site-infos ul li {
    padding-left: 0; 
}

.popular-app * { box-sizing: border-box; }

.title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.popular-title {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #222;
  position: relative;
  padding-left: 10px;
  line-height: 1.5;
  flex: 0 0 auto;
}

.popular-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 16px;
  background: #28a745;
  border-radius: 2px;
}

.claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 2px solid #28a745;
  background-color: transparent;
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}

.claim-btn:hover {
  background-color: #28a745;
  color: #fff;
}

.claim-icon {
  display: inline-block;
  animation: claimPulse 1.2s infinite ease-in-out;
}

@keyframes claimPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.popular-app {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  margin: 20px auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  max-width: 1280px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.popular-app .app-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  text-decoration: none;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: all 0.25s ease;
}

.popular-app .app-item:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #28a745;
  color: #28a745;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.popular-app .app-item:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
  .popular-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .popular-app .app-item {
    font-size: 13px;
    padding: 10px 6px;
  }
}

@media (max-width: 480px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.app-reviews {
    margin: 30px auto;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #ffffff;
    max-width: 1280px;
}
.app-reviews h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
.review-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.rating-score .score {
    font-size: 32px;
    font-weight: bold;
}
.rating-meta {
    font-size: 14px;
    color: #777;
}
.review-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.review-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviewer-name {
    font-weight: 600;
    font-size: 14px;
}
.review-date {
    font-size: 13px;
    color: #777;
}
.review-rating {
    color: #f5a623;
    margin-bottom: 6px;
}
.review-text {
    font-size: 14px;
    line-height: 1.6;
}
.review-more {
    text-align: right;
    margin-top: 6px;
}
.review-more a {
    font-size: 12px;
    color: #888;
    text-decoration: none;
}
.review-more a:hover {
    color: #007bff;
    text-decoration: underline;
}
