* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8e1;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #ff4081;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffeb3b;
        }
        .mobile-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: #d32f2f;
            text-align: center;
            margin: 30px 0;
            font-size: 2.5rem;
        }
        h2 {
            color: #c2185b;
            margin: 30px 0 15px;
            font-size: 2rem;
            border-left: 4px solid #c2185b;
            padding-left: 10px;
        }
        h3 {
            color: #e91e63;
            margin: 25px 0 10px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 10px 5px;
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
            text-align: center;
        }
        .btn-download {
            background-color: #2196f3;
        }
        .btn-login {
            background-color: #ff9800;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
        }
        .review {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            border-left: 3px solid #ffeb3b;
        }
        .reviewer {
            font-weight: bold;
            color: #795548;
        }
        .攻略-section, .events-section, .community-section {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .footer {
            background-color: #333;
            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;
            color: #ffeb3b;
        }
        .game-types a, .tags a {
            color: #fff;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 5px;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffeb3b;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #ff4081;
                padding: 20px;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
