* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff6b6b, #ffda79);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        nav ul li a:hover {
            color: #4ecdc4;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            color: #d32f2f;
            margin: 30px 0;
            font-size: 2.5rem;
            text-align: center;
        }
        h2 {
            color: #c62828;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-left: 5px solid #ffb74d;
            padding-left: 15px;
        }
        h3 {
            color: #b71c1c;
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #e53935;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 15px 10px;
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #2196f3;
        }
        .btn-login:hover {
            background-color: #1976d2;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            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.05);
        }
        .review {
            background-color: #fff3e0;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #ff9800;
        }
        .reviewer {
            font-style: italic;
            color: #6d4c41;
        }
        .攻略-tip {
            background-color: #e8f5e9;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #4caf50;
        }
        .tag {
            display: inline-block;
            background-color: #ffe0b2;
            padding: 5px 12px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
            color: #e65100;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #ffcc80;
        }
        .game-type {
            display: inline-block;
            margin: 10px 15px 10px 0;
        }
        .game-type a {
            color: #3949ab;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #263238;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 15px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffb74d;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #455a64;
            font-size: 0.9rem;
            color: #b0bec5;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #ff6b6b;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
