* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: #0a1014;
    color: #d4c8a8;
    min-height: 100vh;
    background-image: radial-gradient(ellipse at top, #1a1030 0%, #0a1014 60%);
}
.top-bar {
    background: #0d0d1f;
    border-bottom: 2px solid #c8963e;
    padding: 6px 0;
    font-size: 12px;
    color: #887d6a;
    text-align: center;
}
.top-bar span {
    color: #e8b84b;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.header {
    background: linear-gradient(180deg, #1a1040 0%, #120d28 100%);
    border-bottom: 3px solid #c8963e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #c8963e 0%, #e8b84b 40%, #8b5e2f 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #1a0a00;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
    border: 2px solid #f0d080;
    box-shadow: 0 0 20px rgba(200,150,62,0.5);
    letter-spacing: 0;
}
.site-name {
    font-size: 24px;
    font-weight: bold;
    color: #f0d080;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(240,208,128,0.4);
}
.site-name small {
    display: block;
    font-size: 11px;
    color: #a09070;
    letter-spacing: 1px;
    font-weight: normal;
}
.nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.nav a {
    color: #c8b898;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}
.nav a:hover, .nav a.active {
    background: rgba(200,150,62,0.2);
    color: #f0d080;
    box-shadow: inset 0 0 15px rgba(200,150,62,0.15);
}
.nav a.active {
    border-bottom: 2px solid #c8963e;
}
.nav a .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e8453c;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}
.hero-banner {
    background: linear-gradient(135deg, #1a1040 0%, #251545 50%, #1a1040 100%);
    border: 2px solid #3a2850;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200,150,62,0.08) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-banner h1 {
    font-size: 30px;
    color: #f0d080;
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.hero-banner .subtitle {
    color: #b09870;
    position: relative;
    z-index: 1;
    font-size: 14px;
}
.quick-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.stat-card {
    background: #120d28;
    border: 1px solid #2a2040;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    flex: 1;
    min-width: 140px;
    transition: all 0.3s;
    cursor: pointer;
}
.stat-card:hover {
    border-color: #c8963e;
    box-shadow: 0 0 20px rgba(200,150,62,0.2);
    transform: translateY(-2px);
}
.stat-card .num {
    font-size: 32px;
    font-weight: bold;
    color: #e8b84b;
}
.stat-card .label {
    font-size: 12px;
    color: #887d6a;
    margin-top: 4px;
}
.section-title {
    font-size: 20px;
    color: #f0d080;
    border-left: 4px solid #c8963e;
    padding-left: 14px;
    margin: 24px 0 16px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title .icon-fire {
    display: inline-block;
    animation: flicker 0.8s infinite alternate;
}
@keyframes flicker {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.server-card {
    background: #120d28;
    border: 1px solid #2a2040;
    border-radius: 10px;
    padding: 18px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.server-card:hover {
    border-color: #c8963e;
    box-shadow: 0 6px 25px rgba(200,150,62,0.2);
    transform: translateY(-3px);
}
.server-card .tag-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e8453c;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    animation: blink 1.2s infinite;
    letter-spacing: 1px;
}
.server-card .tag-hot {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e8b84b;
    color: #1a0a00;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}
.server-card .srv-name {
    font-size: 18px;
    font-weight: bold;
    color: #f0d080;
    margin-bottom: 8px;
}
.server-card .srv-info {
    font-size: 13px;
    color: #a09070;
    line-height: 1.8;
}
.server-card .srv-info span {
    color: #d4c8a8;
    font-weight: bold;
}
.server-card .srv-desc {
    font-size: 12px;
    color: #887d6a;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #1a1540;
}
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
}
.btn-gold {
    background: linear-gradient(135deg, #c8963e, #e8b84b);
    color: #1a0a00;
    box-shadow: 0 4px 15px rgba(200,150,62,0.4);
}
.btn-gold:hover {
    box-shadow: 0 6px 25px rgba(200,150,62,0.6);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid #c8963e;
    color: #e8b84b;
}
.btn-outline:hover {
    background: rgba(200,150,62,0.15);
}
.news-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.news-list li {
    padding: 10px 14px;
    background: #120d28;
    border-radius: 6px;
    border: 1px solid #1a1540;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.news-list li:hover {
    border-color: #c8963e;
    color: #f0d080;
}
.news-list li .news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8b84b;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
.footer {
    background: #0d0d1f;
    border-top: 2px solid #2a2040;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #6a5f4f;
    margin-top: 30px;
    letter-spacing: 1px;
}
.footer a {
    color: #a09070;
    text-decoration: none;
}
.footer a:hover {
    color: #e8b84b;
}
@media (max-width: 768px) {
    .header { flex-direction: column; gap: 10px; }
    .nav { justify-content: center; }
    .nav a { padding: 8px 12px; font-size: 13px; }
    .hero-banner h1 { font-size: 22px; }
    .server-grid { grid-template-columns: 1fr; }
    .quick-stats { flex-direction: row; flex-wrap: wrap; }
    .stat-card { min-width: 100px; flex: 1 1 40%; }
}