* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", sans-serif;
}
body {
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}
header {
    background: linear-gradient(90deg, #8b0000, #b22222);
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 999;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}
nav a:hover {
    color: #ffd700;
    transform: scale(1.1);
}
.banner {
    height: 300px;
    background: url(https://via.placeholder.com/1920x300/2c1810/ffffff?text=变态传奇私服-全新开服火爆开启) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.banner-text h1 {
    font-size: 32px;
    color: #ff4500;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 10px;
}
.banner-text p {
    font-size: 18px;
    max-width: 800px;
}
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}
.section {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.section-title {
    font-size: 24px;
    color: #ffd700;
    border-left: 5px solid #ff4500;
    padding-left: 15px;
    margin-bottom: 20px;
}
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.job-card {
    background: #3a3a3a;
    border-radius: 8px;
    padding: 20px;
    transition: 0.3s;
}
.job-card:hover {
    transform: translateY(-5px);
    background: #444;
}
.job-card h3 {
    color: #ff6347;
    margin-bottom: 10px;
    font-size: 20px;
}
.guide-list {
    line-height: 2;
}
.guide-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}
.guide-list li::before {
    content: "★";
    color: #ffd700;
    position: absolute;
    left: 0;
}
.func-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}
.func-tag {
    background: #ff4500;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}
.server-item {
    padding: 15px;
    border-bottom: 1px dashed #555;
}
.server-item:last-child {
    border-bottom: none;
}
.server-item h4 {
    color: #32cd32;
    margin-bottom: 5px;
}
footer {
    background: #111;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    color: #999;
}
@media (max-width: 768px) {
    .banner {
        height: 200px;
    }
    .banner-text h1 {
        font-size: 24px;
    }
    nav ul {
        gap: 15px;
    }
}