
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            padding: 20px;
        }
        
        .games-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .game-card {
            display: flex;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 16px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .game-icon {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            margin-right: 16px;
            flex-shrink: 0;
        }
        
        .game-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .game-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .game-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 4px;
        }
        
        .game-meta {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .game-rating {
            display: flex;
            align-items: center;
            margin-right: 12px;
            color: #666;
            font-size: 14px;
        }
        
        .star {
            color: #ffb300;
            margin-right: 4px;
        }
        
        .game-downloads {
            color: #666;
            font-size: 14px;
        }
        
        .game-tagline {
            color: #e74c3c;
            font-weight: 500;
            font-size: 14px;
        }
        
        .game-action {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 16px;
        }
        
        .install-btn {
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .install-btn:hover {
            background-color: #2980b9;
        }
        
        @media (max-width: 600px) {
            .game-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .game-icon {
                margin-right: 0;
                margin-bottom: 12px;
            }
            
            .game-action {
                padding-left: 0;
                margin-top: 12px;
            }
        }
    