﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: #1a1a2e;
    color: #eee;
    line-height: 1.6;
}

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

header {
    background: #16213e;
    padding: 20px 0;
    border-bottom: 3px solid #e94560;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #e94560;
    font-size: 1.8rem;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #eee;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

nav a:hover {
    background: #e94560;
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
}

.servers, .server-list, .guide, .download, .contact {
    padding: 40px 0;
}

.servers h3, .page-title h2 {
    font-size: 1.8rem;
    color: #e94560;
    margin-bottom: 30px;
    text-align: center;
}

.server-list table {
    width: 100%;
    border-collapse: collapse;
    background: #16213e;
}

.server-list th, .server-list td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.server-list th {
    background: #0f3460;
    color: #e94560;
}

.server-list td {
    color: #ccc;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn:hover {
    background: #c73e54;
}

.download-item {
    background: #16213e;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}

.download-item h3 {
    color: #e94560;
    margin-bottom: 10px;
}

.download-item p {
    color: #aaa;
    margin-bottom: 15px;
}

.download-item .btn {
    margin: 0 10px;
}

article {
    background: #16213e;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
}

article h3 {
    color: #e94560;
    margin-bottom: 15px;
}

article p {
    color: #aaa;
    margin-bottom: 10px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ccc;
}

footer {
    background: #16213e;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
}

footer p {
    color: #777;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .server-list table {
        font-size: 0.9rem;
    }
}