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

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.8;
    min-height: 100vh;
}

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

.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #1a1a2e 100%);
    color: #ffd700;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 50px rgba(0,0,0,0.5);
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
}

.header p {
    font-size: 18px;
    color: #aaa;
    position: relative;
    z-index: 1;
}

#sertitle {
    display: flex;
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    color: #ffd700;
    font-weight: bold;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 20px rgba(255,215,0,0.1);
    border: 1px solid #444;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

#sertitle dd,
#sertitle dt {
    flex: 1;
    text-align: center;
    padding: 5px;
}

.nowopen {
    display: flex;
    padding: 18px;
    border-bottom: 1px solid #333;
    background: linear-gradient(135deg, #1e1e2f 0%, #252538 100%);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    border: 1px solid #333;
}

.nowopen:hover {
    background: linear-gradient(135deg, #2a2a40 0%, #323250 100%);
    box-shadow: 0 6px 20px rgba(255,215,0,0.2), 0 0 30px rgba(255,215,0,0.1);
    transform: translateY(-3px);
    border-color: #555;
}

.nowopen dd,
.nowopen dt {
    flex: 1;
    text-align: center;
    padding: 5px;
    color: #ccc;
}

.nowopen a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nowopen a:hover {
    color: #ffec8b;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.mc {
    font-weight: bold;
    color: #ffd700;
}

.footer {
    margin-top: 30px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    color: #888;
    border-radius: 15px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ffec8b;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.social-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.social-links p {
    margin-bottom: 10px;
    color: #ccc;
}

.social-links a {
    margin: 0 10px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 15px #ffd700;
}

/* 页面加载优化 */
img {
    max-width: 100%;
    height: auto;
}

/* 响应式设计优化 */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }
    
    .header h1 {
        font-size: 32px;
    }
    
    .game-list-container {
        overflow-x: auto;
    }
    
    .guide-links {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-subgrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 24px;
    }
    
    .header p {
        font-size: 14px;
    }
    
    .footer {
        padding: 15px;
    }
    
    .footer p {
        font-size: 12px;
    }
    
    .social-links a {
        margin: 0 5px;
        font-size: 12px;
    }
}

/* 面包屑导航样式 */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffec8b;
    text-shadow: 0 0 10px #ffd700;
}

.info-section {
    background: linear-gradient(135deg, #1e1e2f 0%, #252538 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 1px solid #333;
}

.info-section h2 {
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-size: 24px;
}

.info-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #aaa;
}

.info-section a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.info-section a:hover {
    color: #ffec8b;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.info-section li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.info-section li:last-child {
    border-bottom: none;
}

.game-info-section {
    background: linear-gradient(135deg, #1e1e2f 0%, #252538 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 1px solid #333;
}

.game-info-section h2 {
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-size: 28px;
    margin-bottom: 25px;
}

.game-info-section h3 {
    color: #ffd700;
    margin: 20px 0 15px 0;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.game-info-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #ccc;
    text-align: justify;
}

.game-info-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.game-info-section li {
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.game-info-section strong {
    color: #ffd700;
    font-weight: bold;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    background: linear-gradient(135deg, #252538 0%, #1e1e2f 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.2);
    border-color: #555;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.info-subgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-subitem {
    background: linear-gradient(135deg, #2a2a40 0%, #202038 100%);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.info-subitem:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.15);
    border-color: #666;
}

.info-subitem h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.info-subitem p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
}

.game-list-container {
    background: linear-gradient(135deg, #1e1e2f 0%, #252538 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), 0 0 20px rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.game-list-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffec8b, #ffd700, #ffec8b);
    background-size: 400% 400%;
    border-radius: 15px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
    opacity: 0.3;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.game-list-content {
    padding: 0 20px 20px;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-subgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-subgrid {
        grid-template-columns: 1fr;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.guide-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.guide-category {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.guide-category:hover {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.guide-category h3 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.guide-category ul {
    list-style: none;
    padding: 0;
}

.guide-category li {
    margin-bottom: 10px;
}

.guide-category a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.guide-category a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 20px;
}

@media (max-width: 1200px) {
    .guide-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .guide-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .guide-links {
        grid-template-columns: 1fr;
    }
}