* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0d0f1a, #14182b, #0d0f1a);
    color: #e0d6c8;
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}
/* 导航 */
nav {
    background: linear-gradient(90deg, #0a0d14, #121726, #0a0d14);
    border-bottom: 2px solid #d4873a;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,135,58,0.15);
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.nav-links a {
    color: #e8b84b;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #c96b2e;
    background: linear-gradient(135deg, #14182b, #0d0f1a);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.9rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.nav-links a:hover {
    background: linear-gradient(135deg, #e8b84b, #d4873a);
    color: #0d0f1a;
    box-shadow: 0 4px 16px rgba(232, 184, 75, 0.5);
    border-color: #e8b84b;
}
/* H1 */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #e8b84b;
    padding: 40px 20px 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 0 24px rgba(212, 135, 58, 0.25), 1px 1px 0 #000;
    letter-spacing: 2px;
}
/* 通用卡片 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.card {
    background: linear-gradient(145deg, #14182b, #0d0f1a);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #c96b2e, #e8b84b, #c96b2e) 1;
    padding: 20px;
    image-rendering: pixelated;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 0 0 1px rgba(232, 184, 75, 0.08);
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.6), 0 0 0 2px rgba(232, 184, 75, 0.2);
}
.card img {
    width: 100%;
    height: auto;
    border: 1px solid #c96b2e;
    margin-bottom: 12px;
    border-radius: 6px;
}
.card h3 {
    color: #e8b84b;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.card p {
    font-size: 0.95rem;
    color: #c8beb0;
}
/* 板块标题 */
.section-title {
    font-size: 1.8rem;
    color: #e8b84b;
    border-left: 6px solid #d4873a;
    padding-left: 15px;
    margin: 40px 0 20px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
/* FAQ */
.faq-item {
    background: linear-gradient(135deg, #0f1320, #0a0d14);
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, #c96b2e, #e8b84b) 1;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.faq-item h4 {
    color: #e8b84b;
    cursor: pointer;
}
.faq-item p {
    margin-top: 10px;
    color: #c8beb0;
}
/* 新闻 */
.news-card {
    background: linear-gradient(145deg, #14182b, #0d0f1a);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #c96b2e, #e8b84b, #c96b2e) 1;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.news-card .date {
    color: #9a9080;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.news-card h3 {
    color: #e8b84b;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
/* 页脚 */
footer {
    background: linear-gradient(90deg, #0a0d14, #121726, #0a0d14);
    border-top: 3px solid #d4873a;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
}
footer a {
    color: #e8b84b;
    text-decoration: none;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
footer a:hover {
    color: #d4873a;
    text-shadow: 0 0 10px rgba(212, 135, 58, 0.5);
}
footer .friend-links {
    margin: 20px 0;
}
footer .friend-links a {
    margin: 0 8px;
}
/* 数据统计 */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.stat-item {
    background: linear-gradient(145deg, #14182b, #0d0f1a);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #c96b2e, #e8b84b) 1;
    padding: 20px 30px;
    text-align: center;
    min-width: 160px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.stat-item .num {
    font-size: 2.2rem;
    color: #e8b84b;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
/* 合作伙伴logo占位 */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.partner-logos span {
    background: linear-gradient(135deg, #0f1320, #0a0d14);
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, #c96b2e, #e8b84b) 1;
    padding: 10px 18px;
    color: #e8b84b;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
/* 响应式 */
@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    .nav-links { gap: 10px; }
}