* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Microsoft YaHei', sans-serif;
	background: #0a0c12;
	color: #e0e4f0;
	line-height: 1.5;
}
a { text-decoration: none; color: #f3b33d; transition: 0.2s; }
a:hover { color: #ffcc66; text-shadow: 0 0 3px rgba(243,179,61,0.5); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

header {
	background: linear-gradient(135deg, #0f111a 0%, #171c2a 100%);
	border-bottom: 2px solid #f3b33d;
	padding: 15px 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 15px;
}
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo {
	font-size: 2.2rem; font-weight: bold;
	background: linear-gradient(135deg, #f3b33d, #e78a2e);
	-webkit-background-clip: text; background-clip: text; color: transparent;
	text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.site-name { font-size: 1.6rem; font-weight: bold; letter-spacing: 2px; }
.site-name small { font-size: 0.8rem; color: #f3b33d; display: block; font-weight: normal; }

nav ul { display: flex; list-style: none; gap: 28px; }
nav ul li a { font-size: 1.1rem; font-weight: 600; padding: 8px 0; border-bottom: 2px solid transparent; }
nav ul li a.active, nav ul li a:hover { border-bottom-color: #f3b33d; color: #ffda88; }

.main { padding: 40px 0; }

.card {
	background: #141824; border-radius: 20px; padding: 25px; margin-bottom: 30px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3); border: 1px solid #2a2f3f;
}
.card-title {
	font-size: 1.7rem; border-left: 5px solid #f3b33d; padding-left: 18px;
	margin-bottom: 20px; font-weight: bold;
}

.btn-gold {
	display: inline-block; background: linear-gradient(95deg, #f3b33d, #e07c1f);
	color: #0a0c12; font-weight: bold; padding: 10px 24px; border-radius: 40px;
	transition: 0.2s; border: none; cursor: pointer; font-size: 1rem;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(243,179,61,0.4); color: #0a0c12; }

table { width: 100%; border-collapse: collapse; background: #0f111a; border-radius: 16px; overflow: hidden; }
th, td { padding: 14px 10px; text-align: left; border-bottom: 1px solid #252b3a; }
th { background: #1e2538; color: #f3b33d; font-weight: bold; }
tr:hover { background: #1a1f2c; }

.server-list { display: flex; flex-direction: column; gap: 12px; }
.server-item {
	background: #1b202e; border-radius: 14px; padding: 15px 20px;
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
	transition: 0.2s;
}
.server-item:hover { background: #262e42; }
.server-name { font-size: 1.2rem; font-weight: bold; }
.server-time { color: #8cffb0; font-family: monospace; }
.badge { background: #e07c1f; padding: 4px 10px; border-radius: 40px; font-size: 0.75rem; font-weight: bold; }
.badge-xinkai { background: #d64545; }
.badge-huobao { background: #e0a82c; color: #0a0c12; }
.badge-wending { background: #3aa66a; }
.badge-renqi { background: #4a90d9; }

.hotcard-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.hotcard {
	background: #1b202e;
	border-radius: 14px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: 0.2s;
}
.hotcard:hover { background: #262e42; transform: translateY(-2px); }
.hotcard-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.hotcard-name { font-size: 1.25rem; font-weight: 800; color: #ffda88; letter-spacing: 0.5px; }
.hotcard-type { color: #9aa3bd; font-size: 0.85rem; }
.hotcard-time { color: #8cffb0; font-family: monospace; font-size: 0.85rem; }
.hotcard-intro { color: #9aa3bd; font-size: 0.85rem; flex-grow: 1; }
.hotcard-stats { display: flex; gap: 16px; font-size: 0.85rem; color: #f3b33d; }
.hotcard-btn { align-self: flex-start; margin-top: 4px; padding: 5px 16px; font-size: 0.8rem; border-radius: 30px; }

.help-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.help-list li { color: #c8cee0; font-size: 0.95rem; line-height: 1.6; }
.help-online { margin-top: 14px; color: #8cffb0; font-size: 0.9rem; }

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

footer {
	background: #0c0f16; padding: 30px 0; text-align: center;
	border-top: 1px solid #232838; margin-top: 30px;
}

.rank-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item { background: #1b202e; border-radius: 12px; padding: 12px 20px; display: flex; align-items: center; gap: 20px; }
.rank-number { font-size: 1.8rem; font-weight: bold; width: 55px; color: #f3b33d; }

.download-box { background: #0f111a; border-radius: 24px; padding: 20px; text-align: center; transition: all 0.2s; }

.article-content { padding: 10px 0; line-height: 1.8; }
.article-content img { max-width: 100%; border-radius: 12px; }
.article-meta { color: #8a93ad; font-size: 0.9rem; margin-bottom: 18px; }

@media (max-width: 768px) {
	.header-inner { flex-direction: column; text-align: center; }
	nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
	.server-item { flex-direction: column; align-items: flex-start; gap: 10px; }
}
