* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #e67e22;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
        }
        .nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #d35400;
            margin: 30px 0;
            font-size: 2.5rem;
            text-align: center;
        }
        h2 {
            color: #e67e22;
            margin: 25px 0 15px;
            font-size: 2rem;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 5px;
        }
        h3 {
            color: #f39c12;
            margin: 20px 0 10px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 0;
            transition: background 0.3s;
        }
        .btn:hover {
            background-color: #219653;
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 20px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .game-stats {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fef5e7;
            border-radius: 6px;
        }
        .stat-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #d35400;
        }
        .攻略-section, .events-section, .community-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .faq-item {
            margin: 15px 0;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        .faq-question {
            font-weight: bold;
            color: #e67e22;
            cursor: pointer;
        }
        .footer {
            background-color: #34495e;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 20px 0;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .game-types a, .tags a {
            color: #ecf0f1;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 5px;
        }
        .game-types a:hover, .tags a:hover {
            text-decoration: underline;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
                margin-top: 15px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
