* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.6;
            padding-bottom: 50px;
        }
        .header {
            background-color: #ff9933;
            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 {
            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-color 0.3s;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .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;
        }
        .main-content {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 20px;
        }
        h1, h2, h3, h4 {
            color: #b30000;
            margin: 25px 0 15px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #ff9933;
            padding-bottom: 10px;
            margin-top: 0;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid #ff9933;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #e67300;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .highlight {
            background-color: #fff3e6;
            border-left: 4px solid #ff9933;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #138808;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #0f6b08;
        }
        .btn-login {
            background-color: #0000cd;
        }
        .btn-login:hover {
            background-color: #00008b;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .stats-box {
            background-color: #e6f2ff;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding-bottom: 10px;
            border-bottom: 1px dashed #b3d1ff;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: bold;
            color: #b30000;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffcc00;
            margin-bottom: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #f0f0f0;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px 5px 5px 0;
            text-decoration: none;
            color: #333;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #e0e0e0;
        }
        .footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 20px 0;
        }
        .game-types a {
            color: #ffcc99;
            margin-right: 15px;
            text-decoration: none;
        }
        .game-types a:hover {
            text-decoration: underline;
        }
        .tags-section {
            margin: 30px 0;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #ccc;
        }
        .tips-box {
            background-color: #e6ffe6;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #008000;
        }
        .event-item {
            border-left: 3px solid #ff9933;
            padding-left: 15px;
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                margin-bottom: 15px;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .main-content {
                padding: 20px;
            }
            .btn {
                display: block;
                text-align: center;
            }
        }
