* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 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;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffcc00;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d35400;
            margin-bottom: 20px;
            font-size: 2.5rem;
            text-align: center;
        }
        h2 {
            color: #e67e22;
            margin: 30px 0 15px;
            font-size: 1.8rem;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 8px;
        }
        h3 {
            color: #d35400;
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: 0.3s;
            text-align: center;
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding: 8px 0;
            border-bottom: 1px dashed #ddd;
        }
        .review-box {
            background-color: #fff3cd;
            border-left: 4px solid #fd7e14;
            padding: 15px;
            margin: 15px 0;
            border-radius: 4px;
        }
        .reviewer {
            font-style: italic;
            color: #856404;
            margin-top: 8px;
        }
        .攻略-section {
            background-color: #e8f4f8;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .活动-item {
            margin: 20px 0;
            padding: 15px;
            background-color: #fef3c7;
            border-radius: 6px;
        }
        .footer {
            background-color: #34495e;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 20px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #ffcc00;
        }
        .type-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .type-list a, .tag-list a {
            color: white;
            text-decoration: none;
            background-color: #2c3e50;
            padding: 5px 12px;
            border-radius: 20px;
            transition: 0.3s;
        }
        .type-list a:hover, .tag-list a:hover {
            background-color: #e67e22;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #2c3e50;
            border-radius: 8px;
            text-align: center;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #7f8c8d;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e67e22;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
