* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", "SimHei", sans-serif;
}
body {
    background: #0c0c0c url('https://www.xn--dpq60wiqlghs.com/images/cqsf.jpg') no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
}
.header {
    background: linear-gradient(to bottom, #2d0800, #1a0500);
    border-bottom: 3px solid #ff8a00;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 20px rgba(255, 138, 0, 0.5);
}
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 60px;
    margin-right: 15px;
}
.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px #ff8a00;
}
.nav-menu {
    display: flex;
    list-style: none;
}
.nav-menu li {
    margin: 0 8px;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.nav-menu a.active,.nav-menu a:hover {
    background: #ff8a00;
    color: #000;
    box-shadow: 0 0 10px #ff8a00;
}
.top-banner {
    width:90%;
    max-width:1200px;
    margin:20px auto;
    background:rgba(0,0,0,0.85);
    border:2px solid #ff8a00;
    border-radius:10px;
    padding:25px;
    box-shadow:0 0 20px #ff7c0040;
}
.search-section {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff8a00;
    box-shadow: 0 0 15px rgba(255, 138, 0, 0.4);
}
.search-title {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}
.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    color: #ff8a00;
    margin-bottom: 5px;
    font-size: 16px;
}
.form-group select, .form-group input {
    padding: 10px;
    border: 2px solid #ff8a00;
    background: #1a1a1a;
    color: #fff;
    border-radius: 5px;
    min-width: 180px;
    font-size: 16px;
}
.search-btn {
    padding: 10px 30px;
    background: linear-gradient(to bottom, #ff8a00, #e07b00);
    border: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-btn:hover {
    background: linear-gradient(to bottom, #ffd700, #ff8a00);
    box-shadow: 0 0 10px #ffd700;
    transform: scale(1.05);
}
.content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}
.sidebar {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 2px solid #ff8a00;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 138, 0, 0.3);
}
.sidebar-title {
    font-size: 20px;
    color: #ffd700;
    padding-bottom: 10px;
    border-bottom: 1px solid #ff8a00;
    margin-bottom: 15px;
}
.category-list {
    list-style: none;
}
.category-list li {
    margin: 10px 0;
}
.category-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 10px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor:pointer;
}
.category-list a:hover, .category-list a.active {
    background: #ff8a00;
    color: #000;
    box-shadow: 0 0 8px #ff8a00;
}
.game-list {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 2px solid #ff8a00;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 138, 0, 0.3);
}
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ff8a00;
}
.game-header h2 {
    color: #ffd700;
    font-size: 22px;
}
.sort-options {
    display: flex;
    gap: 10px;
}
.sort-options button {
    padding: 5px 15px;
    background: #1a1a1a;
    border: 1px solid #ff8a00;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.sort-options button.active {
    background: #ff8a00;
    color: #000;
}
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.game-card {
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #ff8a00;
    overflow: hidden;
    transition: all 0.3s ease;
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.4);
}
.game-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 2px solid #ff8a00;
}
.game-info {
    padding: 15px;
}
.game-name {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: bold;
}
.game-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.game-btns {
    display: flex;
    gap: 10px;
}
.play-btn, .detail-btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor:pointer;
}
.play-btn {
    background: linear-gradient(to bottom, #ff8a00, #e07b00);
    color: #000;
}
.play-btn:hover {
    background: linear-gradient(to bottom, #ffd700, #ff8a00);
    box-shadow: 0 0 8px #ffd700;
}
.detail-btn {
    background: #333;
    color: #fff;
    border: 1px solid #ff8a00;
}
.detail-btn:hover {
    background: #444;
    box-shadow: 0 0 8px #ff8a00;
}
.server-table-section {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff8a00;
    box-shadow: 0 0 15px rgba(255, 138, 0, 0.4);
}
.server-table-title {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}
.server-table {
    width: 100%;
    border-collapse: collapse;
}
.server-table th, .server-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ff8a00;
}
.server-table th {
    background: #2d0800;
    color: #ffd700;
    font-size: 16px;
}
.server-table td {
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
}
.server-table tr:hover td {
    background: #2a2a2a;
}
.rank-section {
    width:90%;
    max-width:1200px;
    margin:40px auto;
    background:rgba(0,0,0,0.8);
    border:2px solid #ff8a00;
    border-radius:10px;
    padding:22px;
}
.seo-content {
    margin-top:30px;
    padding:20px;
    background:#121218;
    border:1px solid #ff8a0060;
    border-radius:8px;
    color:#dcdcdc;
    line-height:1.8;
}
.footer {
    background: linear-gradient(to top, #2d0800, #1a0500);
    border-top: 3px solid #ff8a00;
    padding: 30px 0;
    margin-top: 50px;
}
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-text {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #ff8a00;
    text-decoration: none;
    font-size: 14px;
}
.copyright {
    color: #999;
    font-size: 12px;
}
.tag-group {
    margin-top:20px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}
.tag {
    background:#ff8a00;
    color:#000;
    padding:6px 12px;
    border-radius:4px;
    font-size:14px;
}
.version-item{display:none;}
.version-item.active{display:grid;}

@media (max-width: 992px) {
    .content {
        grid-template-columns: 1fr;
    }
    .game-cards {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }
}